@vygruppen/spor-react 10.4.0 → 10.5.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 +16 -0
- package/dist/{CountryCodeSelect-XMQTDWRD.mjs → CountryCodeSelect-QMX6VHNM.mjs} +1 -1
- package/dist/{chunk-T4CLCBB5.mjs → chunk-CHJ6LT66.mjs} +716 -538
- package/dist/index.d.mts +110 -8
- package/dist/index.d.ts +110 -8
- package/dist/index.js +852 -657
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/alert/AlertIcon.tsx +9 -0
- package/src/alert/BaseAlert.tsx +7 -1
- package/src/alert/ExpandableAlert.tsx +7 -3
- package/src/alert/ServiceAlert.tsx +162 -0
- package/src/alert/index.tsx +1 -0
- package/src/input/Input.tsx +1 -0
- package/src/theme/components/alert-expandable.ts +10 -0
- package/src/theme/components/alert-service.ts +53 -0
- package/src/theme/components/alert.ts +6 -0
- package/src/theme/components/index.ts +1 -0
- package/src/theme/components/travel-tag.ts +1 -4
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@10.
|
2
|
+
> @vygruppen/spor-react@10.5.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
|
-
[
|
13
|
-
[
|
14
|
-
[32mESM[39m [1mdist/
|
15
|
-
[32mESM[39m
|
16
|
-
[
|
17
|
-
[
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
19
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
20
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[
|
12
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m2.16 KB[39m
|
13
|
+
[32mESM[39m [1mdist/CountryCodeSelect-QMX6VHNM.mjs [22m[32m1.22 KB[39m
|
14
|
+
[32mESM[39m [1mdist/chunk-CHJ6LT66.mjs [22m[32m424.51 KB[39m
|
15
|
+
[32mESM[39m ⚡️ Build success in 2272ms
|
16
|
+
[32mCJS[39m [1mdist/index.js [22m[32m537.90 KB[39m
|
17
|
+
[32mCJS[39m ⚡️ Build success in 2273ms
|
18
|
+
[32mDTS[39m ⚡️ Build success in 15423ms
|
19
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m339.25 KB[39m
|
20
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m339.25 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 10.5.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- 8184ed1: ### New component
|
8
|
+
|
9
|
+
- ServiceAlert added to the bunch
|
10
|
+
- Alert: New variant "service"
|
11
|
+
|
12
|
+
## 10.4.1
|
13
|
+
|
14
|
+
### Patch Changes
|
15
|
+
|
16
|
+
- aeefe3f: Changed styling of LineTag deviation icons to be more similar to the design
|
17
|
+
- 72b88be: adjusted z-index of the TravelTag deviation icon, so that it does not end atop banners and dropdowns e.t.c
|
18
|
+
|
3
19
|
## 10.4.0
|
4
20
|
|
5
21
|
### Minor Changes
|