@ansiversa/components 0.0.48 → 0.0.49

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.48",
3
+ "version": "0.0.49",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -12,8 +12,10 @@ const { title, subtitle, className = "" } = Astro.props as Props;
12
12
 
13
13
  <div class={`av-table-toolbar ${className}`}>
14
14
  <div class="av-table-toolbar__left">
15
- <h1 class="av-table-toolbar__title">{title}</h1>
16
- {subtitle ? <p class="av-table-toolbar__subtitle">{subtitle}</p> : null}
15
+ <slot name="title">
16
+ <h1 class="av-table-toolbar__title">{title}</h1>
17
+ {subtitle ? <p class="av-table-toolbar__subtitle">{subtitle}</p> : null}
18
+ </slot>
17
19
  </div>
18
20
 
19
21
  <div class="av-table-toolbar__right">
@@ -828,7 +828,7 @@
828
828
  }
829
829
 
830
830
  .av-table__th-order {
831
- width: 60px;
831
+ width: 84px;
832
832
  text-align: center;
833
833
  white-space: nowrap;
834
834
  }
@@ -881,6 +881,15 @@
881
881
  justify-content: flex-end;
882
882
  }
883
883
 
884
+ .av-admin-page-top {
885
+ padding-top: 1rem;
886
+ }
887
+
888
+ .av-faq-admin__count {
889
+ color: var(--ans-muted);
890
+ font-size: 0.875rem;
891
+ }
892
+
884
893
  .av-table-toolbar input,
885
894
  .av-table-toolbar .av-input {
886
895
  position: relative;