@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.
Files changed (28) hide show
  1. package/bundles/sd-angular-core-api.umd.js +1 -1
  2. package/bundles/sd-angular-core-api.umd.js.map +1 -1
  3. package/bundles/sd-angular-core-api.umd.min.js +1 -1
  4. package/bundles/sd-angular-core-api.umd.min.js.map +1 -1
  5. package/bundles/sd-angular-core-export.umd.js +20 -4
  6. package/bundles/sd-angular-core-export.umd.js.map +1 -1
  7. package/bundles/sd-angular-core-export.umd.min.js +1 -1
  8. package/bundles/sd-angular-core-export.umd.min.js.map +1 -1
  9. package/bundles/sd-angular-core-grid-material.umd.js +254 -208
  10. package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
  11. package/bundles/sd-angular-core-grid-material.umd.min.js +1 -1
  12. package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
  13. package/esm2015/api/src/lib/api.service.js +2 -2
  14. package/esm2015/export/src/lib/export.service.js +8 -3
  15. package/esm2015/grid-material/src/lib/components/popup-export/popup-export.component.js +27 -15
  16. package/esm2015/grid-material/src/lib/grid-material.component.js +55 -29
  17. package/export/src/lib/export.service.d.ts +1 -1
  18. package/fesm2015/sd-angular-core-api.js +1 -1
  19. package/fesm2015/sd-angular-core-api.js.map +1 -1
  20. package/fesm2015/sd-angular-core-export.js +7 -2
  21. package/fesm2015/sd-angular-core-export.js.map +1 -1
  22. package/fesm2015/sd-angular-core-grid-material.js +80 -42
  23. package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
  24. package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
  25. package/grid-material/src/lib/components/popup-export/popup-export.component.d.ts +4 -1
  26. package/grid-material/src/lib/grid-material.component.d.ts +1 -0
  27. package/package.json +1 -1
  28. 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: (isCSV?: boolean) => void;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sd-angular/core",
3
- "version": "1.2.77",
3
+ "version": "1.2.80",
4
4
  "homepage": "https://www.facebook.com/DarkP3ter",
5
5
  "author": {
6
6
  "name": "darkpeter",
index 384c310..f3a96e3 100644
Binary file