@allxsmith/bestax-bulma 5.6.2 → 5.7.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.
@@ -27,4 +27,6 @@ export interface ColumnsProps extends React.HTMLAttributes<HTMLDivElement>, Omit
27
27
  gapSizeFullhd?: BulmaGapSize;
28
28
  children?: React.ReactNode;
29
29
  }
30
- export declare const Columns: React.FC<ColumnsProps>;
30
+ export declare const Columns: React.FC<ColumnsProps> & {
31
+ Column: React.FC<import("./Column").ColumnProps>;
32
+ };
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { BulmaClassesProps } from '../helpers/useBulmaClasses';
3
- import { Avatar, AvatarProps } from './Avatar';
3
+ import { AvatarProps } from './Avatar';
4
4
  export type AvatarsSpacing = 'sm' | 'md' | 'lg';
5
5
  export interface AvatarsProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'color'>, Omit<BulmaClassesProps, 'backgroundColor' | 'color'> {
6
6
  className?: string;
@@ -13,6 +13,6 @@ export interface AvatarsProps extends Omit<React.HTMLAttributes<HTMLDivElement>,
13
13
  children?: React.ReactNode;
14
14
  }
15
15
  export declare const Avatars: React.FC<AvatarsProps> & {
16
- Avatar: typeof Avatar;
16
+ Avatar: React.FC<AvatarProps>;
17
17
  };
18
18
  export default Avatars;
@@ -14,7 +14,6 @@ export interface CardProps extends React.HTMLAttributes<HTMLDivElement>, Omit<Bu
14
14
  imageAlt?: string;
15
15
  children?: React.ReactNode;
16
16
  }
17
- declare const CardComponent: React.FC<CardProps>;
18
17
  export interface CardHeaderProps extends React.HTMLAttributes<HTMLElement> {
19
18
  className?: string;
20
19
  children?: React.ReactNode;
@@ -45,25 +44,16 @@ export interface CardHeaderIconProps extends React.ButtonHTMLAttributes<HTMLButt
45
44
  className?: string;
46
45
  children?: React.ReactNode;
47
46
  }
