@vygruppen/spor-react 5.1.0 → 5.2.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/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +16 -0
- package/dist/{CountryCodeSelect-M5TBGWY5.mjs → CountryCodeSelect-IUVBFVKP.mjs} +1 -1
- package/dist/{chunk-VXZX2ZXT.mjs → chunk-HOS74XL2.mjs} +300 -57
- package/dist/index.d.mts +18 -13
- package/dist/index.d.ts +18 -13
- package/dist/index.js +497 -317
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/datepicker/DatePicker.tsx +2 -1
- package/src/datepicker/DateRangePicker.tsx +8 -1
- package/src/datepicker/TimePicker.tsx +1 -1
- package/src/input/NumericStepper.tsx +2 -2
- package/src/stepper/StepperStep.tsx +2 -2
- package/src/theme/components/listbox.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@5.
|
2
|
+
> @vygruppen/spor-react@5.2.0 build
|
3
3
|
> tsup src/index.tsx --dts --treeshake --format cjs,esm
|
4
4
|
|
5
5
|
[34mCLI[39m Building entry: src/index.tsx
|
@@ -9,14 +9,14 @@
|
|
9
9
|
[34mCJS[39m Build start
|
10
10
|
[34mESM[39m Build start
|
11
11
|
"Collapse" is imported from external module "@chakra-ui/react" but never used in "dist/index.js".
|
12
|
-
"Collapse" is imported from external module "@chakra-ui/react" but never used in "dist/chunk-
|
12
|
+
"Collapse" is imported from external module "@chakra-ui/react" but never used in "dist/chunk-HOS74XL2.mjs".
|
13
13
|
[34mDTS[39m Build start
|
14
|
-
[32mCJS[39m [1mdist/index.js [22m[
|
15
|
-
[32mCJS[39m ⚡️ Build success in
|
14
|
+
[32mCJS[39m [1mdist/index.js [22m[32m500.01 KB[39m
|
15
|
+
[32mCJS[39m ⚡️ Build success in 2285ms
|
16
16
|
[32mESM[39m [1mdist/index.mjs [22m[32m2.12 KB[39m
|
17
|
-
[32mESM[39m [1mdist/CountryCodeSelect-
|
18
|
-
[32mESM[39m [1mdist/chunk-
|
19
|
-
[32mESM[39m ⚡️ Build success in
|
20
|
-
[32mDTS[39m ⚡️ Build success in
|
21
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m262.
|
22
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[32m262.
|
17
|
+
[32mESM[39m [1mdist/CountryCodeSelect-IUVBFVKP.mjs [22m[32m1.19 KB[39m
|
18
|
+
[32mESM[39m [1mdist/chunk-HOS74XL2.mjs [22m[32m392.05 KB[39m
|
19
|
+
[32mESM[39m ⚡️ Build success in 2286ms
|
20
|
+
[32mDTS[39m ⚡️ Build success in 14519ms
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m262.86 KB[39m
|
22
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m262.86 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 5.2.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- 54c05a9: DatePicker, DateRangePicker, TimePicker: Add null as an onChange value
|
8
|
+
|
9
|
+
### Patch Changes
|
10
|
+
|
11
|
+
- 18fb096: NumericStepper: Fixed the Icon-color for NumericStepper on dark mode
|
12
|
+
|
13
|
+
## 5.1.1
|
14
|
+
|
15
|
+
### Patch Changes
|
16
|
+
|
17
|
+
- 9b62a230: Change color of listbox from mint to green
|
18
|
+
|
3
19
|
## 5.1.0
|
4
20
|
|
5
21
|
### Minor Changes
|