analytica-frontend-lib 1.0.48 → 1.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/dist/Menu/index.js +4 -3
- package/dist/Menu/index.js.map +1 -1
- package/dist/Menu/index.mjs +4 -3
- package/dist/Menu/index.mjs.map +1 -1
- package/dist/index.css +5 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -3
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +5 -0
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3702,7 +3702,7 @@ var MenuItem = forwardRef11(
|
|
|
3702
3702
|
className: `
|
|
3703
3703
|
w-full flex flex-col gap-0.5 items-center py-1 px-2 rounded-sm font-medium text-xs
|
|
3704
3704
|
[&>svg]:size-6 cursor-pointer hover:bg-primary-600 hover:text-text
|
|
3705
|
-
focus:outline-none focus:border-
|
|
3705
|
+
focus:outline-none focus:border-indicator-info focus:border-2
|
|
3706
3706
|
${selectedValue === value ? "bg-primary-50 text-primary-950" : "text-text-950"}
|
|
3707
3707
|
${className ?? ""}
|
|
3708
3708
|
`,
|
|
@@ -3715,7 +3715,8 @@ var MenuItem = forwardRef11(
|
|
|
3715
3715
|
{
|
|
3716
3716
|
"data-variant": "menu2",
|
|
3717
3717
|
className: `
|
|
3718
|
-
flex flex-row items-center p-4 gap-2 border-b-2 border-transparent text-text-950 text-sx font-bold cursor-pointer
|
|
3718
|
+
flex flex-row items-center p-4 gap-2 border-b-2 border-transparent text-text-950 text-sx font-bold cursor-pointer focus:rounded-sm
|
|
3719
|
+
focus:outline-none focus:border-indicator-info focus:border-2
|
|
3719
3720
|
${selectedValue === value ? "border-b-primary-950" : ""}
|
|
3720
3721
|
`,
|
|
3721
3722
|
...commonProps,
|
|
@@ -3727,7 +3728,7 @@ var MenuItem = forwardRef11(
|
|
|
3727
3728
|
{
|
|
3728
3729
|
"data-variant": "breadcrumb",
|
|
3729
3730
|
className: `
|
|
3730
|
-
p-2 rounded-lg hover:text-primary-600 cursor-pointer font-bold text-xs
|
|
3731
|
+
p-2 rounded-lg hover:text-primary-600 cursor-pointer font-bold text-xs
|
|
3731
3732
|
focus:outline-none focus:border-indicator-info focus:border-2
|
|
3732
3733
|
${selectedValue === value ? "text-primary-950" : "text-text-600"}
|
|
3733
3734
|
${className ?? ""}
|