@sd-angular/core 1.2.78 → 1.2.81

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 (36) 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-date-month.umd.js +11 -5
  6. package/bundles/sd-angular-core-date-month.umd.js.map +1 -1
  7. package/bundles/sd-angular-core-date-month.umd.min.js +2 -2
  8. package/bundles/sd-angular-core-date-month.umd.min.js.map +1 -1
  9. package/bundles/sd-angular-core-export.umd.js +20 -4
  10. package/bundles/sd-angular-core-export.umd.js.map +1 -1
  11. package/bundles/sd-angular-core-export.umd.min.js +1 -1
  12. package/bundles/sd-angular-core-export.umd.min.js.map +1 -1
  13. package/bundles/sd-angular-core-grid-material.umd.js +265 -208
  14. package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
  15. package/bundles/sd-angular-core-grid-material.umd.min.js +1 -1
  16. package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
  17. package/date-month/sd-angular-core-date-month.metadata.json +1 -1
  18. package/esm2015/api/src/lib/api.service.js +2 -2
  19. package/esm2015/date-month/src/lib/date-month.component.js +10 -3
  20. package/esm2015/export/src/lib/export.service.js +8 -3
  21. package/esm2015/grid-material/src/lib/components/popup-export/popup-export.component.js +38 -15
  22. package/esm2015/grid-material/src/lib/grid-material.component.js +55 -29
  23. package/export/src/lib/export.service.d.ts +1 -1
  24. package/fesm2015/sd-angular-core-api.js +1 -1
  25. package/fesm2015/sd-angular-core-api.js.map +1 -1
  26. package/fesm2015/sd-angular-core-date-month.js +9 -3
  27. package/fesm2015/sd-angular-core-date-month.js.map +1 -1
  28. package/fesm2015/sd-angular-core-export.js +7 -2
  29. package/fesm2015/sd-angular-core-export.js.map +1 -1
  30. package/fesm2015/sd-angular-core-grid-material.js +91 -42
  31. package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
  32. package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
  33. package/grid-material/src/lib/components/popup-export/popup-export.component.d.ts +4 -1
  34. package/grid-material/src/lib/grid-material.component.d.ts +1 -0
  35. package/package.json +1 -1
  36. package/{sd-angular-core-1.2.78.tgz → sd-angular-core-1.2.81.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.78",
3
+ "version": "1.2.81",
4
4
  "homepage": "https://www.facebook.com/DarkP3ter",
5
5
  "author": {
6
6
  "name": "darkpeter",
index c413b3f..887b565 100644
Binary file