@vygruppen/spor-react 9.6.1 → 9.6.3
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 +12 -0
- package/dist/{CountryCodeSelect-2KOFVXIQ.mjs → CountryCodeSelect-JV5KU4MM.mjs} +1 -1
- package/dist/{chunk-XXA3IGVH.mjs → chunk-LZRG4IP5.mjs} +486 -312
- package/dist/index.d.mts +698 -1
- package/dist/index.d.ts +698 -1
- package/dist/index.js +555 -365
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/card/PressableCard.tsx +52 -0
- package/src/card/index.tsx +1 -0
- package/src/table/Table.tsx +1 -1
- package/src/theme/components/index.ts +1 -0
- package/src/theme/components/pressable-card.ts +179 -0
- package/src/theme/components/static-card.ts +3 -2
- package/src/theme/components/table.ts +4 -0
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@9.6.
|
2
|
+
> @vygruppen/spor-react@9.6.3 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.08 KB[39m
|
13
|
+
[32mESM[39m [1mdist/CountryCodeSelect-JV5KU4MM.mjs [22m[32m1.19 KB[39m
|
14
|
+
[32mESM[39m [1mdist/chunk-LZRG4IP5.mjs [22m[32m396.30 KB[39m
|
15
|
+
[32mESM[39m ⚡️ Build success in 2374ms
|
16
|
+
[32mCJS[39m [1mdist/index.js [22m[32m506.15 KB[39m
|
17
|
+
[32mCJS[39m ⚡️ Build success in 2376ms
|
18
|
+
[32mDTS[39m ⚡️ Build success in 13847ms
|
19
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m348.30 KB[39m
|
20
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m348.30 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 9.6.3
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- d998cb8: Improve layout of tables when content overflow and in responsive views
|
8
|
+
|
9
|
+
## 9.6.2
|
10
|
+
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- f5c9213: Added pressable card, small changes to default color in static card and bumped package version
|
14
|
+
|
3
15
|
## 9.6.1
|
4
16
|
|
5
17
|
### Patch Changes
|