nemesischart 0.1.14 → 0.1.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nemesischart",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "type": "module",
5
5
  "description": "A Vue 3 component library for dashboard cards and charts.",
6
6
  "keywords": [
package/types/index.d.ts CHANGED
@@ -199,6 +199,12 @@ export interface CardColumnProps {
199
199
  * @default '#1E40AF'
200
200
  */
201
201
  corPaleta?: string
202
+
203
+ /**
204
+ * When true, formats tooltip values as Brazilian Real (BRL) currency.
205
+ * @default false
206
+ */
207
+ moeda?: boolean
202
208
  }
203
209
 
204
210
  declare const Cards: DefineComponent<CardsProps, {}, {}, {}, {}, {}, {}, { click: () => void }>