@producteca/producteca-ui-kit 1.74.1 → 1.75.0

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.
@@ -474,6 +474,10 @@ declare const _default: {
474
474
  textColors: string;
475
475
  borderColors: string;
476
476
  borderRadius: string;
477
+ shadows: string;
478
+ shadowSm: string;
479
+ shadowMd: string;
480
+ shadowLg: string;
477
481
  allVariables: string;
478
482
  allVariablesDescription: string;
479
483
  howToUse: string;
@@ -20412,6 +20412,10 @@ const es$3 = {
20412
20412
  textColors: "Colores de texto",
20413
20413
  borderColors: "Colores de borde",
20414
20414
  borderRadius: "Radio de borde",
20415
+ shadows: "Sombras",
20416
+ shadowSm: "Sombra chica — usada en cards",
20417
+ shadowMd: "Sombra media — usada en dropdowns, date pickers y menús de acción",
20418
+ shadowLg: "Sombra grande — usada en modales",
20415
20419
  allVariables: "Todas las variables CSS",
20416
20420
  allVariablesDescription: "Referencia completa de todas las variables CSS disponibles en el UI Kit.",
20417
20421
  howToUse: "Cómo usar las variables",
@@ -57679,7 +57683,7 @@ const datePickerYearStyles = {
57679
57683
  };
57680
57684
  const datePickerPopperStyles = {
57681
57685
  "& .MuiPickerPopper-paper": {
57682
- boxShadow: "var(--elevation-shadow)"
57686
+ boxShadow: "var(--shadow-md)"
57683
57687
  }
57684
57688
  };
57685
57689
  const lg$8 = "datePicker-module_lg_lvvw6";
@@ -68321,8 +68325,7 @@ const MoreVertIcon = createSvgIcon(/* @__PURE__ */ jsx$1("path", {
68321
68325
  }), "MoreVert");
68322
68326
  const menuPaperSx = (size2, maxItemsVisible) => ({
68323
68327
  "& .MuiPopover-paper": {
68324
- boxShadow: "var(--elevation-shadow)",
68325
- border: "1px solid var(--border-default)",
68328
+ boxShadow: "var(--shadow-md)",
68326
68329
  maxHeight: `${maxHeight(size2, maxItemsVisible)}px`
68327
68330
  }
68328
68331
  });
@@ -72973,8 +72976,7 @@ const StyledMenu = styled(Menu$1, {
72973
72976
  "& .MuiPaper-root": {
72974
72977
  borderRadius: 4,
72975
72978
  marginTop: 1,
72976
- boxShadow: "var(--elevation-shadow)",
72977
- border: "1px solid var(--border-default)",
72979
+ boxShadow: "var(--shadow-md)",
72978
72980
  "& .MuiMenu-list": {
72979
72981
  padding: "4px 0"
72980
72982
  },