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/dist/nemesischart.es.js +607 -600
- package/dist/nemesischart.umd.js +2 -2
- package/package.json +1 -1
- package/types/index.d.ts +6 -0
package/package.json
CHANGED
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 }>
|