reactive-bulma 2.16.0 → 2.17.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +11 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/molecules/Media/index.d.ts +4 -0
- package/dist/cjs/types/components/molecules/index.d.ts +1 -0
- package/dist/cjs/types/interfaces/moleculeProps.d.ts +8 -0
- package/dist/cjs/types/types/domTypes.d.ts +1 -0
- package/dist/esm/index.js +11 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/molecules/Media/index.d.ts +4 -0
- package/dist/esm/types/components/molecules/index.d.ts +1 -0
- package/dist/esm/types/interfaces/moleculeProps.d.ts +8 -0
- package/dist/esm/types/types/domTypes.d.ts +1 -0
- package/dist/index.d.ts +11 -1
- package/package.json +1 -1
@@ -181,4 +181,12 @@ export interface FooterProps extends ComposedElementProps {
|
|
181
181
|
/** `Styling` Centers footer¿s content horizontally */
|
182
182
|
isContentCentered?: boolean;
|
183
183
|
}
|
184
|
+
export interface MediaProps extends ElementProps {
|
185
|
+
/** `Attribute` Reffers to the component or string content that will be shown inside the component's left side */
|
186
|
+
leftContent?: SingleChildType;
|
187
|
+
/** `Attribute` Reffers to the component or string content that will be shown inside the component's center */
|
188
|
+
centerContent?: SingleChildType;
|
189
|
+
/** `Attribute` Reffers to the component or string content that will be shown inside the component's right side */
|
190
|
+
rightContent?: SingleChildType;
|
191
|
+
}
|
184
192
|
export {};
|
package/dist/index.d.ts
CHANGED
@@ -564,6 +564,14 @@ interface FooterProps extends ComposedElementProps {
|
|
564
564
|
/** `Styling` Centers footer¿s content horizontally */
|
565
565
|
isContentCentered?: boolean;
|
566
566
|
}
|
567
|
+
interface MediaProps extends ElementProps {
|
568
|
+
/** `Attribute` Reffers to the component or string content that will be shown inside the component's left side */
|
569
|
+
leftContent?: SingleChildType;
|
570
|
+
/** `Attribute` Reffers to the component or string content that will be shown inside the component's center */
|
571
|
+
centerContent?: SingleChildType;
|
572
|
+
/** `Attribute` Reffers to the component or string content that will be shown inside the component's right side */
|
573
|
+
rightContent?: SingleChildType;
|
574
|
+
}
|
567
575
|
|
568
576
|
declare const ButtonGroup: React$1.FC<ButtonGroupProps>;
|
569
577
|
|
@@ -599,6 +607,8 @@ declare const TileBox: React$1.FC<TileBoxProps>;
|
|
599
607
|
|
600
608
|
declare const Footer: React$1.FC<FooterProps>;
|
601
609
|
|
610
|
+
declare const Media: React$1.FC<MediaProps>;
|
611
|
+
|
602
612
|
interface FormFieldHelperProps {
|
603
613
|
text?: string;
|
604
614
|
color?: BasicColorType;
|
@@ -662,4 +672,4 @@ declare const Hero: React$1.FC<HeroProps>;
|
|
662
672
|
|
663
673
|
declare const TileGroup: React$1.FC<TileGroupProps>;
|
664
674
|
|
665
|
-
export { Block, Box, BreadcrumbItem, Breadcrumbs, Button, ButtonGroup, CheckBox as Checkbox, Column, ColumnGroup, Delete, Dropdown, DropdownItem, DropdownTrigger, File, Footer, FormField, Hero, Icon, Image, Input, InputControl, Level, LevelHeader, LevelItem, Menu, MenuItem, MenuList, Message, Modal, Notification, Pagination, PaginationItem, Panel, PanelBlock, PanelTabs, ProgressBar, RadioButton, Select, TabItem, Tabs, Tag, TextArea, Tile, TileBox, TileGroup, Title };
|
675
|
+
export { Block, Box, BreadcrumbItem, Breadcrumbs, Button, ButtonGroup, CheckBox as Checkbox, Column, ColumnGroup, Delete, Dropdown, DropdownItem, DropdownTrigger, File, Footer, FormField, Hero, Icon, Image, Input, InputControl, Level, LevelHeader, LevelItem, Media, Menu, MenuItem, MenuList, Message, Modal, Notification, Pagination, PaginationItem, Panel, PanelBlock, PanelTabs, ProgressBar, RadioButton, Select, TabItem, Tabs, Tag, TextArea, Tile, TileBox, TileGroup, Title };
|