monkey-front-core 0.0.293 → 0.0.294

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.
@@ -151,6 +151,18 @@ class MonkeyEcxUtils {
151
151
  }
152
152
  }[country.toUpperCase()]?.[type];
153
153
  }
154
+ static getDocumentPlaceholder(type, country = '') {
155
+ return {
156
+ BR: {
157
+ CPF: '000.000.000-XX',
158
+ CNPJ: '00.000.000/0000-00'
159
+ },
160
+ CL: {
161
+ CPF: '0000000-A',
162
+ CNPJ: '0000000-A'
163
+ }
164
+ }[country.toUpperCase()]?.[type];
165
+ }
154
166
  static formatDocumentWithMask(doc, withType, country) {
155
167
  if (!doc)
156
168
  return doc;