@woovi/ui 7.0.0 → 7.0.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.
package/locales/en.json CHANGED
@@ -203,6 +203,8 @@
203
203
  "to upload your data": "to upload your data",
204
204
  "to {{companyName}}": "to {{companyName}}",
205
205
  "via Pix": "via Pix",
206
+ "{{count}} items selected_one": "{{count}} item selected",
207
+ "{{count}} items selected_other": "{{count}} items selected",
206
208
  "{{count}} selected_one": "{{count}} selected",
207
209
  "{{count}} selected_other": "{{count}} selected",
208
210
  "{{finalValue}}": "{{finalValue}}"
package/locales/es.json CHANGED
@@ -204,6 +204,9 @@
204
204
  "to upload your data": "para subir tus datos",
205
205
  "to {{companyName}}": "a {{nombre de la empresa}}",
206
206
  "via Pix": "a través de Pix",
207
+ "{{count}} items selected_many": "{{count}} elementos seleccionados",
208
+ "{{count}} items selected_one": "{{count}} elemento seleccionado",
209
+ "{{count}} items selected_other": "{{count}} elementos seleccionados",
207
210
  "{{count}} selected_many": "{{count}} seleccionados_muchos",
208
211
  "{{count}} selected_one": "{{count}} seleccionado_uno",
209
212
  "{{count}} selected_other": "{{count}} seleccionado_otro",
@@ -204,6 +204,9 @@
204
204
  "to upload your data": "para enviar seus dados",
205
205
  "to {{companyName}}": "para {{nomedaempresa}}",
206
206
  "via Pix": "via Pix",
207
+ "{{count}} items selected_many": "{{count}} itens selecionados",
208
+ "{{count}} items selected_one": "{{count}} item selecionado",
209
+ "{{count}} items selected_other": "{{count}} itens selecionados",
207
210
  "{{count}} selected_many": "{{count}} selecionados_many",
208
211
  "{{count}} selected_one": "{{contagem}} selecionados_um",
209
212
  "{{count}} selected_other": "{{count}} selecionados_outros",
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "@woovi/ui",
3
3
  "description": "Woovi UI component library",
4
- "version": "7.0.0",
5
- "packageManager": "pnpm@10.28.1",
4
+ "version": "7.0.2",
6
5
  "author": "Woovi",
7
6
  "dependencies": {
8
7
  "@emotion/react": "^11.14.0",
@@ -14,7 +13,7 @@
14
13
  "@mui/x-data-grid-pro": "8.27.1",
15
14
  "@mui/x-license": "^8.26.0",
16
15
  "@tanstack/react-virtual": "3.13.18",
17
- "@woovi-private/release": "^1.1.0",
16
+ "@woovi-private/release": "^1.2.0",
18
17
  "brazilian-values": "0.13.1",
19
18
  "dot-object": "2.1.5",
20
19
  "formik": "3.0.0-next.6",
@@ -144,6 +143,9 @@
144
143
  "url": "https://github.com/entria/woovi-ui",
145
144
  "type": "git"
146
145
  },
146
+ "sideEffects": false,
147
+ "type": "module",
148
+ "types": "./dist/index.d.ts",
147
149
  "scripts": {
148
150
  "changelo:major": "pnpm n ./scripts/release/changelog.ts --major",
149
151
  "changelo:minor": "pnpm n ./scripts/release/changelog.ts --minor",
@@ -172,16 +174,8 @@
172
174
  "storybook:build": "turbo run docs:build",
173
175
  "updateRelease": "woovi-update-release",
174
176
  "firstRelease": "woovi-first-release",
175
- "publish:npm": "./release/publish-npm.sh",
176
- "publish:verdaccio": "./release/publish-verdaccio.sh"
177
- },
178
- "pnpm": {
179
- "overrides": {
180
- "@types/react": "18.3.12",
181
- "@types/react-dom": "18.3.0"
182
- }
183
- },
184
- "sideEffects": false,
185
- "type": "module",
186
- "types": "./dist/index.d.ts"
177
+ "publish:all": "./release/publish.sh",
178
+ "publish:npm": "./release/publish.sh",
179
+ "publish:verdaccio": "./release/publish.sh"
180
+ }
187
181
  }