@ansiversa/components 0.0.60 → 0.0.62

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.60",
3
+ "version": "0.0.62",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  import AvButton from "./AvButton.astro";
3
- import AvContainer from "./AvContainer.astro";
4
3
 
5
4
  interface Crumb {
6
5
  label: string;
@@ -25,7 +24,7 @@ const rootClassAttr = rootClasses.join(" ");
25
24
  ---
26
25
 
27
26
  <nav class={rootClassAttr} aria-label="Breadcrumb" {...attrs}>
28
- <AvContainer className="av-breadcrumb__container">
27
+ <div class="av-breadcrumb__container">
29
28
  <ol class="av-breadcrumb__list">
30
29
  {items.map((item, index) => {
31
30
  const isLast = index === items.length - 1;
@@ -59,7 +58,7 @@ const rootClassAttr = rootClasses.join(" ");
59
58
  );
60
59
  })}
61
60
  </ol>
62
- </AvContainer>
61
+ </div>
63
62
  </nav>
64
63
 
65
64
  <style>
@@ -295,6 +295,7 @@
295
295
  .av-faq-admin__crumbwrap {
296
296
  display: grid;
297
297
  gap: 0.25rem;
298
+ padding-top: 0;
298
299
  }
299
300
 
300
301
  .av-faq-admin__count {