@tagplus/components 5.3.0 → 5.3.2

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.
@@ -0,0 +1,35 @@
1
+ import enLocale from 'element-plus/es/locale/lang/en'
2
+
3
+ export default {
4
+ ...enLocale,
5
+ lingua: 'English',
6
+
7
+ tp: {
8
+ money: {
9
+ currency: '$'
10
+ }
11
+ },
12
+
13
+ locale: {
14
+ // locale name equals filename reference
15
+ name: 'en',
16
+
17
+ // IANA.ORG convetions according to W3C
18
+ prefix: 'en-US',
19
+
20
+ number: {
21
+ decimal: '.',
22
+ thousands: '',
23
+ prefix: '',
24
+ suffix: '',
25
+ precision: 2
26
+ },
27
+
28
+ date: {
29
+ format: 'YYYY-MM-DD'
30
+ }
31
+ },
32
+ common: {
33
+ placeholder: 'placeholder'
34
+ }
35
+ }
@@ -0,0 +1,35 @@
1
+ import ptbrLocale from 'element-plus/es/locale/lang/pt-br'
2
+
3
+ export default {
4
+ ...ptbrLocale,
5
+ lingua: 'Português',
6
+
7
+ tp: {
8
+ money: {
9
+ currency: 'R$'
10
+ }
11
+ },
12
+
13
+ locale: {
14
+ // locale name equals filename reference
15
+ name: 'pt-br',
16
+
17
+ // IANA.ORG convetions according to W3C
18
+ prefix: 'pt-BR',
19
+
20
+ number: {
21
+ decimal: ',',
22
+ thousands: '.',
23
+ prefix: '',
24
+ suffix: '',
25
+ precision: 2
26
+ },
27
+
28
+ date: {
29
+ format: 'DD/MM/YYYY'
30
+ }
31
+ },
32
+ common: {
33
+ placeholder: 'placeholder'
34
+ }
35
+ }
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "email": "qualidade@tagplus.com.br"
9
9
  }
10
10
  ],
11
- "version": "5.3.0",
11
+ "version": "5.3.2",
12
12
  "type": "module",
13
13
  "main": "./dist/lib/src/main.js",
14
14
  "module": "./dist/es/src/main.mjs",
@@ -17,7 +17,8 @@
17
17
  "import": "./dist/es/src/main.mjs"
18
18
  },
19
19
  "files": [
20
- "dist"
20
+ "dist",
21
+ "dist/langs"
21
22
  ],
22
23
  "engines": {
23
24
  "node": ">=22.0"
@@ -83,6 +84,7 @@
83
84
  "stylelint-config-recommended-vue": "^1.5.0",
84
85
  "stylelint-config-standard-scss": "^13.1.0",
85
86
  "vite": "^6.1.0",
87
+ "vite-plugin-static-copy": "^2.2.0",
86
88
  "vue-axios": "^3.5.2",
87
89
  "vue-eslint-parser": "^9.4.2",
88
90
  "vue-i18n": "^9.9.1",