@producteca/producteca-ui-kit 1.73.0 → 1.74.1

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.
@@ -57551,14 +57551,14 @@ const datePickerLayoutStyles = {
57551
57551
  height: "min-content !important"
57552
57552
  },
57553
57553
  "& .MuiPickersCalendarHeader-label": {
57554
- fontFamily: "Poppins, Open Sans, Helvetica, Arial, sans-serif",
57554
+ fontFamily: "var(--primary-font-family)",
57555
57555
  fontSize: "14px",
57556
57556
  color: "var(--grey-700)",
57557
57557
  fontWeight: 600,
57558
57558
  textTransform: "capitalize"
57559
57559
  },
57560
57560
  "& .MuiDayCalendar-weekDayLabel": {
57561
- fontFamily: "Poppins, Open Sans, Helvetica, Arial, sans-serif",
57561
+ fontFamily: "var(--primary-font-family)",
57562
57562
  fontSize: "12px",
57563
57563
  color: "var(--grey-700)",
57564
57564
  fontWeight: 600
@@ -57584,7 +57584,7 @@ const datePickerInputStyles = {
57584
57584
  }
57585
57585
  };
57586
57586
  const datePickerDayStyles = {
57587
- fontFamily: "Poppins, Open Sans, Helvetica, Arial, sans-serif",
57587
+ fontFamily: "var(--primary-font-family)",
57588
57588
  fontSize: "12px",
57589
57589
  backgroundColor: "white",
57590
57590
  color: "var(--grey-900)",
@@ -57625,7 +57625,7 @@ const datePickerDigitalClockStyles = {
57625
57625
  }
57626
57626
  },
57627
57627
  "& .MuiButtonBase-root.MuiMenuItem-root.MuiMenuItem-gutters": {
57628
- fontFamily: "Poppins, Open Sans, Helvetica, Arial, sans-serif",
57628
+ fontFamily: "var(--primary-font-family)",
57629
57629
  backgroundColor: "white",
57630
57630
  color: "var(--grey-900)",
57631
57631
  borderRadius: "4px",
@@ -57655,7 +57655,7 @@ const datePickerYearStyles = {
57655
57655
  // .MuiYearCalendar-button rendered directly inside .MuiYearCalendar-root
57656
57656
  "& .MuiYearCalendar-root": {
57657
57657
  "& .MuiYearCalendar-button": {
57658
- fontFamily: "Poppins, Open Sans, Helvetica, Arial, sans-serif",
57658
+ fontFamily: "var(--primary-font-family)",
57659
57659
  fontSize: "14px",
57660
57660
  backgroundColor: "white",
57661
57661
  color: "var(--grey-900)",
@@ -67428,7 +67428,7 @@ const WithTooltip = ({
67428
67428
  sx: {
67429
67429
  ...customSlotProps?.popper?.sx || {},
67430
67430
  [`&.${tooltipClasses.popper} .${tooltipClasses.tooltip}`]: {
67431
- fontFamily: "Poppins, Open Sans, Helvetica, Arial, sans-serif",
67431
+ fontFamily: "var(--primary-font-family)",
67432
67432
  background: "var(--grey-800)",
67433
67433
  padding: "9px 9px 8px 12px",
67434
67434
  fontSize: "12px",
@@ -68297,6 +68297,7 @@ const BreadcrumbItemComponent = ({ item: item2, index: index2, items }) => {
68297
68297
  return item2?.onClick || item2?.href ? /* @__PURE__ */ jsx$1(
68298
68298
  Link,
68299
68299
  {
68300
+ size: "sm",
68300
68301
  href: `${item2?.href}`,
68301
68302
  onClick: item2?.onClick,
68302
68303
  children: text2
@@ -68351,7 +68352,7 @@ const styles$7 = {
68351
68352
  disabled: disabled$1
68352
68353
  };
68353
68354
  const menuItemSx = {
68354
- fontFamily: "Poppins, Open Sans, Helvetica, Arial, sans-serif",
68355
+ fontFamily: "var(--primary-font-family)",
68355
68356
  fontSize: "14px",
68356
68357
  color: getColor("grey", "900"),
68357
68358
  "&.Mui-selected": { backgroundColor: getColor("grey", "100") },