@tactics/lokaal-loket 0.0.408 → 0.0.409

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.cts CHANGED
@@ -1778,6 +1778,7 @@ declare const BlockLink: ({ label, menu, onClick }: IBlockLink) => react_jsx_run
1778
1778
 
1779
1779
  interface IInfoTable {
1780
1780
  children: React.ReactNode;
1781
+ direction?: "row" | "column";
1781
1782
  }
1782
1783
  interface IInfoTableItem {
1783
1784
  label: string;
@@ -1785,7 +1786,7 @@ interface IInfoTableItem {
1785
1786
  }
1786
1787
 
1787
1788
  declare const InfoTable: {
1788
- ({ children }: IInfoTable): react_jsx_runtime.JSX.Element;
1789
+ ({ children, direction }: IInfoTable): react_jsx_runtime.JSX.Element;
1789
1790
  Item: ({ label, value }: IInfoTableItem) => react_jsx_runtime.JSX.Element;
1790
1791
  };
1791
1792
 
package/build/index.d.ts CHANGED
@@ -1778,6 +1778,7 @@ declare const BlockLink: ({ label, menu, onClick }: IBlockLink) => react_jsx_run
1778
1778
 
1779
1779
  interface IInfoTable {
1780
1780
  children: React.ReactNode;
1781
+ direction?: "row" | "column";
1781
1782
  }
1782
1783
  interface IInfoTableItem {
1783
1784
  label: string;
@@ -1785,7 +1786,7 @@ interface IInfoTableItem {
1785
1786
  }
1786
1787
 
1787
1788
  declare const InfoTable: {
1788
- ({ children }: IInfoTable): react_jsx_runtime.JSX.Element;
1789
+ ({ children, direction }: IInfoTable): react_jsx_runtime.JSX.Element;
1789
1790
  Item: ({ label, value }: IInfoTableItem) => react_jsx_runtime.JSX.Element;
1790
1791
  };
1791
1792