@up-packages/ui 0.4.0-qa → 0.4.0
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/dist/components/UpxDatePicker/UpxDatePicker.vue.d.ts +4 -0
- package/dist/components/UpxRiskLevel/UpxRiskCard.vue.d.ts +5 -1
- package/dist/components/UpxRiskLevel/UpxRiskCriteria.vue.d.ts +2 -15
- package/dist/components/UpxRiskLevel/UpxRiskFinding.vue.d.ts +16 -0
- package/dist/components/UpxRiskLevel/UpxRiskLevel.vue.d.ts +1 -1
- package/dist/components/UpxRiskLevel/UpxRiskScore.vue.d.ts +22 -0
- package/dist/components/UpxRiskLevel/index.d.ts +5 -1
- package/dist/components/UpxSelect/UpxSelect.vue.d.ts +2 -0
- package/dist/components/UpxTextField/UpxTextField.vue.d.ts +7 -5
- package/dist/components/UpxTextarea/UpxTextarea.vue.d.ts +69 -0
- package/dist/components/UpxTextarea/index.d.ts +2 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/install.d.ts +3 -2
- package/dist/plugins/vuetify.d.ts +0 -1
- package/dist/up-ui.css +1 -1
- package/dist/uplexis-ui.js +6808 -6350
- package/dist/uplexis-ui.js.map +1 -1
- package/dist/uplexis-ui.umd.cjs +3 -3
- package/dist/uplexis-ui.umd.cjs.map +1 -1
- package/dist/utils/formatters.d.ts +5 -4
- package/package.json +1 -1
|
@@ -11,11 +11,12 @@
|
|
|
11
11
|
*/
|
|
12
12
|
export declare function formatCPF(text: string): string;
|
|
13
13
|
/**
|
|
14
|
-
* Formata CNPJ
|
|
15
|
-
* @param text - CNPJ sem formatação (14 dígitos)
|
|
16
|
-
* @returns CNPJ formatado (12.345.678/0001-90)
|
|
14
|
+
* Formata CNPJ (numérico ou alfanumérico — IN RFB 2.229/2024)
|
|
15
|
+
* @param text - CNPJ sem formatação (14 posições: dígitos e/ou letras A-Z)
|
|
16
|
+
* @returns CNPJ formatado (12.345.678/0001-90 ou 12.ABC.345/01DE-35)
|
|
17
17
|
* @example
|
|
18
|
-
* formatCNPJ('12345678000190')
|
|
18
|
+
* formatCNPJ('12345678000190') // '12.345.678/0001-90'
|
|
19
|
+
* formatCNPJ('12ABC34501DE35') // '12.ABC.345/01DE-35'
|
|
19
20
|
*/
|
|
20
21
|
export declare function formatCNPJ(text: string): string;
|
|
21
22
|
/**
|