48
- declare const CardHeader: React.FC<CardHeaderProps>;
49
- declare const CardHeaderTitle: React.FC<CardHeaderTitleProps>;
50
- declare const CardHeaderIcon: React.FC<CardHeaderIconProps>;
51
- declare const CardImage: React.FC<CardImageProps>;
52
- declare const CardContent: React.FC<CardContentProps>;
53
- declare const CardFooter: React.FC<CardFooterProps>;
54
- declare const CardFooterItem: React.FC<CardFooterItemProps>;
55
- type CardWithCompounds = typeof CardComponent & {
56
- Header: typeof CardHeader & {
57
- Title: typeof CardHeaderTitle;
58
- Icon: typeof CardHeaderIcon;
47
+ export declare const Card: React.FC<CardProps> & {
48
+ Header: React.FC<CardHeaderProps> & {
49
+ Title: React.FC<CardHeaderTitleProps>;
50
+ Icon: React.FC<CardHeaderIconProps>;
59
51
  };
60
- Image: typeof CardImage;
61
- Content: typeof CardContent;
62
- Footer: typeof CardFooter;
63
- FooterItem: typeof CardFooterItem;
52
+ Image: React.FC<CardImageProps>;
53
+ Content: React.FC<CardContentProps>;
54
+ Footer: React.FC<CardFooterProps>;
55
+ FooterItem: React.FC<CardFooterItemProps>;
64
56
  };
65
- declare const CardWithSubComponents: CardWithCompounds;
66
- export { CardWithSubComponents as Card };
67
57
  export declare const __test_exports__: {
68
58
  renderFooter: (footer: CardProps["footer"], classPrefix: string | undefined) => React.JSX.Element[] | null;
69
59
  };
@@ -9,7 +9,6 @@ export interface MessageProps extends Omit<React.HTMLAttributes<HTMLElement>, 't
9
9
  onClose?: () => void;
10
10
  children?: React.ReactNode;
11
11
  }
12
- declare const MessageComponent: React.FC<MessageProps>;
13
12
  export interface MessageHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
14
13
  className?: string;
15
14
  children?: React.ReactNode;
@@ -18,12 +17,8 @@ export interface MessageBodyProps extends React.HTMLAttributes<HTMLDivElement> {
18
17
  className?: string;
19
18
  children?: React.ReactNode;
20
19
  }
21
- declare const MessageHeader: React.FC<MessageHeaderProps>;
22
- declare const MessageBody: React.FC<MessageBodyProps>;
23
- type MessageWithCompounds = typeof MessageComponent & {
24
- Header: typeof MessageHeader;
25
- Body: typeof MessageBody;
20
+ export declare const Message: React.FC<MessageProps> & {
21
+ Header: React.FC<MessageHeaderProps>;
22
+ Body: React.FC<MessageBodyProps>;
26
23
  };
27
- declare const MessageWithSubComponents: MessageWithCompounds;
28
- export { MessageWithSubComponents as Message };
29
- export default MessageWithSubComponents;
24
+ export default Message;
@@ -38,23 +38,15 @@ export interface ModalCloseProps extends React.ButtonHTMLAttributes<HTMLButtonEl
38
38
  size?: 'small' | 'medium' | 'large';
39
39
  variant?: 'delete' | 'floating';
40
40
  }
41
- declare const ModalBackground: React.FC<ModalBackgroundProps>;
42
- declare const ModalContent: React.FC<ModalContentProps>;
43
- declare const ModalCardHead: React.FC<ModalCardHeadProps>;
44
- declare const ModalCardTitle: React.FC<ModalCardTitleProps>;
45
- declare const ModalCardBody: React.FC<ModalCardBodyProps>;
46
- declare const ModalCardFoot: React.FC<ModalCardFootProps>;
47
- declare const ModalCard: React.FC<ModalCardProps> & {
48
- Head: typeof ModalCardHead;
49
- Title: typeof ModalCardTitle;
50
- Body: typeof ModalCardBody;
51
- Foot: typeof ModalCardFoot;
52
- };
53
- declare const ModalClose: React.FC<ModalCloseProps>;
54
41
  export declare const Modal: React.FC<ModalProps> & {
55
- Background: typeof ModalBackground;
56
- Content: typeof ModalContent;
57
- Card: typeof ModalCard;
58
- Close: typeof ModalClose;
42
+ Background: React.FC<ModalBackgroundProps>;
43
+ Content: React.FC<ModalContentProps>;
44
+ Card: React.FC<ModalCardProps> & {
45
+ Head: React.FC<ModalCardHeadProps>;
46
+ Title: React.FC<ModalCardTitleProps>;
47
+ Body: React.FC<ModalCardBodyProps>;
48
+ Foot: React.FC<ModalCardFootProps>;
49
+ };
50
+ Close: React.FC<ModalCloseProps>;
59
51
  };
60
52
  export default Modal;
@@ -9,18 +9,6 @@ export interface NavbarProps extends React.HTMLAttributes<HTMLElement>, Omit<Bul
9
9
  fixed?: 'top' | 'bottom';
10
10
  children?: React.ReactNode;
11
11
  }
12
- export declare const Navbar: React.FC<NavbarProps> & {
13
- Brand: typeof NavbarBrand;
14
- Item: typeof NavbarItem;
15
- Link: typeof NavbarLink;
16
- Burger: typeof NavbarBurger;
17
- Menu: typeof NavbarMenu;
18
- Start: typeof NavbarStart;
19
- End: typeof NavbarEnd;
20
- Dropdown: typeof NavbarDropdown;
21
- DropdownMenu: typeof NavbarDropdownMenu;
22
- Divider: typeof NavbarDivider;
23
- };
24
12
  export interface NavbarBrandProps extends React.HTMLAttributes<HTMLDivElement>, Omit<BulmaClassesProps, 'color' | 'backgroundColor'> {
25
13
  className?: string;
26
14
  textColor?: (typeof validColors)[number] | 'inherit' | 'current';
@@ -91,4 +79,16 @@ export interface NavbarDropdownMenuProps extends React.HTMLAttributes<HTMLDivEle
91
79
  }
92
80
  export declare const NavbarDropdownMenu: React.FC<NavbarDropdownMenuProps>;
93
81
  export declare const NavbarDivider: React.FC<React.HTMLAttributes<HTMLHRElement>>;
