@malloydata/render 0.0.332 → 0.0.333
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/module/component/render-numeric-field.d.ts +2 -2
- package/dist/module/index.mjs +17772 -17711
- package/dist/module/index.umd.js +279 -279
- package/package.json +5 -5
|
@@ -17,8 +17,8 @@ export declare function renderNumericField(f: Field, value: number | null | unde
|
|
|
17
17
|
* Used when NumberCell.stringValue is defined (bigint/bigdecimal subtypes).
|
|
18
18
|
* Default formatting preserves full precision with comma separators.
|
|
19
19
|
*
|
|
20
|
-
* Note: percent, duration, and custom number formats are lossy for values > 2^53
|
|
21
|
-
* because they require numeric operations.
|
|
20
|
+
* Note: percent, duration, scale, and custom number formats are lossy for values > 2^53
|
|
21
|
+
* because they require numeric operations. This is acceptable for abbreviated display.
|
|
22
22
|
*/
|
|
23
23
|
export declare function renderBigNumberField(f: Field, value: string | null | undefined, tagOverride?: Tag): string;
|
|
24
24
|
/**
|