@sproutsocial/seeds-react-card 1.1.11 → 1.1.14
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/esm/index.js +23 -1043
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.mts +17 -6
- package/dist/index.d.ts +17 -6
- package/dist/index.js +41 -1047
- package/dist/index.js.map +1 -1
- package/package.json +11 -10
- package/src/Card.tsx +16 -4
- package/src/CardTypes.ts +5 -5
- package/src/__tests__/Card.test.tsx +33 -12
- package/src/__tests__/CardTypes.typetest.tsx +1 -0
- package/src/styles.tsx +10 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -8,14 +8,14 @@ $ tsup --dts
|
|
|
8
8
|
[34mCLI[39m Cleaning output folder
|
|
9
9
|
[34mCJS[39m Build start
|
|
10
10
|
[34mESM[39m Build start
|
|
11
|
-
[32mCJS[39m [1mdist/index.js [22m[
|
|
12
|
-
[32mCJS[39m [1mdist/index.js.map [22m[
|
|
13
|
-
[32mCJS[39m ⚡️ Build success in
|
|
14
|
-
[32mESM[39m [1mdist/esm/index.js [22m[
|
|
15
|
-
[32mESM[39m [1mdist/esm/index.js.map [22m[
|
|
16
|
-
[32mESM[39m ⚡️ Build success in
|
|
11
|
+
[32mCJS[39m [1mdist/index.js [22m[32m11.10 KB[39m
|
|
12
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m21.91 KB[39m
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 182ms
|
|
14
|
+
[32mESM[39m [1mdist/esm/index.js [22m[32m8.06 KB[39m
|
|
15
|
+
[32mESM[39m [1mdist/esm/index.js.map [22m[32m21.89 KB[39m
|
|
16
|
+
[32mESM[39m ⚡️ Build success in 183ms
|
|
17
17
|
[34mDTS[39m Build start
|
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
|
19
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m5.
|
|
20
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[32m5.
|
|
21
|
-
Done in
|
|
18
|
+
[32mDTS[39m ⚡️ Build success in 21306ms
|
|
19
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m5.60 KB[39m
|
|
20
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m5.60 KB[39m
|
|
21
|
+
Done in 27.58s.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @sproutsocial/seeds-react-card
|
|
2
2
|
|
|
3
|
+
## 1.1.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 95d2b96: Remove interactivity support from presentation Cards for accessibility compliance. Cards with `role="presentation"` no longer support `onClick` handlers or keyboard interactions. Presentation Cards are now purely decorative containers outside the accessibility tree. Use `role="button"` for interactive Cards instead.
|
|
8
|
+
|
|
9
|
+
## 1.1.13
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 2b1bb50: Add missing styled-system dependency
|
|
14
|
+
|
|
15
|
+
Properly declares `styled-system` as a direct dependency, which is used in the Card component styles. Previously relied on transitive dependencies which could cause issues in certain bundling scenarios.
|
|
16
|
+
|
|
17
|
+
## 1.1.12
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [750d1ea]
|
|
22
|
+
- @sproutsocial/seeds-react-mixins@4.2.0
|
|
23
|
+
- @sproutsocial/seeds-react-icon@2.0.4
|
|
24
|
+
|
|
3
25
|
## 1.1.11
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|