analytica-frontend-lib 1.0.62 → 1.0.63
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/Card/index.d.mts +1 -0
- package/dist/Card/index.d.ts +1 -0
- package/dist/Card/index.js +3 -2
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +3 -2
- package/dist/Card/index.mjs.map +1 -1
- package/dist/CheckBox/index.d.mts +1 -1
- package/dist/CheckBox/index.d.ts +1 -1
- package/dist/Menu/index.js +1 -1
- package/dist/Menu/index.js.map +1 -1
- package/dist/Menu/index.mjs +1 -1
- package/dist/Menu/index.mjs.map +1 -1
- package/dist/Radio/index.d.mts +1 -1
- package/dist/Radio/index.d.ts +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/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3795,7 +3795,7 @@ var MenuItem = forwardRef11(
|
|
|
3795
3795
|
{
|
|
3796
3796
|
"data-variant": "menu2",
|
|
3797
3797
|
className: `
|
|
3798
|
-
w-full flex flex-row items-center p-4 gap-2 border-b-4 border-transparent text-text-950 text-
|
|
3798
|
+
w-full flex flex-row items-center p-4 gap-2 border-b-4 border-transparent text-text-950 text-xs font-bold cursor-pointer focus:rounded-sm justify-center
|
|
3799
3799
|
focus:outline-none focus:border-indicator-info focus:border-2
|
|
3800
3800
|
${selectedValue === value ? "border-b-primary-950" : ""}
|
|
3801
3801
|
${className ?? ""}
|
|
@@ -4303,6 +4303,7 @@ var CardPerformance = forwardRef12(
|
|
|
4303
4303
|
description = "Sem dados ainda! Voc\xEA ainda n\xE3o fez um question\xE1rio neste assunto.",
|
|
4304
4304
|
actionVariant = "button",
|
|
4305
4305
|
progressVariant = "blue",
|
|
4306
|
+
labelProgress = "",
|
|
4306
4307
|
className = "",
|
|
4307
4308
|
onClickButton,
|
|
4308
4309
|
valueButton,
|
|
@@ -4315,7 +4316,7 @@ var CardPerformance = forwardRef12(
|
|
|
4315
4316
|
ref,
|
|
4316
4317
|
layout: "horizontal",
|
|
4317
4318
|
padding: "medium",
|
|
4318
|
-
minHeight: "
|
|
4319
|
+
minHeight: "none",
|
|
4319
4320
|
className: `justify-between gap-2 ${className}`,
|
|
4320
4321
|
...props,
|
|
4321
4322
|
children: [
|
|
@@ -4336,7 +4337,7 @@ var CardPerformance = forwardRef12(
|
|
|
4336
4337
|
ProgressBar_default,
|
|
4337
4338
|
{
|
|
4338
4339
|
value: progress,
|
|
4339
|
-
label: `${progress}%
|
|
4340
|
+
label: `${progress}% ${labelProgress}`,
|
|
4340
4341
|
variant: progressVariant
|
|
4341
4342
|
}
|
|
4342
4343
|
) : /* @__PURE__ */ jsx26("p", { className: "text-xs text-text-600", children: description }) })
|