@vygruppen/spor-react 12.24.16 → 13.0.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.
Files changed (84) hide show
  1. package/.turbo/turbo-build.log +10 -10
  2. package/.turbo/turbo-postinstall.log +4 -3
  3. package/CHANGELOG.md +18 -0
  4. package/dist/index.cjs +2753 -2646
  5. package/dist/index.cjs.map +1 -1
  6. package/dist/index.d.cts +887 -601
  7. package/dist/index.d.ts +887 -601
  8. package/dist/index.mjs +2712 -2605
  9. package/dist/index.mjs.map +1 -1
  10. package/package.json +8 -8
  11. package/src/accordion/Accordion.tsx +34 -29
  12. package/src/accordion/Expandable.tsx +20 -21
  13. package/src/alert/Alert.tsx +7 -5
  14. package/src/alert/AlertIcon.tsx +19 -20
  15. package/src/alert/ExpandableAlert.tsx +65 -64
  16. package/src/alert/ServiceAlert.tsx +78 -78
  17. package/src/breadcrumb/Breadcrumb.tsx +37 -34
  18. package/src/button/Button.tsx +64 -57
  19. package/src/button/ButtonGroup.tsx +12 -10
  20. package/src/button/Clipboard.tsx +21 -18
  21. package/src/button/CloseButton.tsx +19 -17
  22. package/src/button/FloatingActionButton.tsx +41 -47
  23. package/src/button/IconButton.tsx +20 -18
  24. package/src/calendar/CalendarContext.tsx +1 -1
  25. package/src/color-mode/color-mode.tsx +7 -5
  26. package/src/datepicker/CalendarTriggerButton.tsx +11 -7
  27. package/src/datepicker/DateField.tsx +53 -51
  28. package/src/datepicker/DatePicker.tsx +127 -134
  29. package/src/datepicker/DateTimeSegment.tsx +44 -40
  30. package/src/datepicker/StyledField.tsx +39 -36
  31. package/src/dialog/Dialog.tsx +14 -11
  32. package/src/dialog/Drawer.tsx +74 -67
  33. package/src/input/AttachedInputs.tsx +35 -41
  34. package/src/input/Autocomplete.tsx +118 -129
  35. package/src/input/CardSelect.tsx +67 -65
  36. package/src/input/Checkbox.tsx +19 -17
  37. package/src/input/CheckboxGroup.tsx +0 -2
  38. package/src/input/ChoiceChip.tsx +42 -38
  39. package/src/input/Combobox.tsx +4 -4
  40. package/src/input/CountryCodeSelect.tsx +8 -8
  41. package/src/input/Field.tsx +78 -75
  42. package/src/input/FloatingLabel.tsx +6 -8
  43. package/src/input/Input.tsx +87 -92
  44. package/src/input/ListBox.tsx +3 -4
  45. package/src/input/Menu.tsx +149 -142
  46. package/src/input/NativeSelect.tsx +7 -5
  47. package/src/input/NumericStepper.tsx +15 -12
  48. package/src/input/PasswordInput.tsx +65 -61
  49. package/src/input/PhoneNumberInput.tsx +7 -7
  50. package/src/input/Popover.tsx +52 -55
  51. package/src/input/Radio.tsx +16 -11
  52. package/src/input/SearchInput.tsx +32 -31
  53. package/src/input/Select.tsx +106 -96
  54. package/src/input/Switch.tsx +43 -41
  55. package/src/input/Textarea.tsx +68 -66
  56. package/src/layout/PressableCard.tsx +11 -10
  57. package/src/layout/RadioCard.tsx +57 -53
  58. package/src/layout/Separator.tsx +8 -7
  59. package/src/layout/StaticCard.tsx +11 -10
  60. package/src/linjetag/LineIcon.tsx +48 -54
  61. package/src/linjetag/TravelTag.tsx +57 -59
  62. package/src/link/TextLink.tsx +50 -40
  63. package/src/loader/ProgressBar.tsx +41 -46
  64. package/src/loader/ProgressLoader.tsx +83 -86
  65. package/src/loader/Skeleton.tsx +56 -48
  66. package/src/logo/CargonetLogo.tsx +88 -87
  67. package/src/logo/VyLogo.tsx +80 -77
  68. package/src/logo/VyLogoPride.tsx +137 -135
  69. package/src/media-controller/JumpButton.tsx +30 -28
  70. package/src/media-controller/PlayPauseButton.tsx +8 -7
  71. package/src/media-controller/SkipButton.tsx +28 -26
  72. package/src/nudge/Nudge.tsx +66 -70
  73. package/src/pagination/Pagination.tsx +52 -46
  74. package/src/popover/index.tsx +46 -41
  75. package/src/progress-indicator/ProgressIndicator.tsx +10 -7
  76. package/src/stepper/Stepper.tsx +84 -81
  77. package/src/tab/Tabs.tsx +8 -4
  78. package/src/table/Table.tsx +89 -109
  79. package/src/tooltip.tsx +26 -22
  80. package/src/typography/Badge.tsx +8 -5
  81. package/src/typography/Code.tsx +8 -5
  82. package/src/typography/Heading.tsx +22 -23
  83. package/src/typography/Text.tsx +11 -9
  84. package/tsconfig.json +1 -0
