@vygruppen/spor-react 3.7.6 → 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 +29 -0
- package/dist/{CountryCodeSelect-IV4VKD4A.mjs → CountryCodeSelect-BA3A7ODU.mjs} +1 -1
- package/dist/{chunk-LQEO65MM.mjs → chunk-HL3ESNVB.mjs} +654 -445
- package/dist/index.d.mts +237 -43
- package/dist/index.d.ts +237 -43
- package/dist/index.js +830 -621
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
- package/src/button/Button.tsx +7 -1
- package/src/button/FloatingActionButton.tsx +10 -1
- 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/tab/Tabs.tsx +11 -1
- package/src/theme/components/button.ts +18 -16
- package/src/theme/components/card.ts +18 -10
- package/src/theme/components/close-button.ts +9 -8
- package/src/theme/components/datepicker.ts +74 -23
- package/src/theme/components/fab.ts +76 -1
- package/src/theme/components/info-tag.ts +16 -1
- package/src/theme/components/line-icon.ts +5 -4
- package/src/theme/components/link.ts +14 -36
- package/src/theme/components/modal.ts +4 -3
- package/src/theme/components/tabs.ts +82 -1
- package/src/theme/components/travel-tag.ts +6 -4
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
|
-
|
11
|
+
"toZoned" and "toTime" are imported from external module "@internationalized/date" but never used in "dist/chunk-HL3ESNVB.mjs".
|
12
12
|
"toZoned" and "toTime" are imported from external module "@internationalized/date" but never used in "dist/index.js".
|
13
|
-
|
14
|
-
[32mCJS[39m [1mdist/index.js [22m[32m539.15 KB[39m
|
15
|
-
[32mCJS[39m ⚡️ Build success in 4394ms
|
13
|
+
[34mDTS[39m Build start
|
16
14
|
[32mESM[39m [1mdist/index.mjs [22m[32m2.09 KB[39m
|
17
|
-
[32mESM[39m [1mdist/CountryCodeSelect-
|
18
|
-
[32mESM[39m [1mdist/chunk-
|
19
|
-
[32mESM[39m ⚡️ Build success in
|
20
|
-
[
|
21
|
-
[
|
22
|
-
[32mDTS[39m
|
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,34 @@
|
|
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
|
+
|
16
|
+
## 3.7.7
|
17
|
+
|
18
|
+
### Patch Changes
|
19
|
+
|
20
|
+
- 2ffdd3b7: Tabs: changed from default to base
|
21
|
+
- d12c315d: travelTag: add support for dark mode
|
22
|
+
- b6884fa6: Tabs: Update variants and design for tabs
|
23
|
+
- fb6605c6: Card: Add dark mode support
|
24
|
+
- 4c078f92: Design tokens: Change the color for lokalbuss
|
25
|
+
InfoTag: Add dark mode support
|
26
|
+
- eaf12b4b: Link: Add dark mode support
|
27
|
+
- e103af4b: Button: Make buttons break on several lines if there isn't space
|
28
|
+
- bc846dd5: Fab:Add dark mode support
|
29
|
+
- Updated dependencies [4c078f92]
|
30
|
+
- @vygruppen/spor-design-tokens@3.2.1
|
31
|
+
|
3
32
|
## 3.7.6
|
4
33
|
|
5
34
|
### Patch Changes
|