reactive-bulma 2.15.0 → 2.16.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/dist/cjs/index.js +64 -37
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/molecules/Footer/index.d.ts +4 -0
- package/dist/cjs/types/components/molecules/index.d.ts +1 -0
- package/dist/cjs/types/interfaces/moleculeProps.d.ts +6 -0
- package/dist/esm/index.js +64 -38
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/molecules/Footer/index.d.ts +4 -0
- package/dist/esm/types/components/molecules/index.d.ts +1 -0
- package/dist/esm/types/interfaces/moleculeProps.d.ts +6 -0
- package/dist/index.d.ts +9 -1
- package/package.json +5 -5
@@ -14,3 +14,4 @@ export { default as PanelBlock } from './PanelBlock';
|
|
14
14
|
export { default as PanelTabs } from './PanelTabs';
|
15
15
|
export { default as LevelItem } from '../molecules/LevelItem';
|
16
16
|
export { default as TileBox } from './TileBox';
|
17
|
+
export { default as Footer } from './Footer';
|
@@ -175,4 +175,10 @@ export interface LevelItemProps extends ElementProps {
|
|
175
175
|
}
|
176
176
|
export interface TileBoxProps extends TileProps {
|
177
177
|
}
|
178
|
+
export interface FooterProps extends ComposedElementProps {
|
179
|
+
/** `Attribute` `Required` Reffers to the component, list of components or string content that will be shown inside the footer */
|
180
|
+
content: ChildrenType;
|
181
|
+
/** `Styling` Centers footer¿s content horizontally */
|
182
|
+
isContentCentered?: boolean;
|
183
|
+
}
|
178
184
|
export {};
|
package/dist/index.d.ts
CHANGED
@@ -558,6 +558,12 @@ interface LevelItemProps extends ElementProps {
|
|
558
558
|
}
|
559
559
|
interface TileBoxProps extends TileProps {
|
560
560
|
}
|
561
|
+
interface FooterProps extends ComposedElementProps {
|
562
|
+
/** `Attribute` `Required` Reffers to the component, list of components or string content that will be shown inside the footer */
|
563
|
+
content: ChildrenType;
|
564
|
+
/** `Styling` Centers footer¿s content horizontally */
|
565
|
+
isContentCentered?: boolean;
|
566
|
+
}
|
561
567
|
|
562
568
|
declare const ButtonGroup: React$1.FC<ButtonGroupProps>;
|
563
569
|
|
@@ -591,6 +597,8 @@ declare const LevelItem: React$1.FC<LevelItemProps>;
|
|
591
597
|
|
592
598
|
declare const TileBox: React$1.FC<TileBoxProps>;
|
593
599
|
|
600
|
+
declare const Footer: React$1.FC<FooterProps>;
|
601
|
+
|
594
602
|
interface FormFieldHelperProps {
|
595
603
|
text?: string;
|
596
604
|
color?: BasicColorType;
|
@@ -654,4 +662,4 @@ declare const Hero: React$1.FC<HeroProps>;
|
|
654
662
|
|
655
663
|
declare const TileGroup: React$1.FC<TileGroupProps>;
|
656
664
|
|
657
|
-
export { Block, Box, BreadcrumbItem, Breadcrumbs, Button, ButtonGroup, CheckBox as Checkbox, Column, ColumnGroup, Delete, Dropdown, DropdownItem, DropdownTrigger, File, 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 };
|
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 };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "reactive-bulma",
|
3
|
-
"version": "2.
|
3
|
+
"version": "2.16.0",
|
4
4
|
"description": "A component library based on React, Bulma, Typescript and Rollup",
|
5
5
|
"keywords": [
|
6
6
|
"typescript",
|
@@ -76,13 +76,13 @@
|
|
76
76
|
"@storybook/react": "^7.6.10",
|
77
77
|
"@storybook/react-webpack5": "^7.6.10",
|
78
78
|
"@storybook/testing-library": "^0.2.2",
|
79
|
-
"@testing-library/jest-dom": "^6.2.
|
79
|
+
"@testing-library/jest-dom": "^6.2.1",
|
80
80
|
"@testing-library/react": "^14.1.2",
|
81
81
|
"@testing-library/user-event": "^14.5.2",
|
82
82
|
"@types/jest": "^29.5.11",
|
83
83
|
"@types/react": "^18.2.48",
|
84
|
-
"@typescript-eslint/eslint-plugin": "^6.19.
|
85
|
-
"@typescript-eslint/parser": "^6.19.
|
84
|
+
"@typescript-eslint/eslint-plugin": "^6.19.1",
|
85
|
+
"@typescript-eslint/parser": "^6.19.1",
|
86
86
|
"babel-jest": "^29.7.0",
|
87
87
|
"babel-loader": "^9.1.3",
|
88
88
|
"bulma": "^0.9.4",
|
@@ -99,7 +99,7 @@
|
|
99
99
|
"prettier": "^3.2.4",
|
100
100
|
"react": "^18.2.0",
|
101
101
|
"react-dom": "^18.2.0",
|
102
|
-
"rollup": "^4.9.
|
102
|
+
"rollup": "^4.9.6",
|
103
103
|
"rollup-plugin-dts": "^6.1.0",
|
104
104
|
"rollup-plugin-postcss": "^4.0.2",
|
105
105
|
"semantic-release": "^23.0.0",
|