@sachin9822/reports-lib 0.0.1 → 0.0.2
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/karma.conf.js +44 -0
- package/ng-package.json +7 -0
- package/package.json +11 -31
- package/src/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.css +0 -0
- package/src/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.html +15 -0
- package/src/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.spec.ts +23 -0
- package/src/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.ts +53 -0
- package/src/lib/reports-lib.component.spec.ts +23 -0
- package/src/lib/reports-lib.component.ts +20 -0
- package/src/lib/reports-lib.module.ts +24 -0
- package/src/lib/reports-lib.service.spec.ts +16 -0
- package/src/lib/reports-lib.service.ts +9 -0
- package/src/lib/services/report.service.spec.ts +16 -0
- package/src/lib/services/report.service.ts +22 -0
- package/src/public-api.ts +10 -0
- package/src/test.ts +27 -0
- package/tsconfig.lib.json +15 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +17 -0
- package/esm2020/lib/reports-lib.component.mjs +0 -22
- package/esm2020/lib/reports-lib.module.mjs +0 -21
- package/esm2020/lib/reports-lib.service.mjs +0 -14
- package/esm2020/public-api.mjs +0 -7
- package/esm2020/reports-lib.mjs +0 -5
- package/esm2020/sachin9822-reports-lib.mjs +0 -5
- package/fesm2015/reports-lib.mjs +0 -63
- package/fesm2015/reports-lib.mjs.map +0 -1
- package/fesm2015/sachin9822-reports-lib.mjs +0 -63
- package/fesm2015/sachin9822-reports-lib.mjs.map +0 -1
- package/fesm2020/reports-lib.mjs +0 -63
- package/fesm2020/reports-lib.mjs.map +0 -1
- package/fesm2020/sachin9822-reports-lib.mjs +0 -63
- package/fesm2020/sachin9822-reports-lib.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/reports-lib.component.d.ts +0 -8
- package/lib/reports-lib.module.d.ts +0 -7
- package/lib/reports-lib.service.d.ts +0 -6
- package/public-api.d.ts +0 -3
package/karma.conf.js
ADDED
@@ -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/reports-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
|
+
};
|
package/ng-package.json
ADDED
package/package.json
CHANGED
@@ -1,31 +1,11 @@
|
|
1
|
-
{
|
2
|
-
"name": "@sachin9822/reports-lib",
|
3
|
-
"version": "0.0.
|
4
|
-
"peerDependencies": {
|
5
|
-
"@angular/common": "^14.2.0",
|
6
|
-
"@angular/core": "^14.2.0"
|
7
|
-
},
|
8
|
-
"dependencies": {
|
9
|
-
"tslib": "^2.3.0"
|
10
|
-
}
|
11
|
-
|
12
|
-
"es2020": "fesm2020/sachin9822-reports-lib.mjs",
|
13
|
-
"esm2020": "esm2020/sachin9822-reports-lib.mjs",
|
14
|
-
"fesm2020": "fesm2020/sachin9822-reports-lib.mjs",
|
15
|
-
"fesm2015": "fesm2015/sachin9822-reports-lib.mjs",
|
16
|
-
"typings": "index.d.ts",
|
17
|
-
"exports": {
|
18
|
-
"./package.json": {
|
19
|
-
"default": "./package.json"
|
20
|
-
},
|
21
|
-
".": {
|
22
|
-
"types": "./index.d.ts",
|
23
|
-
"esm2020": "./esm2020/sachin9822-reports-lib.mjs",
|
24
|
-
"es2020": "./fesm2020/sachin9822-reports-lib.mjs",
|
25
|
-
"es2015": "./fesm2015/sachin9822-reports-lib.mjs",
|
26
|
-
"node": "./fesm2015/sachin9822-reports-lib.mjs",
|
27
|
-
"default": "./fesm2020/sachin9822-reports-lib.mjs"
|
28
|
-
}
|
29
|
-
},
|
30
|
-
"sideEffects": false
|
31
|
-
}
|
1
|
+
{
|
2
|
+
"name": "@sachin9822/reports-lib",
|
3
|
+
"version": "0.0.2",
|
4
|
+
"peerDependencies": {
|
5
|
+
"@angular/common": "^14.2.0",
|
6
|
+
"@angular/core": "^14.2.0"
|
7
|
+
},
|
8
|
+
"dependencies": {
|
9
|
+
"tslib": "^2.3.0"
|
10
|
+
}
|
11
|
+
}
|
package/src/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.css
ADDED
File without changes
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
2
|
+
|
3
|
+
import { AccGlDetailsEnquiryReportComponent } from './acc-gl-details-enquiry-report.component';
|
4
|
+
|
5
|
+
describe('AccGlDetailsEnquiryReportComponent', () => {
|
6
|
+
let component: AccGlDetailsEnquiryReportComponent;
|
7
|
+
let fixture: ComponentFixture<AccGlDetailsEnquiryReportComponent>;
|
8
|
+
|
9
|
+
beforeEach(async () => {
|
10
|
+
await TestBed.configureTestingModule({
|
11
|
+
declarations: [ AccGlDetailsEnquiryReportComponent ]
|
12
|
+
})
|
13
|
+
.compileComponents();
|
14
|
+
|
15
|
+
fixture = TestBed.createComponent(AccGlDetailsEnquiryReportComponent);
|
16
|
+
component = fixture.componentInstance;
|
17
|
+
fixture.detectChanges();
|
18
|
+
});
|
19
|
+
|
20
|
+
it('should create', () => {
|
21
|
+
expect(component).toBeTruthy();
|
22
|
+
});
|
23
|
+
});
|
package/src/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.ts
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
import { Component, OnInit } from '@angular/core';
|
2
|
+
|
3
|
+
@Component({
|
4
|
+
selector: 'lib-acc-gl-details-enquiry-report',
|
5
|
+
templateUrl: './acc-gl-details-enquiry-report.component.html',
|
6
|
+
styleUrls: ['./acc-gl-details-enquiry-report.component.css']
|
7
|
+
})
|
8
|
+
export class AccGlDetailsEnquiryReportComponent implements OnInit {
|
9
|
+
|
10
|
+
|
11
|
+
columnDefs = [
|
12
|
+
{
|
13
|
+
headerName: 'Sr. No',
|
14
|
+
valueGetter: 'node.rowIndex + 1',
|
15
|
+
width: 100
|
16
|
+
},
|
17
|
+
{ headerName: 'Name', field: 'name', sortable: true, filter: true },
|
18
|
+
{ headerName: 'Email', field: 'email', sortable: true, filter: true },
|
19
|
+
{ headerName: 'Salary', field: 'salary', sortable: true, filter: true,width: 170 },
|
20
|
+
{ headerName: 'Name', field: 'name', sortable: true, filter: true },
|
21
|
+
{ headerName: 'Email', field: 'email', sortable: true, filter: true },
|
22
|
+
{ headerName: 'Salary', field: 'salary', sortable: true, filter: true ,width: 170}
|
23
|
+
];
|
24
|
+
|
25
|
+
rowData = [
|
26
|
+
{ name: 'John Doe', email: 'john@example.com', salary: 50000 },
|
27
|
+
{ name: 'Jane Smith', email: 'jane@example.com', salary: 60000 },
|
28
|
+
{ name: 'Bill Murray', email: 'bill@example.com', salary: 70000 },
|
29
|
+
{ name: 'John Doe', email: 'john@example.com', salary: 50000 },
|
30
|
+
{ name: 'Jane Smith', email: 'jane@example.com', salary: 60000 },
|
31
|
+
{ name: 'Bill Murray', email: 'bill@example.com', salary: 70000 },
|
32
|
+
{ name: 'John Doe', email: 'john@example.com', salary: 50000 },
|
33
|
+
{ name: 'Jane Smith', email: 'jane@example.com', salary: 60000 },
|
34
|
+
{ name: 'Bill Murray', email: 'bill@example.com', salary: 70000 },
|
35
|
+
{ name: 'John Doe', email: 'john@example.com', salary: 50000 },
|
36
|
+
{ name: 'Jane Smith', email: 'jane@example.com', salary: 60000 },
|
37
|
+
{ name: 'John Doe', email: 'john@example.com', salary: 50000 },
|
38
|
+
{ name: 'Jane Smith', email: 'jane@example.com', salary: 60000 },
|
39
|
+
{ name: 'Bill Murray', email: 'bill@example.com', salary: 70000 },
|
40
|
+
{ name: 'John Doe', email: 'john@example.com', salary: 50000 },
|
41
|
+
{ name: 'Jane Smith', email: 'jane@example.com', salary: 60000 },
|
42
|
+
];
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
constructor() { }
|
47
|
+
|
48
|
+
ngOnInit(): void
|
49
|
+
{
|
50
|
+
|
51
|
+
}
|
52
|
+
|
53
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
2
|
+
|
3
|
+
import { ReportsLibComponent } from './reports-lib.component';
|
4
|
+
|
5
|
+
describe('ReportsLibComponent', () => {
|
6
|
+
let component: ReportsLibComponent;
|
7
|
+
let fixture: ComponentFixture<ReportsLibComponent>;
|
8
|
+
|
9
|
+
beforeEach(async () => {
|
10
|
+
await TestBed.configureTestingModule({
|
11
|
+
declarations: [ ReportsLibComponent ]
|
12
|
+
})
|
13
|
+
.compileComponents();
|
14
|
+
|
15
|
+
fixture = TestBed.createComponent(ReportsLibComponent);
|
16
|
+
component = fixture.componentInstance;
|
17
|
+
fixture.detectChanges();
|
18
|
+
});
|
19
|
+
|
20
|
+
it('should create', () => {
|
21
|
+
expect(component).toBeTruthy();
|
22
|
+
});
|
23
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { Component, OnInit } from '@angular/core';
|
2
|
+
|
3
|
+
@Component({
|
4
|
+
selector: 'lib-reports-lib',
|
5
|
+
template: `
|
6
|
+
<p>
|
7
|
+
reports-lib works!
|
8
|
+
</p>
|
9
|
+
`,
|
10
|
+
styles: [
|
11
|
+
]
|
12
|
+
})
|
13
|
+
export class ReportsLibComponent implements OnInit {
|
14
|
+
|
15
|
+
constructor() { }
|
16
|
+
|
17
|
+
ngOnInit(): void {
|
18
|
+
}
|
19
|
+
|
20
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { NgModule } from '@angular/core';
|
2
|
+
import { ReportsLibComponent } from './reports-lib.component';
|
3
|
+
import { AccGlDetailsEnquiryReportComponent } from './components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component';
|
4
|
+
import { HttpClientModule } from '@angular/common/http';
|
5
|
+
import { AgGridModule } from 'ag-grid-angular';
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
@NgModule({
|
10
|
+
declarations: [
|
11
|
+
ReportsLibComponent,
|
12
|
+
|
13
|
+
AccGlDetailsEnquiryReportComponent
|
14
|
+
],
|
15
|
+
imports: [
|
16
|
+
HttpClientModule,
|
17
|
+
AgGridModule
|
18
|
+
],
|
19
|
+
exports: [
|
20
|
+
ReportsLibComponent,
|
21
|
+
AccGlDetailsEnquiryReportComponent
|
22
|
+
]
|
23
|
+
})
|
24
|
+
export class ReportsLibModule { }
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { TestBed } from '@angular/core/testing';
|
2
|
+
|
3
|
+
import { ReportsLibService } from './reports-lib.service';
|
4
|
+
|
5
|
+
describe('ReportsLibService', () => {
|
6
|
+
let service: ReportsLibService;
|
7
|
+
|
8
|
+
beforeEach(() => {
|
9
|
+
TestBed.configureTestingModule({});
|
10
|
+
service = TestBed.inject(ReportsLibService);
|
11
|
+
});
|
12
|
+
|
13
|
+
it('should be created', () => {
|
14
|
+
expect(service).toBeTruthy();
|
15
|
+
});
|
16
|
+
});
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { TestBed } from '@angular/core/testing';
|
2
|
+
|
3
|
+
import { ReportService } from './report.service';
|
4
|
+
|
5
|
+
describe('ReportService', () => {
|
6
|
+
let service: ReportService;
|
7
|
+
|
8
|
+
beforeEach(() => {
|
9
|
+
TestBed.configureTestingModule({});
|
10
|
+
service = TestBed.inject(ReportService);
|
11
|
+
});
|
12
|
+
|
13
|
+
it('should be created', () => {
|
14
|
+
expect(service).toBeTruthy();
|
15
|
+
});
|
16
|
+
});
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
2
|
+
import { Injectable } from '@angular/core';
|
3
|
+
|
4
|
+
|
5
|
+
@Injectable({
|
6
|
+
providedIn: 'root'
|
7
|
+
})
|
8
|
+
export class ReportService {
|
9
|
+
|
10
|
+
constructor(private http: HttpClient) { }
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
/*
|
2
|
+
* Public API Surface of reports-lib
|
3
|
+
*/
|
4
|
+
|
5
|
+
import { AccGlDetailsEnquiryReportComponent } from './lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component';
|
6
|
+
|
7
|
+
export * from './lib/reports-lib.service';
|
8
|
+
export * from './lib/reports-lib.component';
|
9
|
+
export * from './lib/reports-lib.module';
|
10
|
+
export * from './lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component';
|
package/src/test.ts
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
|
2
|
+
|
3
|
+
import 'zone.js';
|
4
|
+
import 'zone.js/testing';
|
5
|
+
import { getTestBed } from '@angular/core/testing';
|
6
|
+
import {
|
7
|
+
BrowserDynamicTestingModule,
|
8
|
+
platformBrowserDynamicTesting
|
9
|
+
} from '@angular/platform-browser-dynamic/testing';
|
10
|
+
|
11
|
+
declare const require: {
|
12
|
+
context(path: string, deep?: boolean, filter?: RegExp): {
|
13
|
+
<T>(id: string): T;
|
14
|
+
keys(): string[];
|
15
|
+
};
|
16
|
+
};
|
17
|
+
|
18
|
+
// First, initialize the Angular testing environment.
|
19
|
+
getTestBed().initTestEnvironment(
|
20
|
+
BrowserDynamicTestingModule,
|
21
|
+
platformBrowserDynamicTesting(),
|
22
|
+
);
|
23
|
+
|
24
|
+
// Then we find all the tests.
|
25
|
+
const context = require.context('./', true, /\.spec\.ts$/);
|
26
|
+
// And load the modules.
|
27
|
+
context.keys().forEach(context);
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
2
|
+
{
|
3
|
+
"extends": "../../tsconfig.json",
|
4
|
+
"compilerOptions": {
|
5
|
+
"outDir": "../../out-tsc/lib",
|
6
|
+
"declaration": true,
|
7
|
+
"declarationMap": true,
|
8
|
+
"inlineSources": true,
|
9
|
+
"types": []
|
10
|
+
},
|
11
|
+
"exclude": [
|
12
|
+
"src/test.ts",
|
13
|
+
"**/*.spec.ts"
|
14
|
+
]
|
15
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
2
|
+
{
|
3
|
+
"extends": "../../tsconfig.json",
|
4
|
+
"compilerOptions": {
|
5
|
+
"outDir": "../../out-tsc/spec",
|
6
|
+
"types": [
|
7
|
+
"jasmine"
|
8
|
+
]
|
9
|
+
},
|
10
|
+
"files": [
|
11
|
+
"src/test.ts"
|
12
|
+
],
|
13
|
+
"include": [
|
14
|
+
"**/*.spec.ts",
|
15
|
+
"**/*.d.ts"
|
16
|
+
]
|
17
|
+
}
|
@@ -1,22 +0,0 @@
|
|
1
|
-
import { Component } from '@angular/core';
|
2
|
-
import * as i0 from "@angular/core";
|
3
|
-
export class ReportsLibComponent {
|
4
|
-
constructor() { }
|
5
|
-
ngOnInit() {
|
6
|
-
}
|
7
|
-
}
|
8
|
-
ReportsLibComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
9
|
-
ReportsLibComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: ReportsLibComponent, selector: "lib-reports-lib", ngImport: i0, template: `
|
10
|
-
<p>
|
11
|
-
reports-lib works!
|
12
|
-
</p>
|
13
|
-
`, isInline: true });
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibComponent, decorators: [{
|
15
|
-
type: Component,
|
16
|
-
args: [{ selector: 'lib-reports-lib', template: `
|
17
|
-
<p>
|
18
|
-
reports-lib works!
|
19
|
-
</p>
|
20
|
-
` }]
|
21
|
-
}], ctorParameters: function () { return []; } });
|
22
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwb3J0cy1saWIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvcmVwb3J0cy1saWIvc3JjL2xpYi9yZXBvcnRzLWxpYi5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQzs7QUFZbEQsTUFBTSxPQUFPLG1CQUFtQjtJQUU5QixnQkFBZ0IsQ0FBQztJQUVqQixRQUFRO0lBQ1IsQ0FBQzs7Z0hBTFUsbUJBQW1CO29HQUFuQixtQkFBbUIsdURBUnBCOzs7O0dBSVQ7MkZBSVUsbUJBQW1CO2tCQVYvQixTQUFTOytCQUNFLGlCQUFpQixZQUNqQjs7OztHQUlUIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnbGliLXJlcG9ydHMtbGliJyxcclxuICB0ZW1wbGF0ZTogYFxyXG4gICAgPHA+XHJcbiAgICAgIHJlcG9ydHMtbGliIHdvcmtzIVxyXG4gICAgPC9wPlxyXG4gIGAsXHJcbiAgc3R5bGVzOiBbXHJcbiAgXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgUmVwb3J0c0xpYkNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcblxyXG4gIGNvbnN0cnVjdG9yKCkgeyB9XHJcblxyXG4gIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gIH1cclxuXHJcbn1cclxuIl19
|
@@ -1,21 +0,0 @@
|
|
1
|
-
import { NgModule } from '@angular/core';
|
2
|
-
import { ReportsLibComponent } from './reports-lib.component';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export class ReportsLibModule {
|
5
|
-
}
|
6
|
-
ReportsLibModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
-
ReportsLibModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, declarations: [ReportsLibComponent], exports: [ReportsLibComponent] });
|
8
|
-
ReportsLibModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule });
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, decorators: [{
|
10
|
-
type: NgModule,
|
11
|
-
args: [{
|
12
|
-
declarations: [
|
13
|
-
ReportsLibComponent
|
14
|
-
],
|
15
|
-
imports: [],
|
16
|
-
exports: [
|
17
|
-
ReportsLibComponent
|
18
|
-
]
|
19
|
-
}]
|
20
|
-
}] });
|
21
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwb3J0cy1saWIubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvcmVwb3J0cy1saWIvc3JjL2xpYi9yZXBvcnRzLWxpYi5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQzs7QUFjOUQsTUFBTSxPQUFPLGdCQUFnQjs7NkdBQWhCLGdCQUFnQjs4R0FBaEIsZ0JBQWdCLGlCQVJ6QixtQkFBbUIsYUFLbkIsbUJBQW1COzhHQUdWLGdCQUFnQjsyRkFBaEIsZ0JBQWdCO2tCQVY1QixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWixtQkFBbUI7cUJBQ3BCO29CQUNELE9BQU8sRUFBRSxFQUNSO29CQUNELE9BQU8sRUFBRTt3QkFDUCxtQkFBbUI7cUJBQ3BCO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgUmVwb3J0c0xpYkNvbXBvbmVudCB9IGZyb20gJy4vcmVwb3J0cy1saWIuY29tcG9uZW50JztcclxuXHJcblxyXG5cclxuQE5nTW9kdWxlKHtcclxuICBkZWNsYXJhdGlvbnM6IFtcclxuICAgIFJlcG9ydHNMaWJDb21wb25lbnRcclxuICBdLFxyXG4gIGltcG9ydHM6IFtcclxuICBdLFxyXG4gIGV4cG9ydHM6IFtcclxuICAgIFJlcG9ydHNMaWJDb21wb25lbnRcclxuICBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBSZXBvcnRzTGliTW9kdWxlIHsgfVxyXG4iXX0=
|
@@ -1,14 +0,0 @@
|
|
1
|
-
import { Injectable } from '@angular/core';
|
2
|
-
import * as i0 from "@angular/core";
|
3
|
-
export class ReportsLibService {
|
4
|
-
constructor() { }
|
5
|
-
}
|
6
|
-
ReportsLibService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
7
|
-
ReportsLibService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, providedIn: 'root' });
|
8
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, decorators: [{
|
9
|
-
type: Injectable,
|
10
|
-
args: [{
|
11
|
-
providedIn: 'root'
|
12
|
-
}]
|
13
|
-
}], ctorParameters: function () { return []; } });
|
14
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwb3J0cy1saWIuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3JlcG9ydHMtbGliL3NyYy9saWIvcmVwb3J0cy1saWIuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUszQyxNQUFNLE9BQU8saUJBQWlCO0lBRTVCLGdCQUFnQixDQUFDOzs4R0FGTixpQkFBaUI7a0hBQWpCLGlCQUFpQixjQUZoQixNQUFNOzJGQUVQLGlCQUFpQjtrQkFIN0IsVUFBVTttQkFBQztvQkFDVixVQUFVLEVBQUUsTUFBTTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5ASW5qZWN0YWJsZSh7XHJcbiAgcHJvdmlkZWRJbjogJ3Jvb3QnXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBSZXBvcnRzTGliU2VydmljZSB7XHJcblxyXG4gIGNvbnN0cnVjdG9yKCkgeyB9XHJcbn1cclxuIl19
|
package/esm2020/public-api.mjs
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Public API Surface of reports-lib
|
3
|
-
*/
|
4
|
-
export * from './lib/reports-lib.service';
|
5
|
-
export * from './lib/reports-lib.component';
|
6
|
-
export * from './lib/reports-lib.module';
|
7
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL3JlcG9ydHMtbGliL3NyYy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsMEJBQTBCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxyXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2YgcmVwb3J0cy1saWJcclxuICovXHJcblxyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9yZXBvcnRzLWxpYi5zZXJ2aWNlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvcmVwb3J0cy1saWIuY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvcmVwb3J0cy1saWIubW9kdWxlJztcclxuIl19
|
package/esm2020/reports-lib.mjs
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Generated bundle index. Do not edit.
|
3
|
-
*/
|
4
|
-
export * from './public-api';
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwb3J0cy1saWIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9wcm9qZWN0cy9yZXBvcnRzLWxpYi9zcmMvcmVwb3J0cy1saWIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
@@ -1,5 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Generated bundle index. Do not edit.
|
3
|
-
*/
|
4
|
-
export * from './public-api';
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2FjaGluOTgyMi1yZXBvcnRzLWxpYi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL3JlcG9ydHMtbGliL3NyYy9zYWNoaW45ODIyLXJlcG9ydHMtbGliLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
package/fesm2015/reports-lib.mjs
DELETED
@@ -1,63 +0,0 @@
|
|
1
|
-
import * as i0 from '@angular/core';
|
2
|
-
import { Injectable, Component, NgModule } from '@angular/core';
|
3
|
-
|
4
|
-
class ReportsLibService {
|
5
|
-
constructor() { }
|
6
|
-
}
|
7
|
-
ReportsLibService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
8
|
-
ReportsLibService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, providedIn: 'root' });
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, decorators: [{
|
10
|
-
type: Injectable,
|
11
|
-
args: [{
|
12
|
-
providedIn: 'root'
|
13
|
-
}]
|
14
|
-
}], ctorParameters: function () { return []; } });
|
15
|
-
|
16
|
-
class ReportsLibComponent {
|
17
|
-
constructor() { }
|
18
|
-
ngOnInit() {
|
19
|
-
}
|
20
|
-
}
|
21
|
-
ReportsLibComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
22
|
-
ReportsLibComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: ReportsLibComponent, selector: "lib-reports-lib", ngImport: i0, template: `
|
23
|
-
<p>
|
24
|
-
reports-lib works!
|
25
|
-
</p>
|
26
|
-
`, isInline: true });
|
27
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibComponent, decorators: [{
|
28
|
-
type: Component,
|
29
|
-
args: [{ selector: 'lib-reports-lib', template: `
|
30
|
-
<p>
|
31
|
-
reports-lib works!
|
32
|
-
</p>
|
33
|
-
` }]
|
34
|
-
}], ctorParameters: function () { return []; } });
|
35
|
-
|
36
|
-
class ReportsLibModule {
|
37
|
-
}
|
38
|
-
ReportsLibModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
39
|
-
ReportsLibModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, declarations: [ReportsLibComponent], exports: [ReportsLibComponent] });
|
40
|
-
ReportsLibModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule });
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, decorators: [{
|
42
|
-
type: NgModule,
|
43
|
-
args: [{
|
44
|
-
declarations: [
|
45
|
-
ReportsLibComponent
|
46
|
-
],
|
47
|
-
imports: [],
|
48
|
-
exports: [
|
49
|
-
ReportsLibComponent
|
50
|
-
]
|
51
|
-
}]
|
52
|
-
}] });
|
53
|
-
|
54
|
-
/*
|
55
|
-
* Public API Surface of reports-lib
|
56
|
-
*/
|
57
|
-
|
58
|
-
/**
|
59
|
-
* Generated bundle index. Do not edit.
|
60
|
-
*/
|
61
|
-
|
62
|
-
export { ReportsLibComponent, ReportsLibModule, ReportsLibService };
|
63
|
-
//# sourceMappingURL=reports-lib.mjs.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"reports-lib.mjs","sources":["../../../projects/reports-lib/src/lib/reports-lib.service.ts","../../../projects/reports-lib/src/lib/reports-lib.component.ts","../../../projects/reports-lib/src/lib/reports-lib.module.ts","../../../projects/reports-lib/src/public-api.ts","../../../projects/reports-lib/src/reports-lib.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class ReportsLibService {\r\n\r\n constructor() { }\r\n}\r\n","import { Component, OnInit } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'lib-reports-lib',\r\n template: `\r\n <p>\r\n reports-lib works!\r\n </p>\r\n `,\r\n styles: [\r\n ]\r\n})\r\nexport class ReportsLibComponent implements OnInit {\r\n\r\n constructor() { }\r\n\r\n ngOnInit(): void {\r\n }\r\n\r\n}\r\n","import { NgModule } from '@angular/core';\r\nimport { ReportsLibComponent } from './reports-lib.component';\r\n\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n ReportsLibComponent\r\n ],\r\n imports: [\r\n ],\r\n exports: [\r\n ReportsLibComponent\r\n ]\r\n})\r\nexport class ReportsLibModule { }\r\n","/*\r\n * Public API Surface of reports-lib\r\n */\r\n\r\nexport * from './lib/reports-lib.service';\r\nexport * from './lib/reports-lib.component';\r\nexport * from './lib/reports-lib.module';\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAKa,iBAAiB,CAAA;AAE5B,IAAA,WAAA,GAAA,GAAiB;;8GAFN,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAAjB,iBAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,cAFhB,MAAM,EAAA,CAAA,CAAA;2FAEP,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAH7B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;iBACnB,CAAA;;;MCQY,mBAAmB,CAAA;AAE9B,IAAA,WAAA,GAAA,GAAiB;IAEjB,QAAQ,GAAA;KACP;;gHALU,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAnB,mBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,mBAAmB,EARpB,QAAA,EAAA,iBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAIU,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAV/B,SAAS;YACE,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,iBAAiB,EACjB,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,CAAA;;;MCOU,gBAAgB,CAAA;;6GAAhB,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;8GAAhB,gBAAgB,EAAA,YAAA,EAAA,CARzB,mBAAmB,CAAA,EAAA,OAAA,EAAA,CAKnB,mBAAmB,CAAA,EAAA,CAAA,CAAA;8GAGV,gBAAgB,EAAA,CAAA,CAAA;2FAAhB,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAV5B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,mBAAmB;AACpB,qBAAA;AACD,oBAAA,OAAO,EAAE,EACR;AACD,oBAAA,OAAO,EAAE;wBACP,mBAAmB;AACpB,qBAAA;iBACF,CAAA;;;ACdD;;AAEG;;ACFH;;AAEG;;;;"}
|
@@ -1,63 +0,0 @@
|
|
1
|
-
import * as i0 from '@angular/core';
|
2
|
-
import { Injectable, Component, NgModule } from '@angular/core';
|
3
|
-
|
4
|
-
class ReportsLibService {
|
5
|
-
constructor() { }
|
6
|
-
}
|
7
|
-
ReportsLibService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
8
|
-
ReportsLibService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, providedIn: 'root' });
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, decorators: [{
|
10
|
-
type: Injectable,
|
11
|
-
args: [{
|
12
|
-
providedIn: 'root'
|
13
|
-
}]
|
14
|
-
}], ctorParameters: function () { return []; } });
|
15
|
-
|
16
|
-
class ReportsLibComponent {
|
17
|
-
constructor() { }
|
18
|
-
ngOnInit() {
|
19
|
-
}
|
20
|
-
}
|
21
|
-
ReportsLibComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
22
|
-
ReportsLibComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: ReportsLibComponent, selector: "lib-reports-lib", ngImport: i0, template: `
|
23
|
-
<p>
|
24
|
-
reports-lib works!
|
25
|
-
</p>
|
26
|
-
`, isInline: true });
|
27
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibComponent, decorators: [{
|
28
|
-
type: Component,
|
29
|
-
args: [{ selector: 'lib-reports-lib', template: `
|
30
|
-
<p>
|
31
|
-
reports-lib works!
|
32
|
-
</p>
|
33
|
-
` }]
|
34
|
-
}], ctorParameters: function () { return []; } });
|
35
|
-
|
36
|
-
class ReportsLibModule {
|
37
|
-
}
|
38
|
-
ReportsLibModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
39
|
-
ReportsLibModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, declarations: [ReportsLibComponent], exports: [ReportsLibComponent] });
|
40
|
-
ReportsLibModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule });
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, decorators: [{
|
42
|
-
type: NgModule,
|
43
|
-
args: [{
|
44
|
-
declarations: [
|
45
|
-
ReportsLibComponent
|
46
|
-
],
|
47
|
-
imports: [],
|
48
|
-
exports: [
|
49
|
-
ReportsLibComponent
|
50
|
-
]
|
51
|
-
}]
|
52
|
-
}] });
|
53
|
-
|
54
|
-
/*
|
55
|
-
* Public API Surface of reports-lib
|
56
|
-
*/
|
57
|
-
|
58
|
-
/**
|
59
|
-
* Generated bundle index. Do not edit.
|
60
|
-
*/
|
61
|
-
|
62
|
-
export { ReportsLibComponent, ReportsLibModule, ReportsLibService };
|
63
|
-
//# sourceMappingURL=sachin9822-reports-lib.mjs.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"sachin9822-reports-lib.mjs","sources":["../../../projects/reports-lib/src/lib/reports-lib.service.ts","../../../projects/reports-lib/src/lib/reports-lib.component.ts","../../../projects/reports-lib/src/lib/reports-lib.module.ts","../../../projects/reports-lib/src/public-api.ts","../../../projects/reports-lib/src/sachin9822-reports-lib.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class ReportsLibService {\r\n\r\n constructor() { }\r\n}\r\n","import { Component, OnInit } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'lib-reports-lib',\r\n template: `\r\n <p>\r\n reports-lib works!\r\n </p>\r\n `,\r\n styles: [\r\n ]\r\n})\r\nexport class ReportsLibComponent implements OnInit {\r\n\r\n constructor() { }\r\n\r\n ngOnInit(): void {\r\n }\r\n\r\n}\r\n","import { NgModule } from '@angular/core';\r\nimport { ReportsLibComponent } from './reports-lib.component';\r\n\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n ReportsLibComponent\r\n ],\r\n imports: [\r\n ],\r\n exports: [\r\n ReportsLibComponent\r\n ]\r\n})\r\nexport class ReportsLibModule { }\r\n","/*\r\n * Public API Surface of reports-lib\r\n */\r\n\r\nexport * from './lib/reports-lib.service';\r\nexport * from './lib/reports-lib.component';\r\nexport * from './lib/reports-lib.module';\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAKa,iBAAiB,CAAA;AAE5B,IAAA,WAAA,GAAA,GAAiB;;8GAFN,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAAjB,iBAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,cAFhB,MAAM,EAAA,CAAA,CAAA;2FAEP,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAH7B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;iBACnB,CAAA;;;MCQY,mBAAmB,CAAA;AAE9B,IAAA,WAAA,GAAA,GAAiB;IAEjB,QAAQ,GAAA;KACP;;gHALU,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAnB,mBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,mBAAmB,EARpB,QAAA,EAAA,iBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAIU,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAV/B,SAAS;YACE,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,iBAAiB,EACjB,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,CAAA;;;MCOU,gBAAgB,CAAA;;6GAAhB,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;8GAAhB,gBAAgB,EAAA,YAAA,EAAA,CARzB,mBAAmB,CAAA,EAAA,OAAA,EAAA,CAKnB,mBAAmB,CAAA,EAAA,CAAA,CAAA;8GAGV,gBAAgB,EAAA,CAAA,CAAA;2FAAhB,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAV5B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,mBAAmB;AACpB,qBAAA;AACD,oBAAA,OAAO,EAAE,EACR;AACD,oBAAA,OAAO,EAAE;wBACP,mBAAmB;AACpB,qBAAA;iBACF,CAAA;;;ACdD;;AAEG;;ACFH;;AAEG;;;;"}
|
package/fesm2020/reports-lib.mjs
DELETED
@@ -1,63 +0,0 @@
|
|
1
|
-
import * as i0 from '@angular/core';
|
2
|
-
import { Injectable, Component, NgModule } from '@angular/core';
|
3
|
-
|
4
|
-
class ReportsLibService {
|
5
|
-
constructor() { }
|
6
|
-
}
|
7
|
-
ReportsLibService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
8
|
-
ReportsLibService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, providedIn: 'root' });
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, decorators: [{
|
10
|
-
type: Injectable,
|
11
|
-
args: [{
|
12
|
-
providedIn: 'root'
|
13
|
-
}]
|
14
|
-
}], ctorParameters: function () { return []; } });
|
15
|
-
|
16
|
-
class ReportsLibComponent {
|
17
|
-
constructor() { }
|
18
|
-
ngOnInit() {
|
19
|
-
}
|
20
|
-
}
|
21
|
-
ReportsLibComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
22
|
-
ReportsLibComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: ReportsLibComponent, selector: "lib-reports-lib", ngImport: i0, template: `
|
23
|
-
<p>
|
24
|
-
reports-lib works!
|
25
|
-
</p>
|
26
|
-
`, isInline: true });
|
27
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibComponent, decorators: [{
|
28
|
-
type: Component,
|
29
|
-
args: [{ selector: 'lib-reports-lib', template: `
|
30
|
-
<p>
|
31
|
-
reports-lib works!
|
32
|
-
</p>
|
33
|
-
` }]
|
34
|
-
}], ctorParameters: function () { return []; } });
|
35
|
-
|
36
|
-
class ReportsLibModule {
|
37
|
-
}
|
38
|
-
ReportsLibModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
39
|
-
ReportsLibModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, declarations: [ReportsLibComponent], exports: [ReportsLibComponent] });
|
40
|
-
ReportsLibModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule });
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, decorators: [{
|
42
|
-
type: NgModule,
|
43
|
-
args: [{
|
44
|
-
declarations: [
|
45
|
-
ReportsLibComponent
|
46
|
-
],
|
47
|
-
imports: [],
|
48
|
-
exports: [
|
49
|
-
ReportsLibComponent
|
50
|
-
]
|
51
|
-
}]
|
52
|
-
}] });
|
53
|
-
|
54
|
-
/*
|
55
|
-
* Public API Surface of reports-lib
|
56
|
-
*/
|
57
|
-
|
58
|
-
/**
|
59
|
-
* Generated bundle index. Do not edit.
|
60
|
-
*/
|
61
|
-
|
62
|
-
export { ReportsLibComponent, ReportsLibModule, ReportsLibService };
|
63
|
-
//# sourceMappingURL=reports-lib.mjs.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"reports-lib.mjs","sources":["../../../projects/reports-lib/src/lib/reports-lib.service.ts","../../../projects/reports-lib/src/lib/reports-lib.component.ts","../../../projects/reports-lib/src/lib/reports-lib.module.ts","../../../projects/reports-lib/src/public-api.ts","../../../projects/reports-lib/src/reports-lib.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class ReportsLibService {\r\n\r\n constructor() { }\r\n}\r\n","import { Component, OnInit } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'lib-reports-lib',\r\n template: `\r\n <p>\r\n reports-lib works!\r\n </p>\r\n `,\r\n styles: [\r\n ]\r\n})\r\nexport class ReportsLibComponent implements OnInit {\r\n\r\n constructor() { }\r\n\r\n ngOnInit(): void {\r\n }\r\n\r\n}\r\n","import { NgModule } from '@angular/core';\r\nimport { ReportsLibComponent } from './reports-lib.component';\r\n\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n ReportsLibComponent\r\n ],\r\n imports: [\r\n ],\r\n exports: [\r\n ReportsLibComponent\r\n ]\r\n})\r\nexport class ReportsLibModule { }\r\n","/*\r\n * Public API Surface of reports-lib\r\n */\r\n\r\nexport * from './lib/reports-lib.service';\r\nexport * from './lib/reports-lib.component';\r\nexport * from './lib/reports-lib.module';\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAKa,iBAAiB,CAAA;AAE5B,IAAA,WAAA,GAAA,GAAiB;;8GAFN,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAAjB,iBAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,cAFhB,MAAM,EAAA,CAAA,CAAA;2FAEP,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAH7B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;AACnB,iBAAA,CAAA;;;MCQY,mBAAmB,CAAA;AAE9B,IAAA,WAAA,GAAA,GAAiB;IAEjB,QAAQ,GAAA;KACP;;gHALU,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAnB,mBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,mBAAmB,EARpB,QAAA,EAAA,iBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAIU,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAV/B,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,iBAAiB,EACjB,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,CAAA;;;MCOU,gBAAgB,CAAA;;6GAAhB,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;8GAAhB,gBAAgB,EAAA,YAAA,EAAA,CARzB,mBAAmB,CAAA,EAAA,OAAA,EAAA,CAKnB,mBAAmB,CAAA,EAAA,CAAA,CAAA;8GAGV,gBAAgB,EAAA,CAAA,CAAA;2FAAhB,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAV5B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,mBAAmB;AACpB,qBAAA;AACD,oBAAA,OAAO,EAAE,EACR;AACD,oBAAA,OAAO,EAAE;wBACP,mBAAmB;AACpB,qBAAA;AACF,iBAAA,CAAA;;;ACdD;;AAEG;;ACFH;;AAEG;;;;"}
|
@@ -1,63 +0,0 @@
|
|
1
|
-
import * as i0 from '@angular/core';
|
2
|
-
import { Injectable, Component, NgModule } from '@angular/core';
|
3
|
-
|
4
|
-
class ReportsLibService {
|
5
|
-
constructor() { }
|
6
|
-
}
|
7
|
-
ReportsLibService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
8
|
-
ReportsLibService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, providedIn: 'root' });
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibService, decorators: [{
|
10
|
-
type: Injectable,
|
11
|
-
args: [{
|
12
|
-
providedIn: 'root'
|
13
|
-
}]
|
14
|
-
}], ctorParameters: function () { return []; } });
|
15
|
-
|
16
|
-
class ReportsLibComponent {
|
17
|
-
constructor() { }
|
18
|
-
ngOnInit() {
|
19
|
-
}
|
20
|
-
}
|
21
|
-
ReportsLibComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
22
|
-
ReportsLibComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: ReportsLibComponent, selector: "lib-reports-lib", ngImport: i0, template: `
|
23
|
-
<p>
|
24
|
-
reports-lib works!
|
25
|
-
</p>
|
26
|
-
`, isInline: true });
|
27
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibComponent, decorators: [{
|
28
|
-
type: Component,
|
29
|
-
args: [{ selector: 'lib-reports-lib', template: `
|
30
|
-
<p>
|
31
|
-
reports-lib works!
|
32
|
-
</p>
|
33
|
-
` }]
|
34
|
-
}], ctorParameters: function () { return []; } });
|
35
|
-
|
36
|
-
class ReportsLibModule {
|
37
|
-
}
|
38
|
-
ReportsLibModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
39
|
-
ReportsLibModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, declarations: [ReportsLibComponent], exports: [ReportsLibComponent] });
|
40
|
-
ReportsLibModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule });
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReportsLibModule, decorators: [{
|
42
|
-
type: NgModule,
|
43
|
-
args: [{
|
44
|
-
declarations: [
|
45
|
-
ReportsLibComponent
|
46
|
-
],
|
47
|
-
imports: [],
|
48
|
-
exports: [
|
49
|
-
ReportsLibComponent
|
50
|
-
]
|
51
|
-
}]
|
52
|
-
}] });
|
53
|
-
|
54
|
-
/*
|
55
|
-
* Public API Surface of reports-lib
|
56
|
-
*/
|
57
|
-
|
58
|
-
/**
|
59
|
-
* Generated bundle index. Do not edit.
|
60
|
-
*/
|
61
|
-
|
62
|
-
export { ReportsLibComponent, ReportsLibModule, ReportsLibService };
|
63
|
-
//# sourceMappingURL=sachin9822-reports-lib.mjs.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"sachin9822-reports-lib.mjs","sources":["../../../projects/reports-lib/src/lib/reports-lib.service.ts","../../../projects/reports-lib/src/lib/reports-lib.component.ts","../../../projects/reports-lib/src/lib/reports-lib.module.ts","../../../projects/reports-lib/src/public-api.ts","../../../projects/reports-lib/src/sachin9822-reports-lib.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class ReportsLibService {\r\n\r\n constructor() { }\r\n}\r\n","import { Component, OnInit } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'lib-reports-lib',\r\n template: `\r\n <p>\r\n reports-lib works!\r\n </p>\r\n `,\r\n styles: [\r\n ]\r\n})\r\nexport class ReportsLibComponent implements OnInit {\r\n\r\n constructor() { }\r\n\r\n ngOnInit(): void {\r\n }\r\n\r\n}\r\n","import { NgModule } from '@angular/core';\r\nimport { ReportsLibComponent } from './reports-lib.component';\r\n\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n ReportsLibComponent\r\n ],\r\n imports: [\r\n ],\r\n exports: [\r\n ReportsLibComponent\r\n ]\r\n})\r\nexport class ReportsLibModule { }\r\n","/*\r\n * Public API Surface of reports-lib\r\n */\r\n\r\nexport * from './lib/reports-lib.service';\r\nexport * from './lib/reports-lib.component';\r\nexport * from './lib/reports-lib.module';\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAKa,iBAAiB,CAAA;AAE5B,IAAA,WAAA,GAAA,GAAiB;;8GAFN,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAAjB,iBAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,cAFhB,MAAM,EAAA,CAAA,CAAA;2FAEP,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAH7B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;AACnB,iBAAA,CAAA;;;MCQY,mBAAmB,CAAA;AAE9B,IAAA,WAAA,GAAA,GAAiB;IAEjB,QAAQ,GAAA;KACP;;gHALU,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAnB,mBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,mBAAmB,EARpB,QAAA,EAAA,iBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAIU,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAV/B,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,iBAAiB,EACjB,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,CAAA;;;MCOU,gBAAgB,CAAA;;6GAAhB,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;8GAAhB,gBAAgB,EAAA,YAAA,EAAA,CARzB,mBAAmB,CAAA,EAAA,OAAA,EAAA,CAKnB,mBAAmB,CAAA,EAAA,CAAA,CAAA;8GAGV,gBAAgB,EAAA,CAAA,CAAA;2FAAhB,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAV5B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,mBAAmB;AACpB,qBAAA;AACD,oBAAA,OAAO,EAAE,EACR;AACD,oBAAA,OAAO,EAAE;wBACP,mBAAmB;AACpB,qBAAA;AACF,iBAAA,CAAA;;;ACdD;;AAEG;;ACFH;;AAEG;;;;"}
|
package/index.d.ts
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
2
|
-
import * as i0 from "@angular/core";
|
3
|
-
export declare class ReportsLibComponent implements OnInit {
|
4
|
-
constructor();
|
5
|
-
ngOnInit(): void;
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ReportsLibComponent, never>;
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReportsLibComponent, "lib-reports-lib", never, {}, {}, never, never, false>;
|
8
|
-
}
|
@@ -1,7 +0,0 @@
|
|
1
|
-
import * as i0 from "@angular/core";
|
2
|
-
import * as i1 from "./reports-lib.component";
|
3
|
-
export declare class ReportsLibModule {
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ReportsLibModule, never>;
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ReportsLibModule, [typeof i1.ReportsLibComponent], never, [typeof i1.ReportsLibComponent]>;
|
6
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ReportsLibModule>;
|
7
|
-
}
|
package/public-api.d.ts
DELETED