@sd-angular/core 1.0.64 → 1.0.67

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 (27) hide show
  1. package/bundles/sd-angular-core-autocomplete.umd.js.map +1 -1
  2. package/bundles/sd-angular-core-autocomplete.umd.min.js.map +1 -1
  3. package/bundles/sd-angular-core-grid-material.umd.js +28 -9
  4. package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
  5. package/bundles/sd-angular-core-grid-material.umd.min.js +2 -2
  6. package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
  7. package/bundles/sd-angular-core-select.umd.js +3 -0
  8. package/bundles/sd-angular-core-select.umd.js.map +1 -1
  9. package/bundles/sd-angular-core-select.umd.min.js +1 -1
  10. package/bundles/sd-angular-core-select.umd.min.js.map +1 -1
  11. package/esm2015/autocomplete/src/lib/autocomplete.component.js +1 -1
  12. package/esm2015/grid-material/src/lib/components/desktop-cell-editor/desktop-cell-editor.component.js +2 -2
  13. package/esm2015/grid-material/src/lib/components/desktop-cell-view/desktop-cell-view.component.js +2 -2
  14. package/esm2015/grid-material/src/lib/models/grid-column.model.js +1 -1
  15. package/esm2015/grid-material/src/lib/models/grid-option.model.js +1 -1
  16. package/esm2015/grid-material/src/lib/pipes/cell-view.pipe.js +26 -7
  17. package/esm2015/select/src/lib/select.component.js +4 -1
  18. package/fesm2015/sd-angular-core-autocomplete.js.map +1 -1
  19. package/fesm2015/sd-angular-core-grid-material.js +27 -8
  20. package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
  21. package/fesm2015/sd-angular-core-select.js +3 -0
  22. package/fesm2015/sd-angular-core-select.js.map +1 -1
  23. package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
  24. package/grid-material/src/lib/models/grid-column.model.d.ts +1 -0
  25. package/grid-material/src/lib/models/grid-option.model.d.ts +4 -1
  26. package/package.json +1 -1
  27. package/{sd-angular-core-1.0.64.tgz → sd-angular-core-1.0.67.tgz} +0 -0
@@ -51,6 +51,7 @@ interface SdGridMaterialColumnNumber<T = any> extends SdGridMaterialBaseColumn<T
51
51
  required?: boolean | ((rowData: T) => boolean);
52
52
  minValue?: number;
53
53
  maxValue?: number;
54
+ precision?: number;
54
55
  validator?: (rowData: T) => string;
55
56
  };
56
57
  }
@@ -35,7 +35,10 @@ interface SdGridMaterialBaseOption<T = any> {
35
35
  subInformation?: SdGridMaterialSubInformation<T>;
36
36
  group?: SdGridMaterialGroup<T>;
37
37
  style?: SdGridMaterialStyle<T>;
38
- displayOnEmpty?: boolean | ((rowData: T, column?: SdGridMaterialColumn<T>) => string);
38
+ displayOnEmpty?: boolean | ((rowData: T, column?: SdGridMaterialColumn<T>) => string) | {
39
+ display?: boolean | ((rowData: T, column?: SdGridMaterialColumn<T>) => string);
40
+ emptyValues?: any[];
41
+ };
39
42
  }
40
43
  interface SdGridMaterialLocalOption<T = any> extends SdGridMaterialBaseOption<T> {
41
44
  type: 'local';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sd-angular/core",
3
- "version": "1.0.64",
3
+ "version": "1.0.67",
4
4
  "homepage": "https://www.facebook.com/DarkP3ter",
5
5
  "author": {
6
6
  "name": "darkpeter",
index ee7a0e8..c5a8346 100644
Binary file