labsense-ui-kit 1.4.17 → 1.4.19

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.
@@ -17,6 +17,7 @@ interface DatePickerProps {
17
17
  startDate: Date | null;
18
18
  endDate: Date | null;
19
19
  }>>;
20
+ calendarBorder?: string;
20
21
  }
21
22
  declare const DatePicker: React.FC<DatePickerProps>;
22
23
  export default DatePicker;
@@ -44,7 +44,7 @@ interface RowConfig {
44
44
  }
45
45
  interface TableProps {
46
46
  tableheaderconfig: HeaderConfig;
47
- rowconfig: RowConfig[];
47
+ rowconfig?: RowConfig[];
48
48
  selectCallback?: (checked: boolean, id?: string | number) => void;
49
49
  toggleAllCallback?: (checked: boolean) => void;
50
50
  }
@@ -18,6 +18,7 @@ interface TabProps {
18
18
  border?: string;
19
19
  gap?: string;
20
20
  overflow?: string;
21
+ scrollbarWidth?: string;
21
22
  bordeBottom?: string;
22
23
  tabRightNode?: {
23
24
  gap: string;