@ansiversa/components 0.0.73 → 0.0.75

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.73",
3
+ "version": "0.0.75",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -274,6 +274,102 @@
274
274
  gap: 0.5rem;
275
275
  }
276
276
 
277
+ /* Public list page (generic) ----------------------------------------- */
278
+
279
+ .av-public-titlewrap {
280
+ display: flex;
281
+ align-items: baseline;
282
+ gap: 0.5rem;
283
+ flex-wrap: wrap;
284
+ }
285
+
286
+ .av-public-count-inline {
287
+ color: var(--av-text-muted);
288
+ font-size: 0.875rem;
289
+ }
290
+
291
+ .av-public-toolbar-left {
292
+ display: grid;
293
+ gap: 0.5rem;
294
+ }
295
+
296
+ .av-public-toolbar-top {
297
+ display: flex;
298
+ align-items: center;
299
+ justify-content: space-between;
300
+ gap: 0.75rem;
301
+ width: 100%;
302
+ }
303
+
304
+ .av-public-filters {
305
+ display: grid;
306
+ gap: 0.5rem;
307
+ }
308
+
309
+ /* tighten toolbar spacing */
310
+ .av-faq-public__section .av-table-toolbar__row {
311
+ gap: 0;
312
+ }
313
+
314
+ /* hide default toolbar action slot (actions live in title/top area) */
315
+ .av-faq-public__section .av-table-toolbar__actions {
316
+ display: none;
317
+ }
318
+
319
+ /* selects grid on mobile */
320
+ .av-public-filter-selects {
321
+ display: grid;
322
+ grid-template-columns: 1fr 1fr;
323
+ gap: 0.5rem;
324
+ }
325
+
326
+ .av-public-filter-selects .av-public-select-lg {
327
+ grid-column: 1 / -1;
328
+ }
329
+
330
+ @media (min-width: 1024px) {
331
+ .av-public-filters {
332
+ display: flex;
333
+ flex-wrap: nowrap;
334
+ align-items: flex-end;
335
+ gap: 0.5rem;
336
+ }
337
+
338
+ .av-faq-public__section .av-table-toolbar__row {
339
+ gap: 0;
340
+ align-items: flex-end;
341
+ flex-wrap: nowrap;
342
+ }
343
+
344
+ .av-faq-public__section .av-table-toolbar__actions {
345
+ display: none;
346
+ }
347
+
348
+ .av-public-filters > .av-public-filter-search {
349
+ flex: 2 1 0;
350
+ width: auto;
351
+ }
352
+
353
+ .av-public-filter-selects {
354
+ display: flex;
355
+ flex: 1 1 640px;
356
+ gap: 0.5rem;
357
+ align-items: flex-end;
358
+ }
359
+
360
+ .av-public-select-lg {
361
+ flex: 2 1 380px;
362
+ }
363
+
364
+ .av-public-select-md {
365
+ flex: 1 1 220px;
366
+ }
367
+
368
+ .av-public-select-sm {
369
+ flex: 0 1 170px;
370
+ }
371
+ }
372
+
277
373
  @media (max-width: 640px) {
278
374
  .av-faq-summary {
279
375
  flex-wrap: wrap;
@@ -1675,6 +1771,22 @@
1675
1771
  .av-m-0 {
1676
1772
  margin: 0;
1677
1773
  }
1774
+
1775
+ /* Generic spacing/type utilities (Apps page cleanup) */
1776
+ .av-mt-8 { margin-top: 2rem; }
1777
+ .av-mt-3 { margin-top: 0.75rem; }
1778
+ .av-mt-2 { margin-top: 0.5rem; }
1779
+
1780
+ .av-ml-2 { margin-left: 0.5rem; }
1781
+
1782
+ .av-block { display: block; }
1783
+
1784
+ /* label spacing used under search inputs */
1785
+ .av-mb-label { margin-bottom: 0.35rem; }
1786
+
1787
+ /* slightly smaller soft text (keeps existing feel) */
1788
+ .av-text-sm-soft { font-size: 0.9rem; }
1789
+ .av-font-normal { font-weight: 400; }
1678
1790
  .av-shadow-soft { box-shadow: var(--av-shadow-soft); }
1679
1791
  .av-shadow-glow { box-shadow: var(--av-shadow-glow); }
1680
1792