@vygruppen/spor-react 12.0.1 → 12.0.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 +10 -11
- package/.turbo/turbo-typegen.log +3 -2
- package/CHANGELOG.md +15 -0
- package/dist/index.d.mts +576 -576
- package/dist/index.d.ts +576 -576
- package/dist/index.js +8643 -8613
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8848 -8818
- package/dist/index.mjs.map +1 -1
- package/eslint.config.mjs +9 -0
- package/package.json +9 -6
- package/src/accordion/Accordion.tsx +5 -4
- package/src/accordion/Expandable.tsx +2 -1
- package/src/accordion/types.ts +3 -2
- package/src/alert/Alert.tsx +5 -3
- package/src/alert/AlertIcon.tsx +2 -1
- package/src/alert/ExpandableAlert.tsx +6 -4
- package/src/alert/ServiceAlert.tsx +5 -4
- package/src/alert/index.ts +1 -1
- package/src/breadcrumb/Breadcrumb.tsx +3 -3
- package/src/button/Button.tsx +4 -3
- package/src/button/ButtonGroup.tsx +3 -2
- package/src/button/Clipboard.tsx +5 -3
- package/src/button/CloseButton.tsx +1 -0
- package/src/button/FloatingActionButton.tsx +1 -0
- package/src/button/IconButton.tsx +1 -0
- package/src/button/index.tsx +1 -1
- package/src/color-mode/color-mode.tsx +1 -1
- package/src/datepicker/Calendar.tsx +5 -3
- package/src/datepicker/CalendarCell.tsx +2 -1
- package/src/datepicker/CalendarGrid.tsx +4 -3
- package/src/datepicker/CalendarHeader.tsx +1 -0
- package/src/datepicker/CalendarNavigationButton.tsx +1 -0
- package/src/datepicker/CalendarTriggerButton.tsx +1 -0
- package/src/datepicker/DateField.tsx +5 -4
- package/src/datepicker/DatePicker.tsx +4 -2
- package/src/datepicker/DateRangePicker.tsx +7 -7
- package/src/datepicker/DateTimeSegment.tsx +3 -2
- package/src/datepicker/RangeCalendar.tsx +5 -3
- package/src/datepicker/StyledField.tsx +2 -1
- package/src/datepicker/TimeField.tsx +2 -1
- package/src/datepicker/TimePicker.tsx +4 -2
- package/src/datepicker/index.tsx +1 -1
- package/src/datepicker/utils.ts +1 -0
- package/src/dialog/Dialog.tsx +1 -0
- package/src/dialog/Drawer.tsx +2 -1
- package/src/dialog/index.ts +1 -1
- package/src/dialog/types.ts +3 -2
- package/src/image/index.tsx +1 -1
- package/src/index.tsx +5 -5
- package/src/input/AttachedInputs.tsx +3 -1
- package/src/input/CardSelect.tsx +3 -2
- package/src/input/Checkbox.tsx +2 -1
- package/src/input/ChoiceChip.tsx +2 -1
- package/src/input/Combobox.tsx +1 -0
- package/src/input/CountryCodeSelect.tsx +2 -1
- package/src/input/Field.tsx +1 -0
- package/src/input/Input.tsx +5 -3
- package/src/input/InputGroup.tsx +2 -1
- package/src/input/ListBox.tsx +5 -4
- package/src/input/NativeSelect.tsx +2 -1
- package/src/input/NumericStepper.tsx +1 -0
- package/src/input/PasswordInput.tsx +1 -0
- package/src/input/PhoneNumberInput.tsx +2 -1
- package/src/input/Radio.tsx +3 -2
- package/src/input/SearchInput.tsx +1 -0
- package/src/input/Select.tsx +5 -4
- package/src/input/Switch.tsx +2 -1
- package/src/input/Textarea.tsx +3 -2
- package/src/input/index.ts +1 -1
- package/src/layout/PressableCard.tsx +2 -1
- package/src/layout/RadioCard.tsx +1 -0
- package/src/layout/Separator.tsx +2 -1
- package/src/layout/StaticCard.tsx +2 -1
- package/src/layout/index.tsx +16 -16
- package/src/linjetag/InfoTag.tsx +2 -1
- package/src/linjetag/LineIcon.tsx +1 -0
- package/src/linjetag/TravelTag.tsx +2 -1
- package/src/linjetag/icons.tsx +1 -0
- package/src/link/TextLink.tsx +1 -0
- package/src/loader/ClientOnly.tsx +1 -0
- package/src/loader/ColorInlineLoader.tsx +1 -0
- package/src/loader/ColorSpinner.tsx +1 -0
- package/src/loader/ContentLoader.tsx +1 -0
- package/src/loader/DarkFullScreenLoader.tsx +1 -0
- package/src/loader/DarkInlineLoader.tsx +1 -0
- package/src/loader/DarkSpinner.tsx +1 -0
- package/src/loader/LightFullScreenLoader.tsx +1 -0
- package/src/loader/LightInlineLoader.tsx +1 -0
- package/src/loader/LightSpinner.tsx +1 -0
- package/src/loader/Lottie.tsx +1 -2
- package/src/loader/ProgressBar.tsx +2 -1
- package/src/loader/ProgressLoader.tsx +3 -2
- package/src/loader/Skeleton.tsx +4 -3
- package/src/loader/useHydrated.tsx +1 -1
- package/src/logo/VyLogo.tsx +1 -0
- package/src/logo/VyLogoPride.tsx +1 -0
- package/src/logo/index.tsx +1 -1
- package/src/media-controller/JumpButton.tsx +3 -2
- package/src/media-controller/PlayPauseButton.tsx +3 -2
- package/src/media-controller/SkipButton.tsx +3 -2
- package/src/nudge/Nudge.tsx +14 -14
- package/src/pagination/Pagination.tsx +4 -3
- package/src/pagination/types.ts +2 -1
- package/src/popover/index.tsx +4 -3
- package/src/progress-indicator/ProgressDot.tsx +2 -1
- package/src/progress-indicator/ProgressIndicator.tsx +2 -1
- package/src/provider/SporProvider.tsx +4 -5
- package/src/stepper/Stepper.tsx +2 -1
- package/src/stepper/StepperStep.tsx +1 -0
- package/src/tab/Tabs.tsx +2 -1
- package/src/table/Table.tsx +2 -1
- package/src/table/index.tsx +14 -14
- package/src/theme/index.ts +7 -6
- package/src/theme/recipes/close-button.ts +1 -0
- package/src/theme/recipes/code.ts +1 -0
- package/src/theme/recipes/link.ts +1 -0
- package/src/theme/recipes/pressable-card.ts +2 -1
- package/src/theme/recipes/textarea.ts +1 -0
- package/src/theme/semantic-tokens/colors.ts +1 -1
- package/src/theme/semantic-tokens/index.ts +1 -1
- package/src/theme/slot-recipes/accordion.ts +2 -1
- package/src/theme/slot-recipes/alert-expandable.ts +2 -1
- package/src/theme/slot-recipes/alert-service.ts +1 -0
- package/src/theme/slot-recipes/alert.ts +1 -0
- package/src/theme/slot-recipes/breadcrumb.ts +2 -1
- package/src/theme/slot-recipes/checkbox.ts +1 -0
- package/src/theme/slot-recipes/datepicker.ts +1 -0
- package/src/theme/slot-recipes/dialog.ts +1 -0
- package/src/theme/slot-recipes/drawer.ts +1 -0
- package/src/theme/slot-recipes/field.ts +1 -0
- package/src/theme/slot-recipes/floating-action-button.ts +1 -0
- package/src/theme/slot-recipes/index.ts +2 -2
- package/src/theme/slot-recipes/info-tag.ts +3 -2
- package/src/theme/slot-recipes/line-icon.ts +1 -0
- package/src/theme/slot-recipes/list.ts +1 -0
- package/src/theme/slot-recipes/listbox.ts +1 -0
- package/src/theme/slot-recipes/media-controller-button.ts +1 -0
- package/src/theme/slot-recipes/native-select.ts +3 -2
- package/src/theme/slot-recipes/numeric-stepper.ts +1 -0
- package/src/theme/slot-recipes/pagination.ts +1 -0
- package/src/theme/slot-recipes/popover.ts +2 -1
- package/src/theme/slot-recipes/progress-bar.ts +1 -0
- package/src/theme/slot-recipes/radio-card.ts +2 -1
- package/src/theme/slot-recipes/radio.ts +1 -0
- package/src/theme/slot-recipes/select.ts +1 -0
- package/src/theme/slot-recipes/stepper.ts +1 -0
- package/src/theme/slot-recipes/switch.ts +2 -1
- package/src/theme/slot-recipes/table.ts +3 -0
- package/src/theme/slot-recipes/tabs.ts +1 -0
- package/src/theme/slot-recipes/toast.ts +1 -0
- package/src/theme/slot-recipes/travel-tag.ts +1 -0
- package/src/theme/tokens/colors.ts +1 -1
- package/src/theme/tokens/index.ts +4 -4
- package/src/theme/tokens/sizes.ts +1 -0
- package/src/theme/utils/input-utils.ts +1 -1
- package/src/toast/toast.tsx +6 -6
- package/src/transition/index.ts +1 -1
- package/src/typography/Badge.tsx +1 -2
- package/src/typography/Code.tsx +2 -1
- package/src/typography/Heading.tsx +2 -1
- package/src/typography/index.ts +1 -1
- package/src/util/externals.tsx +11 -11
package/.turbo/turbo-build.log
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@12.0.
|
2
|
+
> @vygruppen/spor-react@12.0.3 build /home/runner/work/spor/spor/packages/spor-react
|
3
3
|
> pnpm typegen && tsup
|
4
4
|
|
5
5
|
|
6
|
-
> @vygruppen/spor-react@12.0.
|
6
|
+
> @vygruppen/spor-react@12.0.3 typegen /home/runner/work/spor/spor/packages/spor-react
|
7
7
|
> npx @chakra-ui/cli typegen src/theme/index.ts
|
8
8
|
|
9
9
|
[90m┌[39m Chakra CLI ⚡️
|
@@ -16,8 +16,7 @@
|
|
16
16
|
[?25h[?25l[90m│[39m
|
17
17
|
[32m◇[39m ✅ Generated utility typings
|
18
18
|
[?25h[?25l[90m│[39m
|
19
|
-
[
|
20
|
-
[999D[J[32m◇[39m ✅ Generated token typings
|
19
|
+
[32m◇[39m ✅ Generated token typings
|
21
20
|
[?25h[?25l[90m│[39m
|
22
21
|
[35m◒[39m Generating system types...
|
23
22
|
[999D[J[32m◇[39m ✅ Generated system types
|
@@ -32,12 +31,12 @@ CLI Target: node16
|
|
32
31
|
CJS Build start
|
33
32
|
ESM Build start
|
34
33
|
DTS Build start
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
DTS ⚡️ Build success in
|
34
|
+
CJS dist/index.js 312.04 KB
|
35
|
+
CJS dist/index.js.map 619.95 KB
|
36
|
+
CJS ⚡️ Build success in 1924ms
|
37
|
+
ESM dist/index.mjs 292.82 KB
|
38
|
+
ESM dist/index.mjs.map 619.95 KB
|
39
|
+
ESM ⚡️ Build success in 1925ms
|
40
|
+
DTS ⚡️ Build success in 22112ms
|
42
41
|
DTS dist/index.d.ts 133.66 KB
|
43
42
|
DTS dist/index.d.mts 133.66 KB
|
package/.turbo/turbo-typegen.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@12.0.
|
2
|
+
> @vygruppen/spor-react@12.0.3 typegen /home/runner/work/spor/spor/packages/spor-react
|
3
3
|
> npx @chakra-ui/cli typegen src/theme/index.ts
|
4
4
|
|
5
5
|
[90m┌[39m Chakra CLI ⚡️
|
@@ -10,7 +10,8 @@
|
|
10
10
|
[35m◒[39m Generating recipe types...
|
11
11
|
[999D[J[32m◇[39m ✅ Generated recipe typings
|
12
12
|
[?25h[?25l[90m│[39m
|
13
|
-
[
|
13
|
+
[35m◒[39m Generating utility types...
|
14
|
+
[999D[J[32m◇[39m ✅ Generated utility typings
|
14
15
|
[?25h[?25l[90m│[39m
|
15
16
|
[35m◒[39m Generating token types...
|
16
17
|
[999D[J[32m◇[39m ✅ Generated token typings
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 12.0.3
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 3e7f39b: Added eslint rules. Run auto fix
|
8
|
+
- Updated dependencies [3e7f39b]
|
9
|
+
- @vygruppen/spor-design-tokens@4.0.1
|
10
|
+
- @vygruppen/spor-icon-react@4.0.2
|
11
|
+
|
12
|
+
## 12.0.2
|
13
|
+
|
14
|
+
### Patch Changes
|
15
|
+
|
16
|
+
- 6d33265: Tables: fix for horizontal scroll for tables on mobile version
|
17
|
+
|
3
18
|
## 12.0.1
|
4
19
|
|
5
20
|
### Patch Changes
|