bsm-design-system 1.16.2 → 1.16.4

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/index.d.mts CHANGED
@@ -816,12 +816,13 @@ declare function Tag({ label, icon, className, rounded, variant, borderLess, }:
816
816
 
817
817
  declare function Panel({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
818
818
  declare const Table: {
819
- ({ children, className, align, separated, bordered, }: {
819
+ ({ children, className, align, separated, bordered, heigthClassName }: {
820
820
  children: React.ReactNode;
821
821
  className?: string;
822
822
  align?: "right" | "left" | "center";
823
823
  separated?: boolean;
824
824
  bordered?: boolean;
825
+ heigthClassName?: string;
825
826
  }): react_jsx_runtime.JSX.Element;
826
827
  Row: typeof Row;
827
828
  Header: ({ children, className, }: {
package/index.d.ts CHANGED
@@ -816,12 +816,13 @@ declare function Tag({ label, icon, className, rounded, variant, borderLess, }:
816
816
 
817
817
  declare function Panel({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
818
818
  declare const Table: {
819
- ({ children, className, align, separated, bordered, }: {
819
+ ({ children, className, align, separated, bordered, heigthClassName }: {
820
820
  children: React.ReactNode;
821
821
  className?: string;
822
822
  align?: "right" | "left" | "center";
823
823
  separated?: boolean;
824
824
  bordered?: boolean;
825
+ heigthClassName?: string;
825
826
  }): react_jsx_runtime.JSX.Element;
826
827
  Row: typeof Row;
827
828
  Header: ({ children, className, }: {