@vygruppen/spor-react 9.4.1 → 9.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 +18 -0
- package/dist/{CountryCodeSelect-5QKP6VFT.mjs → CountryCodeSelect-EZTV452W.mjs} +1 -1
- package/dist/{chunk-JRXSGTL2.mjs → chunk-7VZBL2PP.mjs} +696 -358
- package/dist/index.d.mts +800 -9
- package/dist/index.d.ts +800 -9
- package/dist/index.js +803 -427
- 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/index.tsx +1 -0
- package/src/pagination/Pagination.tsx +156 -0
- package/src/pagination/index.tsx +1 -0
- package/src/theme/components/datepicker.ts +2 -2
- package/src/theme/components/index.ts +2 -0
- package/src/theme/components/pagination.ts +74 -0
- package/src/theme/components/pressable-card.ts +179 -0
- package/src/theme/components/static-card.ts +3 -2
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@9.
|
2
|
+
> @vygruppen/spor-react@9.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
|
-
[
|
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-EZTV452W.mjs [22m[32m1.19 KB[39m
|
14
|
+
[32mESM[39m [1mdist/chunk-7VZBL2PP.mjs [22m[32m396.18 KB[39m
|
15
|
+
[32mESM[39m ⚡️ Build success in 2172ms
|
16
|
+
[32mCJS[39m [1mdist/index.js [22m[32m506.01 KB[39m
|
17
|
+
[32mCJS[39m ⚡️ Build success in 2173ms
|
18
|
+
[32mDTS[39m ⚡️ Build success in 12841ms
|
19
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m348.16 KB[39m
|
20
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m348.16 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 9.6.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- 0e0b6b1: Added pressable card, and small changes to default color in static card
|
8
|
+
|
9
|
+
## 9.5.0
|
10
|
+
|
11
|
+
### Minor Changes
|
12
|
+
|
13
|
+
- 03f9162: ## New component update
|
14
|
+
|
15
|
+
New component for Pagination has been added.
|
16
|
+
|
17
|
+
### Patch Changes
|
18
|
+
|
19
|
+
- 4a4f271: Added missing floating background color and floating border to datepicker.
|
20
|
+
|
3
21
|
## 9.4.1
|
4
22
|
|
5
23
|
### Patch Changes
|