@cloudflare/util-formatters 2.6.15 → 2.7.0
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/CHANGELOG.md +11 -0
- package/dist/formatters.d.ts +1 -0
- package/es/formatters.js +2 -1
- package/lib/formatters.js +8 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [2.7.0](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/util-formatters@2.6.15...@cloudflare/util-formatters@2.7.0) (2021-11-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **stratus:** EW-5929 Integrate percentage view for chart legend ([7fecfd9](http://stash.cfops.it:7999/fe/stratus/commits/7fecfd9))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [2.6.15](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/util-formatters@2.6.14...@cloudflare/util-formatters@2.6.15) (2021-11-23)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @cloudflare/util-formatters
|
package/dist/formatters.d.ts
CHANGED
|
@@ -67,3 +67,4 @@ export declare const formatBits: (number: number, locale: SupportedLocales | und
|
|
|
67
67
|
*/
|
|
68
68
|
export declare const formatNumberForAnalytics: (number: number, locale?: SupportedLocales, useSI?: boolean, decimalPlaces?: number, trimInsignificantZeros?: boolean) => string;
|
|
69
69
|
export declare const capitalizeStr: (str: string) => string | undefined;
|
|
70
|
+
export declare const formatPercentage: (value: number, total: number) => string;
|
package/es/formatters.js
CHANGED
|
@@ -163,4 +163,5 @@ export const formatBits = (number, locale = DEFAULT_LOCALE, includeDecimals, use
|
|
|
163
163
|
export const formatNumberForAnalytics = (number, locale = DEFAULT_LOCALE, useSI = false, decimalPlaces = 2, trimInsignificantZeros = true) => {
|
|
164
164
|
return formatNumber(number, locale, useSI, decimalPlaces, trimInsignificantZeros);
|
|
165
165
|
};
|
|
166
|
-
export const capitalizeStr = str => str && str.charAt(0).toUpperCase() + str.slice(1);
|
|
166
|
+
export const capitalizeStr = str => str && str.charAt(0).toUpperCase() + str.slice(1);
|
|
167
|
+
export const formatPercentage = (value, total) => `${Math.round(value * 100 / total * 100) / 100}%`;
|
package/lib/formatters.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.capitalizeStr = exports.formatNumberForAnalytics = exports.formatBits = exports.formatBytes = exports.formatCurrency = exports.formatNumber = exports.localizeNumberWithPrecision = exports.formatDate = exports.DateFormatters = void 0;
|
|
6
|
+
exports.formatPercentage = exports.capitalizeStr = exports.formatNumberForAnalytics = exports.formatBits = exports.formatBytes = exports.formatCurrency = exports.formatNumber = exports.localizeNumberWithPrecision = exports.formatDate = exports.DateFormatters = void 0;
|
|
7
7
|
|
|
8
8
|
var _d3Format = require("d3-format");
|
|
9
9
|
|
|
@@ -221,4 +221,10 @@ var capitalizeStr = function capitalizeStr(str) {
|
|
|
221
221
|
return str && str.charAt(0).toUpperCase() + str.slice(1);
|
|
222
222
|
};
|
|
223
223
|
|
|
224
|
-
exports.capitalizeStr = capitalizeStr;
|
|
224
|
+
exports.capitalizeStr = capitalizeStr;
|
|
225
|
+
|
|
226
|
+
var formatPercentage = function formatPercentage(value, total) {
|
|
227
|
+
return "".concat(Math.round(value * 100 / total * 100) / 100, "%");
|
|
228
|
+
};
|
|
229
|
+
|
|
230
|
+
exports.formatPercentage = formatPercentage;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudflare/util-formatters",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.7.0",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"module": "es/index.js",
|
|
@@ -21,5 +21,5 @@
|
|
|
21
21
|
"d3-format": "^1.3.2",
|
|
22
22
|
"moment": "^2.22.1"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "46e16cc7018fe9cf0cde631e409f4d06b4441af7"
|
|
25
25
|
}
|