analytica-frontend-lib 1.0.75 → 1.0.77

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/dist/styles.css CHANGED
@@ -3363,6 +3363,11 @@
3363
3363
  -moz-user-select: none;
3364
3364
  user-select: none;
3365
3365
  }
3366
+ .not-aria-expanded\:rounded-xl {
3367
+ &:not(*[aria-expanded=true]) {
3368
+ border-radius: var(--radius-xl);
3369
+ }
3370
+ }
3366
3371
  .group-hover\:text-primary-950 {
3367
3372
  &:is(:where(.group):hover *) {
3368
3373
  @media (hover: hover) {
@@ -7720,6 +7725,12 @@
7720
7725
  opacity: 50%;
7721
7726
  }
7722
7727
  }
7728
+ .aria-expanded\:rounded-t-xl {
7729
+ &[aria-expanded=true] {
7730
+ border-top-left-radius: var(--radius-xl);
7731
+ border-top-right-radius: var(--radius-xl);
7732
+ }
7733
+ }
7723
7734
  .sm\:h-3 {
7724
7735
  @media (width >= 40rem) {
7725
7736
  height: calc(var(--spacing) * 3);