@ansiversa/components 0.0.32 → 0.0.34

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ansiversa/components",
3
- "version": "0.0.32",
3
+ "version": "0.0.34",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -77,8 +77,8 @@ const ROOT_URL = rawDomain.match(/^https?:\/\//i)
77
77
  <!-- Footer -->
78
78
  <AvFooter
79
79
  links={[
80
- { label: "Terms", href: "/legal/terms" },
81
- { label: "Privacy", href: "/legal/privacy" },
80
+ { label: "Terms", href: "/terms" },
81
+ { label: "Privacy", href: "/privacy" },
82
82
  { label: "Contact", href: "/contact" }
83
83
  ]}
84
84
  />
@@ -1158,6 +1158,14 @@
1158
1158
  ========================================= */
1159
1159
 
1160
1160
  @layer utilities {
1161
+
1162
+ .av-h-full {
1163
+ height: 100%;
1164
+ }
1165
+
1166
+ .av-w-full {
1167
+ width: 100%;
1168
+ }
1161
1169
  .av-shadow-soft { box-shadow: var(--av-shadow-soft); }
1162
1170
  .av-shadow-glow { box-shadow: var(--av-shadow-glow); }
1163
1171
 
@@ -1213,6 +1221,7 @@
1213
1221
  background-size: 200% 100%;
1214
1222
  }
1215
1223
 
1224
+
1216
1225
  @keyframes av-shimmer {
1217
1226
  0% { background-position: 0 0; }
1218
1227
  100% { background-position: 200% 0; }