@sd-angular/core 1.2.77 → 1.2.80
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-api.umd.js +1 -1
- package/bundles/sd-angular-core-api.umd.js.map +1 -1
- package/bundles/sd-angular-core-api.umd.min.js +1 -1
- package/bundles/sd-angular-core-api.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-export.umd.js +20 -4
- 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 +254 -208
- 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/esm2015/api/src/lib/api.service.js +2 -2
- package/esm2015/export/src/lib/export.service.js +8 -3
- package/esm2015/grid-material/src/lib/components/popup-export/popup-export.component.js +27 -15
- package/esm2015/grid-material/src/lib/grid-material.component.js +55 -29
- package/export/src/lib/export.service.d.ts +1 -1
- package/fesm2015/sd-angular-core-api.js +1 -1
- package/fesm2015/sd-angular-core-api.js.map +1 -1
- package/fesm2015/sd-angular-core-export.js +7 -2
- package/fesm2015/sd-angular-core-export.js.map +1 -1
- package/fesm2015/sd-angular-core-grid-material.js +80 -42
- package/fesm2015/sd-angular-core-grid-material.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 +4 -1
- package/grid-material/src/lib/grid-material.component.d.ts +1 -0
- package/package.json +1 -1
- package/{sd-angular-core-1.2.77.tgz → sd-angular-core-1.2.80.tgz} +0 -0
|
@@ -32,6 +32,7 @@ export declare class SdPopupExport implements OnInit, AfterViewInit {
|
|
|
32
32
|
file: SdExportFile;
|
|
33
33
|
columns: SdExportColumn[];
|
|
34
34
|
isCSV?: boolean;
|
|
35
|
+
isRaw?: boolean;
|
|
35
36
|
}>;
|
|
36
37
|
form: FormGroup;
|
|
37
38
|
set _gridOption(option: SdGridMaterialOption);
|
|
@@ -41,7 +42,9 @@ export declare class SdPopupExport implements OnInit, AfterViewInit {
|
|
|
41
42
|
ngOnInit(): void;
|
|
42
43
|
ngAfterViewInit(): void;
|
|
43
44
|
open: () => Promise<void>;
|
|
44
|
-
exportDefault: (
|
|
45
|
+
exportDefault: () => void;
|
|
46
|
+
exportCSV: () => void;
|
|
47
|
+
exportRaw: () => void;
|
|
45
48
|
loadFiles: (group?: string) => Promise<void>;
|
|
46
49
|
generateTemplate: () => Promise<void>;
|
|
47
50
|
generateAndUploadTemplate: (fileName?: string) => Promise<{
|
|
@@ -78,6 +78,7 @@ export declare class SdGridMaterial<T = any> implements OnInit, AfterViewInit, O
|
|
|
78
78
|
file: SdExportFile;
|
|
79
79
|
columns: SdExportColumn[];
|
|
80
80
|
isCSV: boolean;
|
|
81
|
+
isRaw: boolean;
|
|
81
82
|
}) => Promise<void>;
|
|
82
83
|
onFilterChange: () => void;
|
|
83
84
|
onExpand: (rowData: SdGridMaterialItem<T>) => Promise<void>;
|
package/package.json
CHANGED
|
index 384c310..f3a96e3 100644
|
|
|
Binary file
|