82
+ export declare const Navbar: React.FC<NavbarProps> & {
83
+ Brand: React.FC<NavbarBrandProps>;
84
+ Item: React.FC<NavbarItemProps>;
85
+ Link: React.FC<NavbarLinkProps>;
86
+ Burger: React.FC<NavbarBurgerProps>;
87
+ Menu: React.FC<NavbarMenuProps>;
88
+ Start: React.FC<NavbarStartEndProps>;
89
+ End: React.FC<NavbarStartEndProps>;
90
+ Dropdown: React.FC<NavbarDropdownProps>;
91
+ DropdownMenu: React.FC<NavbarDropdownMenuProps>;
92
+ Divider: React.FC<React.HTMLAttributes<HTMLHRElement>>;
93
+ };
94
94
  export default Navbar;
@@ -20,13 +20,6 @@ export interface PaginationPreviousNextProps extends React.AnchorHTMLAttributes<
20
20
  }
21
21
  export declare const PaginationPrevious: React.FC<PaginationPreviousNextProps>;
22
22
  export declare const PaginationNext: React.FC<PaginationPreviousNextProps>;
23
- export declare const Pagination: React.FC<PaginationProps> & {
24
- Link: typeof PaginationLink;
25
- List: typeof PaginationList;
26
- Ellipsis: typeof PaginationEllipsis;
27
- Previous: typeof PaginationPrevious;
28
- Next: typeof PaginationNext;
29
- };
30
23
  export interface PaginationListProps extends React.HTMLAttributes<HTMLUListElement>, Omit<BulmaClassesProps, 'color' | 'backgroundColor'> {
31
24
  className?: string;
32
25
  textColor?: (typeof validColors)[number] | 'inherit' | 'current';
@@ -46,4 +39,11 @@ export interface PaginationLinkProps extends React.AnchorHTMLAttributes<HTMLAnch
46
39
  }
47
40
  export declare const PaginationLink: React.FC<PaginationLinkProps>;
48
41
  export declare const PaginationEllipsis: React.FC<React.LiHTMLAttributes<HTMLLIElement>>;
42
+ export declare const Pagination: React.FC<PaginationProps> & {
43
+ Link: React.FC<PaginationLinkProps>;
44
+ List: React.FC<PaginationListProps>;
45
+ Ellipsis: React.FC<React.LiHTMLAttributes<HTMLLIElement>>;
46
+ Previous: React.FC<PaginationPreviousNextProps>;
47
+ Next: React.FC<PaginationPreviousNextProps>;
48
+ };
49
49
  export default Pagination;
@@ -34,15 +34,6 @@ export interface PanelCheckboxBlockProps extends Omit<React.LabelHTMLAttributes<
34
34
  export interface PanelButtonBlockProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
35
35
  children?: React.ReactNode;
36
36
  }
37
- export declare const Panel: React.FC<PanelProps> & {
38
- Heading: typeof PanelHeading;
39
- Tabs: typeof PanelTabs;
40
- Block: typeof PanelBlock;
41
- Icon: typeof PanelIcon;
42
- InputBlock: typeof PanelInputBlock;
43
- CheckboxBlock: typeof PanelCheckboxBlock;
44
- ButtonBlock: typeof PanelButtonBlock;
45
- };
46
37
  export declare const PanelHeading: React.FC<PanelHeadingProps>;
47
38
  export declare const PanelTabs: React.FC<PanelTabsProps>;
48
39
  export declare const PanelBlock: React.FC<PanelBlockProps>;
@@ -50,4 +41,13 @@ export declare const PanelIcon: React.FC<PanelIconProps>;
50
41
  export declare const PanelInputBlock: React.FC<PanelInputBlockProps>;
51
42
  export declare const PanelCheckboxBlock: React.FC<PanelCheckboxBlockProps>;
52
43
  export declare const PanelButtonBlock: React.FC<PanelButtonBlockProps>;
44
+ export declare const Panel: React.FC<PanelProps> & {
45
+ Heading: React.FC<PanelHeadingProps>;
46
+ Tabs: React.FC<PanelTabsProps>;
47
+ Block: React.FC<PanelBlockProps>;
48
+ Icon: React.FC<PanelIconProps>;
49
+ InputBlock: React.FC<PanelInputBlockProps>;
50
+ CheckboxBlock: React.FC<PanelCheckboxBlockProps>;
51
+ ButtonBlock: React.FC<PanelButtonBlockProps>;
52
+ };
53
53
  export default Panel;
