@carbon/charts-vue 1.14.0 → 1.14.1
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 +9 -0
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 1.14.1 (2024-02-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts-vue
|
|
9
|
+
|
|
10
|
+
# Change Log
|
|
11
|
+
|
|
12
|
+
All notable changes to this project will be documented in this file. See
|
|
13
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
14
|
+
|
|
6
15
|
# 1.14.0 (2024-02-13)
|
|
7
16
|
|
|
8
17
|
### Features
|
package/dist/index.mjs
CHANGED
|
@@ -8453,13 +8453,13 @@ const oe = "cds", dn = {
|
|
|
8453
8453
|
threshold: 16,
|
|
8454
8454
|
numCharacter: 14
|
|
8455
8455
|
}, T$ = {
|
|
8456
|
-
code: navigator.language,
|
|
8456
|
+
code: (navigator == null ? void 0 : navigator.language) || "en-US",
|
|
8457
8457
|
// read from browser's navigator.language
|
|
8458
|
-
number: (e, t = navigator.language) => e.toLocaleString(t),
|
|
8458
|
+
number: (e, t = (navigator == null ? void 0 : navigator.language) || "en-US") => e.toLocaleString(t),
|
|
8459
8459
|
// based on code property if specified
|
|
8460
|
-
date: (e, t = navigator.language, n = {}, r = null) => r || e.toLocaleDateString(t, n),
|
|
8460
|
+
date: (e, t = (navigator == null ? void 0 : navigator.language) || "en-US", n = {}, r = null) => r || e.toLocaleDateString(t, n),
|
|
8461
8461
|
// based on code property if specified
|
|
8462
|
-
time: (e, t = navigator.language, n = {}, r = null) => r || e.toLocaleTimeString(t, n),
|
|
8462
|
+
time: (e, t = (navigator == null ? void 0 : navigator.language) || "en-US", n = {}, r = null) => r || e.toLocaleTimeString(t, n),
|
|
8463
8463
|
// based on code property if specified
|
|
8464
8464
|
optionsObject: {
|
|
8465
8465
|
"15seconds": {
|