@vygruppen/spor-react 2.3.1 → 2.3.3
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/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +14 -0
- package/dist/{CountryCodeSelect-ZOSDJ6DE.mjs → CountryCodeSelect-WGG2Z3VI.mjs} +1 -1
- package/dist/{chunk-DSLSJDMJ.mjs → chunk-QXVLVC2K.mjs} +293 -273
- package/dist/index.d.ts +69 -10
- package/dist/index.js +399 -377
- package/dist/index.mjs +1 -1
- package/package.json +6 -7
- package/src/i18n/index.tsx +100 -9
- package/src/input/NumericStepper.tsx +4 -1
- package/src/provider/SporProvider.tsx +1 -1
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@2.3.
|
2
|
+
> @vygruppen/spor-react@2.3.3 build
|
3
3
|
> tsup src/index.tsx --dts --treeshake --format cjs,esm
|
4
4
|
|
5
5
|
[34mCLI[39m Building entry: src/index.tsx
|
@@ -10,12 +10,12 @@
|
|
10
10
|
[34mESM[39m Build start
|
11
11
|
[34mDTS[39m Build start
|
12
12
|
"toTime" is imported from external module "@internationalized/date" but never used in "dist/index.js".
|
13
|
-
"toTime" is imported from external module "@internationalized/date" but never used in "dist/chunk-
|
13
|
+
"toTime" is imported from external module "@internationalized/date" but never used in "dist/chunk-QXVLVC2K.mjs".
|
14
|
+
[32mCJS[39m [1mdist/index.js [22m[32m890.77 KB[39m
|
15
|
+
[32mCJS[39m ⚡️ Build success in 4231ms
|
14
16
|
[32mESM[39m [1mdist/index.mjs [22m[32m2.02 KB[39m
|
15
|
-
[32mESM[39m [1mdist/CountryCodeSelect-
|
16
|
-
[32mESM[39m [1mdist/chunk-
|
17
|
-
[32mESM[39m ⚡️ Build success in
|
18
|
-
[
|
19
|
-
[
|
20
|
-
[32mDTS[39m ⚡️ Build success in 18593ms
|
21
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m254.60 KB[39m
|
17
|
+
[32mESM[39m [1mdist/CountryCodeSelect-WGG2Z3VI.mjs [22m[32m351.65 KB[39m
|
18
|
+
[32mESM[39m [1mdist/chunk-QXVLVC2K.mjs [22m[32m411.46 KB[39m
|
19
|
+
[32mESM[39m ⚡️ Build success in 4233ms
|
20
|
+
[32mDTS[39m ⚡️ Build success in 17246ms
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m256.10 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 2.3.3
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 8f76c59f: Implement all of i18n locally instead of using an external library.
|
8
|
+
|
9
|
+
This also adds support for nested hierarchies of keys, as well as fetching the current language through the useTranslation hook
|
10
|
+
|
11
|
+
## 2.3.2
|
12
|
+
|
13
|
+
### Patch Changes
|
14
|
+
|
15
|
+
- 785671da: NumericStepper: Hide the input field / numeric value if the value is zero (0)
|
16
|
+
|
3
17
|
## 2.3.1
|
4
18
|
|
5
19
|
### Patch Changes
|