@vygruppen/spor-react 4.1.0 → 5.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 +9 -11
- package/CHANGELOG.md +22 -0
- package/dist/{CountryCodeSelect-FBKDO5JS.mjs → CountryCodeSelect-YOBYHYCF.mjs} +1 -1
- package/dist/{chunk-FPWAXD72.mjs → chunk-UOZQ4EDI.mjs} +13 -1741
- package/dist/index.d.mts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +10 -1766
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
- package/src/button/Button.tsx +2 -2
- package/src/button/IconButton.tsx +2 -2
- package/src/datepicker/Calendar.tsx +3 -3
- package/src/datepicker/DateField.tsx +1 -1
- package/src/datepicker/DatePicker.tsx +3 -3
- package/src/datepicker/DateRangePicker.tsx +1 -1
- package/src/datepicker/RangeCalendar.tsx +3 -3
- package/src/popover/PopoverWizardBody.tsx +1 -1
- package/src/stepper/StepperStep.tsx +1 -1
- package/src/theme/components/button.ts +1 -1
- package/src/toast/ActionToast.tsx +1 -1
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@
|
2
|
+
> @vygruppen/spor-react@5.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
|
@@ -8,15 +8,13 @@
|
|
8
8
|
[34mCLI[39m Target: node16
|
9
9
|
[34mCJS[39m Build start
|
10
10
|
[34mESM[39m Build start
|
11
|
-
"toZoned" and "toTime" are imported from external module "@internationalized/date" but never used in "dist/index.js".
|
12
|
-
"toZoned" and "toTime" are imported from external module "@internationalized/date" but never used in "dist/chunk-FPWAXD72.mjs".
|
13
11
|
[34mDTS[39m Build start
|
14
|
-
[32mCJS[39m [1mdist/index.js [22m[32m549.08 KB[39m
|
15
|
-
[32mCJS[39m ⚡️ Build success in 2609ms
|
16
12
|
[32mESM[39m [1mdist/index.mjs [22m[32m2.10 KB[39m
|
17
|
-
[32mESM[39m [1mdist/CountryCodeSelect-
|
18
|
-
[32mESM[39m [1mdist/chunk-
|
19
|
-
[32mESM[39m ⚡️ Build success in
|
20
|
-
[
|
21
|
-
[
|
22
|
-
[32mDTS[39m
|
13
|
+
[32mESM[39m [1mdist/CountryCodeSelect-YOBYHYCF.mjs [22m[32m1.19 KB[39m
|
14
|
+
[32mESM[39m [1mdist/chunk-UOZQ4EDI.mjs [22m[32m382.90 KB[39m
|
15
|
+
[32mESM[39m ⚡️ Build success in 2307ms
|
16
|
+
[32mCJS[39m [1mdist/index.js [22m[32m490.51 KB[39m
|
17
|
+
[32mCJS[39m ⚡️ Build success in 2308ms
|
18
|
+
[32mDTS[39m ⚡️ Build success in 13078ms
|
19
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m262.47 KB[39m
|
20
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m262.47 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 5.0.0
|
4
|
+
|
5
|
+
### Major Changes
|
6
|
+
|
7
|
+
- 24963270: Breaking: Rename <Button variant="additional" /> to <Button variant="tertiary" />
|
8
|
+
|
9
|
+
Due to a… minor screwup on ~our~ @selbekk's side, we deprecated the wrong name earlier on.
|
10
|
+
|
11
|
+
To mitigate my screwup, please search through your code base for "additional", and replace it with "tertiary". It should be a simple enough upgrade. Make sure to do this with all Button and IconButton components.
|
12
|
+
|
13
|
+
Sorry. - @selbekk.
|
14
|
+
|
15
|
+
### Patch Changes
|
16
|
+
|
17
|
+
- 799d47bb: Button: bugfix changed primary button color to pine
|
18
|
+
|
19
|
+
## 4.1.1
|
20
|
+
|
21
|
+
### Patch Changes
|
22
|
+
|
23
|
+
- 85264001: DatePicker, DateRangePicker: Upgrade dependencies
|
24
|
+
|
3
25
|
## 4.1.0
|
4
26
|
|
5
27
|
### Minor Changes
|