@@ -40,6 +40,6 @@ export interface StepProps extends Omit<React.LiHTMLAttributes<HTMLLIElement>, '
40
40
  }
41
41
  export declare const Step: React.FC<StepProps>;
42
42
  export declare const Steps: React.FC<StepsProps> & {
43
- Step: typeof Step;
43
+ Step: React.FC<StepProps>;
44
44
  };
45
45
  export default Steps;
@@ -17,14 +17,6 @@ export interface TabsProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'o
17
17
  className?: string;
18
18
  children?: React.ReactNode;
19
19
  }
20
- export declare const Tabs: React.FC<TabsProps> & {
21
- List: typeof TabList;
22
- Tab: typeof Tab;
23
- Item: typeof TabItem;
24
- Content: typeof TabsContent & {
25
- Item: typeof TabContentItem;
26
- };
27
- };
28
20
  export interface TabListProps extends React.HTMLAttributes<HTMLUListElement> {
29
21
  className?: string;
30
22
  children?: React.ReactNode;
@@ -54,13 +46,21 @@ export interface TabsContentProps extends React.HTMLAttributes<HTMLDivElement> {
54
46
  className?: string;
55
47
  children?: React.ReactNode;
56
48
  }
57
- export declare const TabsContent: React.FC<TabsContentProps> & {
58
- Item: typeof TabContentItem;
59
- };
60
49
  export interface TabContentItemProps extends React.HTMLAttributes<HTMLDivElement> {
61
50
  index: number;
62
51
  className?: string;
63
52
  children?: React.ReactNode;
64
53
  }
65
54
  export declare const TabContentItem: React.FC<TabContentItemProps>;
55
+ export declare const TabsContent: React.FC<TabsContentProps> & {
56
+ Item: React.FC<TabContentItemProps>;
57
+ };
58
+ export declare const Tabs: React.FC<TabsProps> & {
59
+ List: React.FC<TabListProps>;
60
+ Tab: React.FC<TabProps>;
61
+ Item: React.FC<TabItemProps>;
62
+ Content: React.FC<TabsContentProps> & {
63
+ Item: React.FC<TabContentItemProps>;
64
+ };
65
+ };
66
66
  export default Tabs;
@@ -10,5 +10,8 @@ interface ButtonsProps extends React.HTMLAttributes<HTMLDivElement>, BulmaClasse
10
10
  hasAddons?: boolean;
11
11
  children: React.ReactNode;
12
12
  }
13
- export declare const Buttons: React.FC<ButtonsProps>;
13
+ export declare const Buttons: React.FC<ButtonsProps> & {
14
+ Button: React.FC<import("./Button").ButtonProps>;
15
+ LinkButton: React.FC<import("./LinkButton").LinkButtonProps>;
16
+ };
14
17
  export {};
@@ -14,5 +14,7 @@ interface IconTextProps extends React.HTMLAttributes<HTMLSpanElement>, BulmaClas
14
14
  children?: React.ReactNode;
15
15
  items?: IconTextItem[];
16
16
  }
17
- export declare const IconText: React.FC<IconTextProps>;
17
+ export declare const IconText: React.FC<IconTextProps> & {
18
+ Icon: React.FC<IconProps>;
19
+ };
18
20
  export {};
@@ -6,4 +6,6 @@ export interface OrderedListProps extends React.OlHTMLAttributes<HTMLOListElemen
6
6
  bgColor?: (typeof validColors)[number] | 'inherit' | 'current';
7
7
  children?: React.ReactNode;
8
8
  }
9
- export declare const OrderedList: React.FC<OrderedListProps>;
9
+ export declare const OrderedList: React.FC<OrderedListProps> & {
10
+ Item: React.FC<import("./ListItem").ListItemProps>;
11
+ };
@@ -10,4 +10,11 @@ export interface TableProps extends Omit<React.TableHTMLAttributes<HTMLTableElem
10
10
  isResponsive?: boolean;
11
11
  children?: React.ReactNode;
12
12
  }
