@vygruppen/spor-react 9.16.0 → 10.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.
- package/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +28 -0
- package/dist/{CountryCodeSelect-2DASZ3PQ.mjs → CountryCodeSelect-PWHXKGPJ.mjs} +1 -1
- package/dist/{chunk-MDMLROK2.mjs → chunk-FQLXMFMW.mjs} +1031 -1187
- package/dist/index.d.mts +184 -689
- package/dist/index.d.ts +184 -689
- package/dist/index.js +1399 -1584
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/accordion/Accordion.tsx +8 -12
- package/src/accordion/Expandable.tsx +8 -26
- package/src/alert/ExpandableAlert.tsx +2 -2
- package/src/datepicker/CalendarTriggerButton.tsx +17 -13
- package/src/datepicker/DateField.tsx +50 -7
- package/src/datepicker/DatePicker.tsx +15 -4
- package/src/datepicker/DateTimeSegment.tsx +5 -1
- package/src/datepicker/StyledField.tsx +7 -1
- package/src/index.tsx +0 -1
- package/src/input/ChoiceChip.tsx +66 -55
- package/src/input/Input.tsx +5 -2
- package/src/input/NumericStepper.tsx +8 -6
- package/src/layout/StaticCard.tsx +0 -1
- package/src/linjetag/LineIcon.tsx +3 -8
- package/src/linjetag/TravelTag.tsx +11 -2
- package/src/linjetag/{types.d.ts → types.ts} +1 -1
- package/src/theme/components/accordion.ts +7 -40
- package/src/theme/components/datepicker.ts +2 -15
- package/src/theme/components/index.ts +0 -1
- package/src/accordion/AccordionContext.tsx +0 -27
- package/src/card/Card.tsx +0 -73
- package/src/card/index.tsx +0 -1
- package/src/theme/components/card.ts +0 -171
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@
|
2
|
+
> @vygruppen/spor-react@10.0.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,12 +9,12 @@
|
|
9
9
|
[34mCJS[39m Build start
|
10
10
|
[34mESM[39m Build start
|
11
11
|
[34mDTS[39m Build start
|
12
|
-
[32mCJS[39m [1mdist/index.js [22m[
|
13
|
-
[32mCJS[39m ⚡️ Build success in
|
14
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m2.
|
15
|
-
[32mESM[39m [1mdist/CountryCodeSelect-
|
16
|
-
[32mESM[39m [1mdist/chunk-
|
17
|
-
[32mESM[39m ⚡️ Build success in
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
19
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
20
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[
|
12
|
+
[32mCJS[39m [1mdist/index.js [22m[32m527.13 KB[39m
|
13
|
+
[32mCJS[39m ⚡️ Build success in 2896ms
|
14
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m2.15 KB[39m
|
15
|
+
[32mESM[39m [1mdist/CountryCodeSelect-PWHXKGPJ.mjs [22m[32m1.19 KB[39m
|
16
|
+
[32mESM[39m [1mdist/chunk-FQLXMFMW.mjs [22m[32m415.51 KB[39m
|
17
|
+
[32mESM[39m ⚡️ Build success in 2895ms
|
18
|
+
[32mDTS[39m ⚡️ Build success in 20389ms
|
19
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m326.27 KB[39m
|
20
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m326.27 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,33 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 10.0.0
|
4
|
+
|
5
|
+
### Major Changes
|
6
|
+
|
7
|
+
- 1e3a7bd: Major update: Card is removed
|
8
|
+
|
9
|
+
Card is replaced by StaticCard, PressableCard and RadioCard.
|
10
|
+
|
11
|
+
- ec68649: Breaking change: Accordion
|
12
|
+
|
13
|
+
The `size` prop is no longer supported, and replaced by responsive sizes (sm on mobile, md on desktop).
|
14
|
+
|
15
|
+
The sizing will happen automatically according to breakpoints.
|
16
|
+
|
17
|
+
`allowMultiple` is also removed as default (Accordion will ignore allowToggle when allowMultiple is allowed).
|
18
|
+
|
19
|
+
### Minor Changes
|
20
|
+
|
21
|
+
- 35427e9: DatePicker: Fix warnings and accessibility
|
22
|
+
- 1c030d2: Input: Rearranging the accessibility labels
|
23
|
+
|
24
|
+
### Patch Changes
|
25
|
+
|
26
|
+
- 94ecba7: ExpandableAlert: Fix warning in console for kebab-case
|
27
|
+
- 3211116: LineTag: Fix bugs with props
|
28
|
+
- bb0ded9: NumericStepper: Fix type error in console
|
29
|
+
- 5935a32: ChoiceChip: Minor bugfix on types
|
30
|
+
|
3
31
|
## 9.16.0
|
4
32
|
|
5
33
|
### Minor Changes
|