@stackshift-ui/footer 6.0.5-beta.1 → 6.0.5

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/src/footer_c.tsx +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stackshift-ui/footer",
3
3
  "description": "",
4
- "version": "6.0.5-beta.1",
4
+ "version": "6.0.5",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "main": "./dist/index.js",
@@ -34,17 +34,17 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "classnames": "^2.5.1",
37
- "@stackshift-ui/button": "6.0.3",
38
- "@stackshift-ui/text": "6.0.3",
39
37
  "@stackshift-ui/scripts": "6.0.2",
40
38
  "@stackshift-ui/system": "6.0.3",
39
+ "@stackshift-ui/button": "6.0.3",
40
+ "@stackshift-ui/text": "6.0.3",
41
41
  "@stackshift-ui/image": "6.0.3",
42
42
  "@stackshift-ui/link": "6.0.3",
43
+ "@stackshift-ui/social-icons": "6.0.3",
43
44
  "@stackshift-ui/section": "6.0.3",
44
45
  "@stackshift-ui/container": "6.0.3",
45
- "@stackshift-ui/flex": "6.0.3",
46
- "@stackshift-ui/social-icons": "6.0.3",
47
46
  "@stackshift-ui/grid": "6.0.3",
47
+ "@stackshift-ui/flex": "6.0.3",
48
48
  "@stackshift-ui/grid-item": "6.0.3"
49
49
  },
50
50
  "peerDependencies": {
package/src/footer_c.tsx CHANGED
@@ -123,7 +123,7 @@ function SocialMediaLink({ social, index }: { social?: SocialLink; index?: numbe
123
123
  alt={social?.socialMediaIcon?.alt ?? "contact-socialMedia-icon"}
124
124
  />
125
125
  ) : (
126
- <SocialIcons social={social?.socialMedia as Socials} className="w-4 h-4" />
126
+ <SocialIcons social={social?.socialMedia as Socials} />
127
127
  )}
128
128
  </Link>
129
129
  );