@@ -1,5 +1,5 @@
1
1
 
2
- > @vygruppen/spor-react@12.24.16 build /home/runner/work/spor/spor/packages/spor-react
2
+ > @vygruppen/spor-react@13.0.0 build /home/runner/work/spor/spor/packages/spor-react
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: src/index.tsx, src/icons/index.tsx
@@ -11,18 +11,18 @@
11
11
  ESM Build start
12
12
  CJS Build start
13
13
  DTS Build start
14
- CJS dist/index.cjs 367.03 KB
14
+ CJS dist/index.cjs 356.86 KB
15
15
  CJS dist/icons/index.cjs 381.00 B
16
- CJS dist/index.cjs.map 722.10 KB
16
+ CJS dist/index.cjs.map 710.54 KB
17
17
  CJS dist/icons/index.cjs.map 157.00 B
18
- CJS ⚡️ Build success in 2628ms
19
- ESM dist/index.mjs 342.22 KB
18
+ CJS ⚡️ Build success in 2765ms
19
+ ESM dist/index.mjs 332.95 KB
20
20
  ESM dist/icons/index.mjs 110.00 B
21
- ESM dist/index.mjs.map 722.10 KB
21
+ ESM dist/index.mjs.map 710.54 KB
22
22
  ESM dist/icons/index.mjs.map 157.00 B
23
- ESM ⚡️ Build success in 2628ms
24
- DTS ⚡️ Build success in 20149ms
23
+ ESM ⚡️ Build success in 2766ms
24
+ DTS ⚡️ Build success in 20281ms
25
25
  DTS dist/icons/index.d.ts 44.00 B
26
- DTS dist/index.d.ts 150.61 KB
26
+ DTS dist/index.d.ts 143.58 KB
27
27
  DTS dist/icons/index.d.cts 44.00 B
28
- DTS dist/index.d.cts 150.61 KB
28
+ DTS dist/index.d.cts 143.58 KB
@@ -1,8 +1,8 @@
1
1
 
2
- > @vygruppen/spor-react@12.24.16 postinstall /home/runner/work/spor/spor/packages/spor-react
2
+ > @vygruppen/spor-react@13.0.0 postinstall /home/runner/work/spor/spor/packages/spor-react
3
3
  > chakra typegen src/theme/index.ts
4
4
 
5
- [dotenv@17.3.1] injecting env (0) from .env -- tip: ⚙️ enable debug logging with { debug: true }
5
+ [dotenv@17.3.1] injecting env (0) from .env -- tip: 🛡️ auth for agents: https://vestauth.com
6
6
  ┌ Chakra CLI ⚡️
7
7
  [?25l│
8
8
  ◒ Generating conditions types...
@@ -13,7 +13,8 @@
13
13
  [?25h[?25l│
14
14
  ◇ ✅ Generated utility typings
15
15
  [?25h[?25l│
16
- ◇ Generated token typings
16
+ ◒ Generating token types...
17
+ ◇ ✅ Generated token typings
17
18
  [?25h[?25l│
18
19
  ◒ Generating system types...
19
20
  ◇ ✅ Generated system types
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @vygruppen/spor-react
2
2
 
3
+ ## 13.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 28d1e87: Upgrade design system to React 19.
8
+
9
+ ### Breaking Changes
10
+ - React 19 is now required as a peer dependency
11
+ - Internal usage of `useRef` has been removed and refactored
12
+
13
+ ### Migration
14
+ - Ensure your application is upgraded to React 19 before updating these packages
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [28d1e87]
19
+ - @vygruppen/spor-icon-react@5.0.0
20
+
3
21
  ## 12.24.16
4
22
 
5
23
  ### Patch Changes