@vygruppen/spor-react 9.6.5 → 9.8.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 +22 -0
- package/dist/{CountryCodeSelect-VSNXCJ6M.mjs → CountryCodeSelect-EKYAUNTI.mjs} +1 -1
- package/dist/{chunk-F6WDIMSM.mjs → chunk-3P7NVQKW.mjs} +515 -485
- package/dist/index.d.mts +370 -698
- package/dist/index.d.ts +370 -698
- package/dist/index.js +3286 -3234
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/card/Card.tsx +7 -0
- package/src/card/index.tsx +0 -2
- package/src/layout/PressableCard.tsx +57 -0
- package/src/layout/RadioCard.tsx +95 -0
- package/src/layout/RadioCardGroup.tsx +81 -0
- package/src/layout/StaticCard.tsx +77 -0
- package/src/layout/index.tsx +4 -0
- package/src/theme/components/index.ts +1 -0
- package/src/theme/components/pressable-card.ts +13 -131
- package/src/theme/components/radio-card.ts +64 -0
- package/src/theme/components/static-card.ts +4 -12
- package/src/theme/components/table.ts +0 -2
- package/src/theme/utils/base-utils.ts +8 -1
- package/src/theme/utils/floating-utils.ts +17 -1
- package/src/card/PressableCard.tsx +0 -52
- package/src/card/StaticCard.tsx +0 -25
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@9.
|
2
|
+
> @vygruppen/spor-react@9.8.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.11 KB[39m
|
13
|
+
[32mESM[39m [1mdist/CountryCodeSelect-EKYAUNTI.mjs [22m[32m1.19 KB[39m
|
14
|
+
[32mESM[39m [1mdist/chunk-3P7NVQKW.mjs [22m[32m397.80 KB[39m
|
15
|
+
[32mESM[39m ⚡️ Build success in 2067ms
|
16
|
+
[32mCJS[39m [1mdist/index.js [22m[32m508.29 KB[39m
|
17
|
+
[32mCJS[39m ⚡️ Build success in 2068ms
|
18
|
+
[32mDTS[39m ⚡️ Build success in 11221ms
|
19
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m337.50 KB[39m
|
20
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m337.50 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 9.8.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- 37c8580: Card is deprecated
|
8
|
+
|
9
|
+
- Update styling for PressableCard
|
10
|
+
- Update styling for StaticCard
|
11
|
+
- Make Card deprecated, is replaced by the above components
|
12
|
+
|
13
|
+
## 9.7.0
|
14
|
+
|
15
|
+
### Minor Changes
|
16
|
+
|
17
|
+
- a3d2ca4: New component: RadioCard & RadioCardGroup
|
18
|
+
|
19
|
+
- Should be used togehter for optimal functionality
|
20
|
+
|
21
|
+
### Patch Changes
|
22
|
+
|
23
|
+
- eade049: Remove vertical align from table. Can be added manually if other value is needed.
|
24
|
+
|
3
25
|
## 9.6.5
|
4
26
|
|
5
27
|
### Patch Changes
|