componentes-sinco 1.1.32 → 1.1.34

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.d.cts CHANGED
@@ -80,6 +80,7 @@ interface CalendarEvent {
80
80
  start: dayjs.Dayjs;
81
81
  end: dayjs.Dayjs;
82
82
  state: EventState;
83
+ mainScheduleId?: number;
83
84
  }
84
85
  interface CalendarProps {
85
86
  events: CalendarEvent[];
package/dist/index.d.ts CHANGED
@@ -80,6 +80,7 @@ interface CalendarEvent {
80
80
  start: dayjs.Dayjs;
81
81
  end: dayjs.Dayjs;
82
82
  state: EventState;
83
+ mainScheduleId?: number;
83
84
  }
84
85
  interface CalendarProps {
85
86
  events: CalendarEvent[];
package/dist/index.js CHANGED
@@ -4930,7 +4930,6 @@ function SCDataGridInitial({ data, columns, getRowId, groupColumns, titleRowsPag
4930
4930
  color: "#10184099",
4931
4931
  display: "flex",
4932
4932
  alignItems: "center",
4933
- borderTop: params.rowNode.type === "group" && params.rowNode.depth === 0 ? "2px solid #2063A0" : "1px solid #E0E0E0",
4934
4933
  paddingLeft: params.rowNode.depth == 0 ? "5px" : params.rowNode.depth == 1 ? "15px" : "25px",
4935
4934
  backgroundColor: params.rowNode.type === "group" ? theme.palette.grey[100 + (maxDepth - params.rowNode.depth) * 100] : "#FFFFFF",
4936
4935
  fontWeight: params.rowNode.type == "group" ? "400" : "300"