@vygruppen/spor-react 10.4.1 → 10.6.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 +15 -0
- package/dist/{CountryCodeSelect-QNKQE3C6.mjs → CountryCodeSelect-R27DZ2PB.mjs} +1 -1
- package/dist/{chunk-PH4RK5L3.mjs → chunk-WSGO53OP.mjs} +723 -535
- package/dist/index.d.mts +109 -4
- package/dist/index.d.ts +109 -4
- package/dist/index.js +859 -654
- 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/input/PhoneNumberInput.tsx +12 -1
- 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/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@10.
|
2
|
+
> @vygruppen/spor-react@10.6.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
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m2.
|
13
|
-
[32mESM[39m [1mdist/CountryCodeSelect-
|
14
|
-
[32mESM[39m [1mdist/chunk-
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
16
|
-
[32mCJS[39m [1mdist/index.js [22m[
|
17
|
-
[32mCJS[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
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m2.16 KB[39m
|
13
|
+
[32mESM[39m [1mdist/CountryCodeSelect-R27DZ2PB.mjs [22m[32m1.22 KB[39m
|
14
|
+
[32mESM[39m [1mdist/chunk-WSGO53OP.mjs [22m[32m424.74 KB[39m
|
15
|
+
[32mESM[39m ⚡️ Build success in 2252ms
|
16
|
+
[32mCJS[39m [1mdist/index.js [22m[32m538.15 KB[39m
|
17
|
+
[32mCJS[39m ⚡️ Build success in 2253ms
|
18
|
+
[32mDTS[39m ⚡️ Build success in 15042ms
|
19
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m339.27 KB[39m
|
20
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m339.27 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 10.6.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- be4754b: PhoneNumberInput: Added the option to display the input as optional
|
8
|
+
|
9
|
+
## 10.5.0
|
10
|
+
|
11
|
+
### Minor Changes
|
12
|
+
|
13
|
+
- 8184ed1: ### New component
|
14
|
+
|
15
|
+
- ServiceAlert added to the bunch
|
16
|
+
- Alert: New variant "service"
|
17
|
+
|
3
18
|
## 10.4.1
|
4
19
|
|
5
20
|
### Patch Changes
|