@tactics/lokaal-loket 0.0.474 → 0.0.476

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.cts CHANGED
@@ -1073,6 +1073,7 @@ interface ITableRow {
1073
1073
  interface ITableCell {
1074
1074
  type?: TableCellType;
1075
1075
  children: React.ReactNode;
1076
+ label?: string;
1076
1077
  }
1077
1078
 
1078
1079
  declare const Table: {
@@ -1080,7 +1081,7 @@ declare const Table: {
1080
1081
  Body: ({ children }: ITableBody) => react_jsx_runtime.JSX.Element;
1081
1082
  Head: ({ children }: ITableHead) => react_jsx_runtime.JSX.Element;
1082
1083
  Row: ({ children }: ITableRow) => react_jsx_runtime.JSX.Element;
1083
- Cell: ({ type, children }: ITableCell) => react_jsx_runtime.JSX.Element;
1084
+ Cell: ({ type, children, label }: ITableCell) => react_jsx_runtime.JSX.Element;
1084
1085
  };
1085
1086
 
1086
1087
  interface DayOfBirthI {
package/build/index.d.ts CHANGED
@@ -1073,6 +1073,7 @@ interface ITableRow {
1073
1073
  interface ITableCell {
1074
1074
  type?: TableCellType;
1075
1075
  children: React.ReactNode;
1076
+ label?: string;
1076
1077
  }
1077
1078
 
1078
1079
  declare const Table: {
@@ -1080,7 +1081,7 @@ declare const Table: {
1080
1081
  Body: ({ children }: ITableBody) => react_jsx_runtime.JSX.Element;
1081
1082
  Head: ({ children }: ITableHead) => react_jsx_runtime.JSX.Element;
1082
1083
  Row: ({ children }: ITableRow) => react_jsx_runtime.JSX.Element;
1083
- Cell: ({ type, children }: ITableCell) => react_jsx_runtime.JSX.Element;
1084
+ Cell: ({ type, children, label }: ITableCell) => react_jsx_runtime.JSX.Element;
1084
1085
  };
1085
1086
 
1086
1087
  interface DayOfBirthI {