bsm-design-system 1.13.2 → 1.14.0
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 +17 -9
- package/index.d.ts +17 -9
- package/index.js +10 -10
- package/index.mjs +6 -6
- package/package.json +1 -1
- package/styles.css +1 -1
package/index.d.mts
CHANGED
|
@@ -812,30 +812,38 @@ interface TagType {
|
|
|
812
812
|
|
|
813
813
|
declare function Tag({ label, icon, className, rounded, variant, borderLess, }: TagType): react_jsx_runtime.JSX.Element;
|
|
814
814
|
|
|
815
|
+
declare function Panel({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
815
816
|
declare const Table: {
|
|
816
|
-
({ children, className, }: {
|
|
817
|
+
({ children, className, align, separate, }: {
|
|
817
818
|
children: React.ReactNode;
|
|
818
819
|
className?: string;
|
|
820
|
+
align?: "right" | "left" | "center";
|
|
821
|
+
separate?: boolean;
|
|
819
822
|
}): react_jsx_runtime.JSX.Element;
|
|
820
|
-
|
|
823
|
+
Row: typeof Row;
|
|
824
|
+
Header: ({ children, className, }: {
|
|
821
825
|
children: React.ReactNode;
|
|
822
826
|
className?: string;
|
|
823
827
|
}) => react_jsx_runtime.JSX.Element;
|
|
824
828
|
Body: ({ children }: {
|
|
825
829
|
children: React.ReactNode;
|
|
826
830
|
}) => react_jsx_runtime.JSX.Element;
|
|
827
|
-
Row: typeof Row;
|
|
828
|
-
TableHead: typeof TableHead;
|
|
829
|
-
TableCell: typeof TableCell;
|
|
830
|
-
TableCaption: typeof TableCaption;
|
|
831
831
|
Footer: ({ children, className, }: {
|
|
832
832
|
children: React.ReactNode;
|
|
833
833
|
className?: string;
|
|
834
834
|
}) => react_jsx_runtime.JSX.Element;
|
|
835
|
+
Panel: typeof Panel;
|
|
836
|
+
Cell: typeof Cell;
|
|
837
|
+
Head: typeof Head;
|
|
838
|
+
Container: ({ children, className, }: {
|
|
839
|
+
children: React.ReactNode;
|
|
840
|
+
className?: string;
|
|
841
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
842
|
+
Caption: typeof Caption;
|
|
835
843
|
};
|
|
836
844
|
declare function Row({ className, ...props }: React.ComponentProps<"tr">): react_jsx_runtime.JSX.Element;
|
|
837
|
-
declare function
|
|
838
|
-
declare function
|
|
839
|
-
declare function
|
|
845
|
+
declare function Head({ className, ...props }: React.ComponentProps<"th">): react_jsx_runtime.JSX.Element;
|
|
846
|
+
declare function Cell({ className, ...props }: React.ComponentProps<"td">): react_jsx_runtime.JSX.Element;
|
|
847
|
+
declare function Caption({ className, ...props }: React.ComponentProps<"caption">): react_jsx_runtime.JSX.Element;
|
|
840
848
|
|
|
841
849
|
export { Accordion, Button, Card, Checkbox, Badge as Chips, SmartDialog as Dialog, SmartSheet as Drawer, Input, Pagination, Popover, RadioGroup, SegmentButton, Select, Switch, Table, Tag, Tooltip };
|
package/index.d.ts
CHANGED
|
@@ -812,30 +812,38 @@ interface TagType {
|
|
|
812
812
|
|
|
813
813
|
declare function Tag({ label, icon, className, rounded, variant, borderLess, }: TagType): react_jsx_runtime.JSX.Element;
|
|
814
814
|
|
|
815
|
+
declare function Panel({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
815
816
|
declare const Table: {
|
|
816
|
-
({ children, className, }: {
|
|
817
|
+
({ children, className, align, separate, }: {
|
|
817
818
|
children: React.ReactNode;
|
|
818
819
|
className?: string;
|
|
820
|
+
align?: "right" | "left" | "center";
|
|
821
|
+
separate?: boolean;
|
|
819
822
|
}): react_jsx_runtime.JSX.Element;
|
|
820
|
-
|
|
823
|
+
Row: typeof Row;
|
|
824
|
+
Header: ({ children, className, }: {
|
|
821
825
|
children: React.ReactNode;
|
|
822
826
|
className?: string;
|
|
823
827
|
}) => react_jsx_runtime.JSX.Element;
|
|
824
828
|
Body: ({ children }: {
|
|
825
829
|
children: React.ReactNode;
|
|
826
830
|
}) => react_jsx_runtime.JSX.Element;
|
|
827
|
-
Row: typeof Row;
|
|
828
|
-
TableHead: typeof TableHead;
|
|
829
|
-
TableCell: typeof TableCell;
|
|
830
|
-
TableCaption: typeof TableCaption;
|
|
831
831
|
Footer: ({ children, className, }: {
|
|
832
832
|
children: React.ReactNode;
|
|
833
833
|
className?: string;
|
|
834
834
|
}) => react_jsx_runtime.JSX.Element;
|
|
835
|
+
Panel: typeof Panel;
|
|
836
|
+
Cell: typeof Cell;
|
|
837
|
+
Head: typeof Head;
|
|
838
|
+
Container: ({ children, className, }: {
|
|
839
|
+
children: React.ReactNode;
|
|
840
|
+
className?: string;
|
|
841
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
842
|
+
Caption: typeof Caption;
|
|
835
843
|
};
|
|
836
844
|
declare function Row({ className, ...props }: React.ComponentProps<"tr">): react_jsx_runtime.JSX.Element;
|
|
837
|
-
declare function
|
|
838
|
-
declare function
|
|
839
|
-
declare function
|
|
845
|
+
declare function Head({ className, ...props }: React.ComponentProps<"th">): react_jsx_runtime.JSX.Element;
|
|
846
|
+
declare function Cell({ className, ...props }: React.ComponentProps<"td">): react_jsx_runtime.JSX.Element;
|
|
847
|
+
declare function Caption({ className, ...props }: React.ComponentProps<"caption">): react_jsx_runtime.JSX.Element;
|
|
840
848
|
|
|
841
849
|
export { Accordion, Button, Card, Checkbox, Badge as Chips, SmartDialog as Dialog, SmartSheet as Drawer, Input, Pagination, Popover, RadioGroup, SegmentButton, Select, Switch, Table, Tag, Tooltip };
|