reactive-bulma 4.1.1 → 4.1.2
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.
@@ -1,4 +1,4 @@
|
|
1
1
|
import { default as React } from 'react';
|
2
|
-
import {
|
3
|
-
declare const TileBox: React.FC<
|
2
|
+
import { TileProps } from '../../../interfaces/atomProps';
|
3
|
+
declare const TileBox: React.FC<TileProps>;
|
4
4
|
export default TileBox;
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import { Meta } from '@storybook/react';
|
2
2
|
import { default as TileBox } from '.';
|
3
|
+
import { TileProps } from '../../../interfaces/atomProps';
|
3
4
|
declare const _default: Meta<typeof TileBox>;
|
4
5
|
export default _default;
|
5
|
-
export declare const BasicExample: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer,
|
6
|
-
export declare const HalfSize: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer,
|
7
|
-
export declare const Colored: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer,
|
8
|
-
export declare const WithImage: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer,
|
6
|
+
export declare const BasicExample: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, TileProps>;
|
7
|
+
export declare const HalfSize: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, TileProps>;
|
8
|
+
export declare const Colored: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, TileProps>;
|
9
|
+
export declare const WithImage: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, TileProps>;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ClickeableProps, ComposedElementProps, ElementProps } from './commonProps';
|
2
|
-
import { BreadcrumbItemProps, ButtonProps, ColumnProps, DeleteProps, DropdownItemProps, IconProps, ImageProps, InputProps, MenuItemProps, NavBarItemProps, PaginationItemProps, TabItemProps, TableCellProps, TableHeadCellProps
|
2
|
+
import { BreadcrumbItemProps, ButtonProps, ColumnProps, DeleteProps, DropdownItemProps, IconProps, ImageProps, InputProps, MenuItemProps, NavBarItemProps, PaginationItemProps, TabItemProps, TableCellProps, TableHeadCellProps } from './atomProps';
|
3
3
|
import { BasicColorType, RightCenteredAlignType, BreadcrumbSeparatorType, ColumnGapType, SizeWithoutNormalType, TabsFormatType, MediumAndLargeSizeType, RightLeftAlignType } from '../types/styleTypes';
|
4
4
|
import { ChildrenType, SingleChildType, PanelBlockItemType } from '../types/domTypes';
|
5
5
|
export interface ButtonGroupProps extends ElementProps {
|
@@ -173,8 +173,6 @@ export interface LevelItemProps extends ElementProps {
|
|
173
173
|
/** `Styling` Centers item's content horizontally */
|
174
174
|
isCentered?: boolean;
|
175
175
|
}
|
176
|
-
export interface TileBoxProps extends TileProps {
|
177
|
-
}
|
178
176
|
export interface FooterProps extends ComposedElementProps {
|
179
177
|
/** `Attribute` `Required` Reffers to the component, list of components or string content that will be shown inside the footer */
|
180
178
|
content: ChildrenType;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "reactive-bulma",
|
3
|
-
"version": "4.1.
|
3
|
+
"version": "4.1.2",
|
4
4
|
"type": "module",
|
5
5
|
"description": "A component library based on React, Bulma, Typescript and Rollup",
|
6
6
|
"keywords": [
|
@@ -87,8 +87,8 @@
|
|
87
87
|
"@types/node": "^22.9.0",
|
88
88
|
"@types/react": "^18.3.12",
|
89
89
|
"@types/react-dom": "^18.3.1",
|
90
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
91
|
-
"@typescript-eslint/parser": "^8.
|
90
|
+
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
91
|
+
"@typescript-eslint/parser": "^8.15.0",
|
92
92
|
"@vitejs/plugin-react": "^4.3.3",
|
93
93
|
"ajv": "^8.17.1",
|
94
94
|
"babel-jest": "^29.7.0",
|
@@ -115,7 +115,7 @@
|
|
115
115
|
"storybook": "^8.4.4",
|
116
116
|
"tslib": "^2.8.1",
|
117
117
|
"typescript": "~5.6.3",
|
118
|
-
"typescript-eslint": "^8.
|
118
|
+
"typescript-eslint": "^8.15.0",
|
119
119
|
"vite": "^5.4.11",
|
120
120
|
"vite-plugin-dts": "^4.3.0"
|
121
121
|
},
|