@vygruppen/spor-react 3.7.7 → 3.8.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 +11 -11
- package/CHANGELOG.md +13 -0
- package/dist/{CountryCodeSelect-IAYKP6P5.mjs → CountryCodeSelect-BA3A7ODU.mjs} +1 -1
- package/dist/{chunk-QJI3YQWW.mjs → chunk-HL3ESNVB.mjs} +429 -390
- package/dist/index.d.mts +64 -17
- package/dist/index.d.ts +64 -17
- package/dist/index.js +526 -487
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
- package/src/datepicker/Calendar.tsx +8 -3
- package/src/datepicker/CalendarCell.tsx +8 -3
- package/src/datepicker/CalendarGrid.tsx +9 -3
- package/src/datepicker/CalendarTriggerButton.tsx +10 -3
- package/src/datepicker/DatePicker.tsx +15 -35
- package/src/datepicker/DateRangePicker.tsx +14 -25
- package/src/datepicker/DateTimeSegment.tsx +0 -2
- package/src/datepicker/RangeCalendar.tsx +8 -4
- package/src/datepicker/StyledField.tsx +6 -1
- package/src/datepicker/TimePicker.tsx +1 -1
- package/src/input/NumericStepper.tsx +91 -68
- package/src/theme/components/close-button.ts +9 -8
- package/src/theme/components/datepicker.ts +74 -23
- package/src/theme/components/modal.ts +4 -3
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@3.
|
2
|
+
> @vygruppen/spor-react@3.8.0 build
|
3
3
|
> tsup src/index.tsx --dts --treeshake --format cjs,esm
|
4
4
|
|
5
5
|
[34mCLI[39m Building entry: src/index.tsx
|
@@ -8,15 +8,15 @@
|
|
8
8
|
[34mCLI[39m Target: node16
|
9
9
|
[34mCJS[39m Build start
|
10
10
|
[34mESM[39m Build start
|
11
|
-
|
12
|
-
"toZoned" and "toTime" are imported from external module "@internationalized/date" but never used in "dist/chunk-QJI3YQWW.mjs".
|
11
|
+
"toZoned" and "toTime" are imported from external module "@internationalized/date" but never used in "dist/chunk-HL3ESNVB.mjs".
|
13
12
|
"toZoned" and "toTime" are imported from external module "@internationalized/date" but never used in "dist/index.js".
|
13
|
+
[34mDTS[39m Build start
|
14
14
|
[32mESM[39m [1mdist/index.mjs [22m[32m2.09 KB[39m
|
15
|
-
[32mESM[39m [1mdist/CountryCodeSelect-
|
16
|
-
[32mESM[39m [1mdist/chunk-
|
17
|
-
[32mESM[39m ⚡️ Build success in
|
18
|
-
[32mCJS[39m [1mdist/index.js [22m[
|
19
|
-
[32mCJS[39m ⚡️ Build success in
|
20
|
-
[32mDTS[39m ⚡️ Build success in
|
21
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
22
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[
|
15
|
+
[32mESM[39m [1mdist/CountryCodeSelect-BA3A7ODU.mjs [22m[32m1.19 KB[39m
|
16
|
+
[32mESM[39m [1mdist/chunk-HL3ESNVB.mjs [22m[32m438.29 KB[39m
|
17
|
+
[32mESM[39m ⚡️ Build success in 2793ms
|
18
|
+
[32mCJS[39m [1mdist/index.js [22m[32m548.73 KB[39m
|
19
|
+
[32mCJS[39m ⚡️ Build success in 2794ms
|
20
|
+
[32mDTS[39m ⚡️ Build success in 14107ms
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m264.64 KB[39m
|
22
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m264.64 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 3.8.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- d709b8b0: NumericStepper: Add two new props – `stepSize` (which sets the number to increment at a time) and `showZero` ( which decides whether you should show the digit 0 when the count is 0)
|
8
|
+
|
9
|
+
### Patch Changes
|
10
|
+
|
11
|
+
- bd1d64b1: close-button: added dark mode
|
12
|
+
- c999ff24: DatePicker: add new variations, dark mode and deprecated some old designs
|
13
|
+
- 8c44575c: General: Downgrade framer-motion because of race condition bug
|
14
|
+
- edb3b106: Modal: Add Dark Mode support
|
15
|
+
|
3
16
|
## 3.7.7
|
4
17
|
|
5
18
|
### Patch Changes
|