13
- export declare const Table: React.FC<TableProps>;
13
+ export declare const Table: React.FC<TableProps> & {
14
+ Thead: React.FC<import("./Thead").TheadProps>;
15
+ Tbody: React.FC<import("./Tbody").TbodyProps>;
16
+ Tfoot: React.FC<import("./Tfoot").TfootProps>;
17
+ Tr: React.FC<import("./Tr").TrProps>;
18
+ Th: React.FC<import("./Th").ThProps>;
19
+ Td: React.FC<import("./Td").TdProps>;
20
+ };
@@ -6,4 +6,6 @@ export interface TagsProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'c
6
6
  isMultiline?: boolean;
7
7
  children?: React.ReactNode;
8
8
  }
9
- export declare const Tags: React.FC<TagsProps>;
9
+ export declare const Tags: React.FC<TagsProps> & {
10
+ Tag: React.FC<import("./Tag").TagProps>;
11
+ };
@@ -6,4 +6,6 @@ export interface UnorderedListProps extends React.HTMLAttributes<HTMLUListElemen
6
6
  bgColor?: (typeof validColors)[number] | 'inherit' | 'current';
7
7
  children?: React.ReactNode;
8
8
  }
9
- export declare const UnorderedList: React.FC<UnorderedListProps>;
9
+ export declare const UnorderedList: React.FC<UnorderedListProps> & {
10
+ Item: React.FC<import("./ListItem").ListItemProps>;
11
+ };
@@ -9,5 +9,7 @@ export interface CheckboxesProps extends Omit<BulmaClassesProps, 'color'>, FormF
9
9
  onChange?: (values: string[]) => void;
10
10
  children?: React.ReactNode;
11
11
  }
12
- export declare const Checkboxes: React.FC<CheckboxesProps>;
12
+ export declare const Checkboxes: React.FC<CheckboxesProps> & {
13
+ Checkbox: React.ForwardRefExoticComponent<import("./Checkbox").CheckboxProps & React.RefAttributes<HTMLInputElement>>;
14
+ };
13
15
  export default Checkboxes;
@@ -34,7 +34,16 @@ export interface FieldBodyProps extends React.HTMLAttributes<HTMLDivElement>, Om
34
34
  export declare const FieldLabel: React.FC<FieldLabelProps>;
35
35
  export declare const FieldBody: React.FC<FieldBodyProps>;
36
36
  export declare const Field: React.FC<FieldProps> & {
37
- Label: typeof FieldLabel;
38
- Body: typeof FieldBody;
37
+ Label: React.FC<FieldLabelProps>;
38
+ Body: React.FC<FieldBodyProps>;
39
+ Control: React.ForwardRefExoticComponent<(Omit<{
40
+ as?: "div";
41
+ } & import("./Control").ControlBaseProps & {
42
+ ref?: React.Ref<HTMLDivElement>;
43
+ }, "ref"> | Omit<{
44
+ as: "p";
45
+ } & Omit<import("./Control").ControlBaseProps, keyof React.HTMLAttributes<HTMLDivElement>> & React.HTMLAttributes<HTMLParagraphElement> & {
46
+ ref?: React.Ref<HTMLParagraphElement>;
47
+ }, "ref">) & React.RefAttributes<HTMLDivElement | HTMLParagraphElement>>;
39
48
  };
40
49
  export default Field;
@@ -9,5 +9,7 @@ export interface RadiosProps extends Omit<BulmaClassesProps, 'color'>, FormField
9
9
  onChange?: (value: string) => void;
10
10
  children: React.ReactNode;
11
11
  }
12
- export declare const Radios: React.FC<RadiosProps>;
12
+ export declare const Radios: React.FC<RadiosProps> & {
13
+ Radio: React.ForwardRefExoticComponent<import("./Radio").RadioProps & React.RefAttributes<HTMLInputElement>>;
14
+ };
13
15
  export default Radios;
@@ -22,4 +22,6 @@ export interface GridProps extends React.HTMLAttributes<HTMLDivElement>, Omit<Bu
22
22
  bgColor?: (typeof validColors)[number] | 'inherit' | 'current';
23
23
  children?: React.ReactNode;
24
24
  }
25
- export declare const Grid: React.FC<GridProps>;
25
+ export declare const Grid: React.FC<GridProps> & {
26
+ Cell: React.FC<import("./Cell").CellProps>;
27
+ };
@@ -0,0 +1,3 @@
1
+ export declare function withSubComponents<Base extends {
2
+ displayName?: string;
3
+ }, Subs extends Record<string, unknown>>(base: Base, subs: Subs, displayName?: string): Base & Subs;
@@ -9,11 +9,6 @@ export interface HeroProps extends React.HTMLAttributes<HTMLElement>, Omit<Bulma
9
9
  fullheightWithNavbar?: boolean;
