@masterkeymaterial/ui 0.2.9 → 0.2.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@masterkeymaterial/ui",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "Biblioteca Angular de componentes UI e campos de formulario reutilizaveis para construir formularios dinamicos.",
5
5
  "keywords": [
6
6
  "angular",
@@ -790,7 +790,10 @@ declare class FormFilter<T> extends BaseFieldsValues<T> {
790
790
  interface ISaveTasks {
791
791
  title: string;
792
792
  icone: string;
793
- task: () => Promise<boolean>;
793
+ task: () => Promise<{
794
+ s: boolean;
795
+ m: string;
796
+ }>;
794
797
  done?: boolean;
795
798
  success?: boolean;
796
799
  }