analytica-frontend-lib 1.0.47 → 1.0.48

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/index.mjs CHANGED
@@ -974,29 +974,21 @@ import {
974
974
  import { jsx as jsx12, jsxs as jsxs9 } from "react/jsx-runtime";
975
975
  var SIZE_CLASSES5 = {
976
976
  small: {
977
- container: "w-72",
978
- // 288px width
979
977
  textarea: "h-24 text-sm",
980
978
  // 96px height, 14px font
981
979
  textSize: "sm"
982
980
  },
983
981
  medium: {
984
- container: "w-72",
985
- // 288px width
986
982
  textarea: "h-24 text-base",
987
983
  // 96px height, 16px font
988
984
  textSize: "md"
989
985
  },
990
986
  large: {
991
- container: "w-72",
992
- // 288px width
993
987
  textarea: "h-24 text-lg",
994
988
  // 96px height, 18px font
995
989
  textSize: "lg"
996
990
  },
997
991
  extraLarge: {
998
- container: "w-72",
999
- // 288px width
1000
992
  textarea: "h-24 text-xl",
1001
993
  // 96px height, 20px font
1002
994
  textSize: "xl"
@@ -1066,7 +1058,7 @@ var TextArea = forwardRef7(
1066
1058
  const sizeClasses = SIZE_CLASSES5[size];
1067
1059
  const stateClasses = STATE_CLASSES3[currentState];
1068
1060
  const textareaClasses = `${BASE_TEXTAREA_CLASSES} ${sizeClasses.textarea} ${stateClasses.base} ${stateClasses.hover} ${stateClasses.focus} ${className}`;
1069
- return /* @__PURE__ */ jsxs9("div", { className: `flex flex-col ${sizeClasses.container}`, children: [
1061
+ return /* @__PURE__ */ jsxs9("div", { className: `flex flex-col`, children: [
1070
1062
  label && /* @__PURE__ */ jsx12(
1071
1063
  Text_default,
1072
1064
  {