analytica-frontend-lib 1.0.75 → 1.0.76
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/Accordation/index.d.mts +1 -1
- package/dist/Accordation/index.d.ts +1 -1
- package/dist/Accordation/index.js +10 -11
- package/dist/Accordation/index.js.map +1 -1
- package/dist/Accordation/index.mjs +15 -12
- package/dist/Accordation/index.mjs.map +1 -1
- package/dist/AlertDialog/index.d.mts +4 -8
- package/dist/AlertDialog/index.d.ts +4 -8
- package/dist/AlertDialog/index.js +52 -78
- package/dist/AlertDialog/index.js.map +1 -1
- package/dist/AlertDialog/index.mjs +52 -79
- package/dist/AlertDialog/index.mjs.map +1 -1
- package/dist/Alternative/index.js +25 -5
- package/dist/Alternative/index.js.map +1 -1
- package/dist/Alternative/index.mjs +26 -6
- package/dist/Alternative/index.mjs.map +1 -1
- package/dist/index.css +11 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +87 -94
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +93 -97
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +11 -0
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
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);
|