monkey-front-core 21.0.11 → 21.0.12
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -815,7 +815,7 @@ interface MonkeyEcxServiceControl {
|
|
|
815
815
|
isExporting: boolean;
|
|
816
816
|
isDeleting: boolean;
|
|
817
817
|
isDownloading: boolean;
|
|
818
|
-
|
|
818
|
+
isSubmitting: boolean;
|
|
819
819
|
[key: string]: boolean;
|
|
820
820
|
}
|
|
821
821
|
|
|
@@ -1745,7 +1745,7 @@ type LogParams = {
|
|
|
1745
1745
|
};
|
|
1746
1746
|
declare class MonkeyEcxUtils {
|
|
1747
1747
|
static persistNullEmptyUndefined(tp: any): boolean;
|
|
1748
|
-
static getDocumentType(doc: string, country?: string): "" | "
|
|
1748
|
+
static getDocumentType(doc: string, country?: string): "" | "CPF" | "CNPJ" | "RUT" | "RFC" | "EIN";
|
|
1749
1749
|
static getDocumentMask(type: DocumentType, country?: string): CountryMasks;
|
|
1750
1750
|
static getDocumentPlaceholder(type: DocumentType, country?: string): string;
|
|
1751
1751
|
static formatDocumentWithMask(doc: string, withType?: boolean, country?: string): string;
|
|
Binary file
|