@lightsparkdev/core 1.0.5 → 1.0.7
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 +14 -0
- package/dist/chunk-UU6SHVGX.js +909 -0
- package/dist/index.cjs +604 -25
- package/dist/index.d.ts +1 -1
- package/dist/index.js +37 -1
- package/dist/utils/index.cjs +604 -25
- package/dist/utils/index.d.ts +150 -21
- package/dist/utils/index.js +37 -1
- package/package.json +3 -2
- package/src/utils/currency.ts +400 -50
- package/src/utils/index.ts +3 -0
- package/src/utils/locale.ts +3 -0
- package/src/utils/localeToCurrencyCodes.ts +272 -0
- package/src/utils/numbers.ts +32 -0
- package/src/utils/tests/currency.test.ts +256 -0
- package/dist/chunk-5P2KZ44N.js +0 -348
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @lightsparkdev/core
|
|
2
2
|
|
|
3
|
+
## 1.0.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 24782f5: separateCurrencyStrParts and tests
|
|
8
|
+
|
|
9
|
+
## 1.0.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- ffcedbe: [core] Move number utils to core
|
|
14
|
+
- d9f6d5b: [core] Move remaining currency utils and add tests
|
|
15
|
+
- baeb7a1: [core] localeToCurrencySymbol and tests
|
|
16
|
+
|
|
3
17
|
## 1.0.5
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|