10
10
  children?: React.ReactNode;
11
11
  }
12
- export declare const Hero: React.FC<HeroProps> & {
13
- Head: typeof HeroHead;
14
- Body: typeof HeroBody;
15
- Foot: typeof HeroFoot;
16
- };
17
12
  export interface HeroHeadProps extends React.HTMLAttributes<HTMLDivElement>, Omit<BulmaClassesProps, 'color' | 'backgroundColor'> {
18
13
  className?: string;
19
14
  color?: (typeof validColors)[number] | 'inherit' | 'current';
@@ -38,4 +33,9 @@ export interface HeroFootProps extends React.HTMLAttributes<HTMLDivElement>, Omi
38
33
  children?: React.ReactNode;
39
34
  }
40
35
  export declare const HeroFoot: React.FC<HeroFootProps>;
36
+ export declare const Hero: React.FC<HeroProps> & {
37
+ Head: React.FC<HeroHeadProps>;
38
+ Body: React.FC<HeroBodyProps>;
39
+ Foot: React.FC<HeroFootProps>;
40
+ };
41
41
  export default Hero;
@@ -8,11 +8,6 @@ export interface LevelProps extends React.HTMLAttributes<HTMLElement>, Omit<Bulm
8
8
  className?: string;
9
9
  children?: React.ReactNode;
10
10
  }
11
- export declare const Level: React.FC<LevelProps> & {
12
- Left: typeof LevelLeft;
13
- Right: typeof LevelRight;
14
- Item: typeof LevelItem;
15
- };
16
11
  export interface LevelLeftProps extends React.HTMLAttributes<HTMLDivElement>, Omit<BulmaClassesProps, 'color' | 'backgroundColor'> {
17
12
  color?: (typeof validColors)[number] | 'inherit' | 'current';
18
13
  bgColor?: (typeof validColors)[number] | 'inherit' | 'current';
@@ -42,4 +37,9 @@ export interface LevelItemProps extends React.HTMLAttributes<HTMLDivElement | HT
42
37
  rel?: string;
43
38
  }
44
39
  export declare const LevelItem: React.FC<LevelItemProps>;
40
+ export declare const Level: React.FC<LevelProps> & {
41
+ Left: React.FC<LevelLeftProps>;
42
+ Right: React.FC<LevelRightProps>;
43
+ Item: React.FC<LevelItemProps>;
44
+ };
45
45
  export default Level;
@@ -8,7 +8,6 @@ export interface MediaProps extends React.HTMLAttributes<HTMLElement>, Omit<Bulm
8
8
  className?: string;
9
9
  children?: React.ReactNode;
10
10
  }
11
- export declare const Media: React.FC<MediaProps>;
12
11
  export interface MediaLeftProps extends React.HTMLAttributes<HTMLElement>, Omit<BulmaClassesProps, 'color' | 'backgroundColor'> {
13
12
  as?: 'figure' | 'div';
14
13
  color?: (typeof validColors)[number] | 'inherit' | 'current';
@@ -34,10 +33,9 @@ export interface MediaRightProps extends React.HTMLAttributes<HTMLDivElement>, O
34
33
  children?: React.ReactNode;
35
34
  }
36
35
  export declare const MediaRight: React.FC<MediaRightProps>;
37
- interface MediaComponent extends React.FC<MediaProps> {
36
+ export declare const Media: React.FC<MediaProps> & {
38
37
  Left: React.FC<MediaLeftProps>;
39
38
  Content: React.FC<MediaContentProps>;
40
39
  Right: React.FC<MediaRightProps>;
41
- }
42
- declare const MediaWithSubcomponents: MediaComponent;
43
- export default MediaWithSubcomponents;
40
+ };
41
+ export default Media;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allxsmith/bestax-bulma",
3
- "version": "5.6.2",
3
+ "version": "5.7.0",
4
4
  "description": "A fully-typed React component library for the Bulma CSS framework. Build modern UIs quickly with reusable, accessible, and customizable Bulma-based React components.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",