@ansiversa/components 0.0.33 → 0.0.35

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.33",
3
+ "version": "0.0.35",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -196,6 +196,20 @@
196
196
  @layer components {
197
197
  /* Layout ------------------------------------------------ */
198
198
 
199
+ /* FAQ */
200
+ .av-faq-summary {
201
+ display: flex;
202
+ align-items: center;
203
+ gap: var(--av-space-sm);
204
+ cursor: pointer;
205
+ list-style: none;
206
+ }
207
+
208
+ /* Remove default arrow */
209
+ .av-faq-summary::-webkit-details-marker {
210
+ display: none;
211
+ }
212
+
199
213
  .av-page {
200
214
  @apply min-h-screen flex flex-col;
201
215
  }
@@ -1158,6 +1172,14 @@
1158
1172
  ========================================= */
1159
1173
 
1160
1174
  @layer utilities {
1175
+
1176
+ .av-h-full {
1177
+ height: 100%;
1178
+ }
1179
+
1180
+ .av-w-full {
1181
+ width: 100%;
1182
+ }
1161
1183
  .av-shadow-soft { box-shadow: var(--av-shadow-soft); }
1162
1184
  .av-shadow-glow { box-shadow: var(--av-shadow-glow); }
1163
1185
 
@@ -1213,6 +1235,7 @@
1213
1235
  background-size: 200% 100%;
1214
1236
  }
1215
1237
 
1238
+
1216
1239
  @keyframes av-shimmer {
1217
1240
  0% { background-position: 0 0; }
1218
1241
  100% { background-position: 200% 0; }