@sd-angular/core 1.3.34 → 1.3.36
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/sd-angular-core-export.umd.js +221 -77
- package/bundles/sd-angular-core-export.umd.js.map +1 -1
- package/bundles/sd-angular-core-export.umd.min.js +1 -1
- package/bundles/sd-angular-core-export.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-grid-material.umd.js +153 -181
- package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-upload-excel.umd.js.map +1 -1
- package/bundles/sd-angular-core-upload-excel.umd.min.js.map +1 -1
- package/esm2015/export/src/lib/export.model.js +1 -1
- package/esm2015/export/src/lib/export.service.js +186 -48
- package/esm2015/grid-material/src/lib/components/popup-export/popup-export.component.js +1 -8
- package/esm2015/grid-material/src/lib/grid-material.component.js +18 -36
- package/esm2015/grid-material/src/lib/models/grid-export.model.js +1 -1
- package/esm2015/upload-excel/src/lib/upload-excel.component.js +1 -1
- package/export/sd-angular-core-export.metadata.json +1 -1
- package/export/src/lib/export.model.d.ts +4 -4
- package/export/src/lib/export.service.d.ts +4 -6
- package/fesm2015/sd-angular-core-export.js +185 -47
- package/fesm2015/sd-angular-core-export.js.map +1 -1
- package/fesm2015/sd-angular-core-grid-material.js +17 -42
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/fesm2015/sd-angular-core-upload-excel.js.map +1 -1
- package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
- package/grid-material/src/lib/components/popup-export/popup-export.component.d.ts +0 -2
- package/grid-material/src/lib/grid-material.component.d.ts +0 -1
- package/grid-material/src/lib/models/grid-export.model.d.ts +0 -1
- package/package.json +3 -2
- package/{sd-angular-core-1.3.34.tgz → sd-angular-core-1.3.36.tgz} +0 -0
|
@@ -32,7 +32,6 @@ export declare class SdPopupExport implements OnInit, AfterViewInit {
|
|
|
32
32
|
file: SdExportFile;
|
|
33
33
|
columns: SdExportColumn[];
|
|
34
34
|
isCSV?: boolean;
|
|
35
|
-
isRaw?: boolean;
|
|
36
35
|
}>;
|
|
37
36
|
form: FormGroup;
|
|
38
37
|
set _gridOption(option: SdGridMaterialOption);
|
|
@@ -46,7 +45,6 @@ export declare class SdPopupExport implements OnInit, AfterViewInit {
|
|
|
46
45
|
open: () => Promise<void>;
|
|
47
46
|
exportDefault: () => void;
|
|
48
47
|
exportCSV: () => void;
|
|
49
|
-
exportRaw: () => void;
|
|
50
48
|
loadFiles: (group?: string) => Promise<void>;
|
|
51
49
|
generateTemplate: () => Promise<void>;
|
|
52
50
|
generateAndUploadTemplate: (fileName?: string) => Promise<{
|
|
@@ -77,7 +77,6 @@ export declare class SdGridMaterial<T = any> implements OnInit, AfterViewInit, O
|
|
|
77
77
|
file: SdExportFile;
|
|
78
78
|
columns: SdExportColumn[];
|
|
79
79
|
isCSV: boolean;
|
|
80
|
-
isRaw: boolean;
|
|
81
80
|
}) => Promise<void>;
|
|
82
81
|
onFilterChange: () => void;
|
|
83
82
|
onExpand: (rowData: SdGridMaterialItem<T>) => Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sd-angular/core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.36",
|
|
4
4
|
"homepage": "https://www.facebook.com/DarkP3ter",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "darkpeter",
|
|
@@ -45,7 +45,8 @@
|
|
|
45
45
|
"uuid": "^8.3.2",
|
|
46
46
|
"xlsx": "^0.16.3",
|
|
47
47
|
"export-to-csv": "^0.2.1",
|
|
48
|
-
"ngx-print": "^1.2.0-beta.5"
|
|
48
|
+
"ngx-print": "^1.2.0-beta.5",
|
|
49
|
+
"exceljs": "^4.3.0"
|
|
49
50
|
},
|
|
50
51
|
"main": "bundles/sd-angular-core.umd.js",
|
|
51
52
|
"module": "fesm2015/sd-angular-core.js",
|
|
index a10fb06..ddc615a 100644
|
|
|
Binary file
|