raise-common-lib 0.0.1 → 0.0.4
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/bundles/raise-common-lib.umd.js +1130 -0
- package/bundles/raise-common-lib.umd.js.map +1 -0
- package/bundles/raise-common-lib.umd.min.js +16 -0
- package/bundles/raise-common-lib.umd.min.js.map +1 -0
- package/esm2015/lib/common-grid/index.component.js +716 -0
- package/esm2015/lib/constant/index.js +107 -0
- package/esm2015/lib/raise-common-lib.module.js +38 -0
- package/esm2015/public-api.js +11 -0
- package/esm2015/raise-common-lib.js +10 -0
- package/esm5/lib/common-grid/index.component.js +865 -0
- package/esm5/lib/constant/index.js +107 -0
- package/esm5/lib/raise-common-lib.module.js +42 -0
- package/esm5/public-api.js +11 -0
- package/esm5/raise-common-lib.js +10 -0
- package/fesm2015/raise-common-lib.js +766 -0
- package/fesm2015/raise-common-lib.js.map +1 -0
- package/fesm5/raise-common-lib.js +917 -0
- package/fesm5/raise-common-lib.js.map +1 -0
- package/lib/common-grid/index.component.d.ts +116 -0
- package/lib/constant/index.d.ts +54 -0
- package/lib/raise-common-lib.module.d.ts +2 -0
- package/package.json +17 -4
- package/{src/public-api.ts → public-api.d.ts} +2 -5
- package/raise-common-lib.d.ts +4 -0
- package/raise-common-lib.metadata.json +1 -0
- package/karma.conf.js +0 -32
- package/ng-package.json +0 -7
- package/src/lib/common-grid/grid-utils.ts +0 -26
- package/src/lib/common-grid/index.component.html +0 -80
- package/src/lib/common-grid/index.component.scss +0 -230
- package/src/lib/common-grid/index.component.ts +0 -420
- package/src/lib/constant/index.ts +0 -59
- package/src/lib/raise-common-lib.module.ts +0 -48
- package/tsconfig.lib.json +0 -26
- package/tsconfig.spec.json +0 -17
- package/tslint.json +0 -17
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonGridComponent } from './common-grid/index.component';
|
|
3
|
-
import { CommonModule } from '@angular/common';
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
GridModule,
|
|
7
|
-
PageService,
|
|
8
|
-
SortService,
|
|
9
|
-
FilterService,
|
|
10
|
-
ExcelExportService,
|
|
11
|
-
EditService,
|
|
12
|
-
ResizeService,
|
|
13
|
-
ToolbarService,
|
|
14
|
-
ColumnChooserService,
|
|
15
|
-
AggregateService,
|
|
16
|
-
ColumnMenuService,
|
|
17
|
-
DetailRowService,
|
|
18
|
-
SelectionService,
|
|
19
|
-
PagerModule,
|
|
20
|
-
GroupService,
|
|
21
|
-
GridAllModule,
|
|
22
|
-
} from '@syncfusion/ej2-angular-grids';
|
|
23
|
-
|
|
24
|
-
@NgModule({
|
|
25
|
-
declarations: [
|
|
26
|
-
CommonGridComponent,
|
|
27
|
-
],
|
|
28
|
-
imports: [CommonModule, GridModule, PagerModule, GridAllModule],
|
|
29
|
-
providers: [
|
|
30
|
-
PageService,
|
|
31
|
-
SortService,
|
|
32
|
-
FilterService,
|
|
33
|
-
ExcelExportService,
|
|
34
|
-
EditService,
|
|
35
|
-
ResizeService,
|
|
36
|
-
ToolbarService,
|
|
37
|
-
ColumnChooserService,
|
|
38
|
-
AggregateService,
|
|
39
|
-
ColumnMenuService,
|
|
40
|
-
DetailRowService,
|
|
41
|
-
SelectionService,
|
|
42
|
-
GroupService,
|
|
43
|
-
],
|
|
44
|
-
exports: [
|
|
45
|
-
CommonGridComponent,
|
|
46
|
-
]
|
|
47
|
-
})
|
|
48
|
-
export class RaiseCommonLibModule { }
|
package/tsconfig.lib.json
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../../tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"outDir": "../../out-tsc/lib",
|
|
5
|
-
"target": "es2015",
|
|
6
|
-
"declaration": true,
|
|
7
|
-
"inlineSources": true,
|
|
8
|
-
"types": [],
|
|
9
|
-
"lib": [
|
|
10
|
-
"dom",
|
|
11
|
-
"es2018"
|
|
12
|
-
]
|
|
13
|
-
},
|
|
14
|
-
"angularCompilerOptions": {
|
|
15
|
-
"annotateForClosureCompiler": true,
|
|
16
|
-
"skipTemplateCodegen": true,
|
|
17
|
-
"strictMetadataEmit": true,
|
|
18
|
-
"fullTemplateTypeCheck": true,
|
|
19
|
-
"strictInjectionParameters": true,
|
|
20
|
-
"enableResourceInlining": true
|
|
21
|
-
},
|
|
22
|
-
"exclude": [
|
|
23
|
-
"src/test.ts",
|
|
24
|
-
"**/*.spec.ts"
|
|
25
|
-
]
|
|
26
|
-
}
|
package/tsconfig.spec.json
DELETED