reactive-bulma 1.5.0 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +24 -5
- package/dist/cjs/index.js +9 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/{Button/Button.d.ts → atoms/Button/index.d.ts} +1 -3
- package/dist/cjs/types/components/atoms/Column/index.d.ts +4 -0
- package/dist/cjs/types/components/atoms/index.d.ts +2 -0
- package/dist/cjs/types/index.d.ts +2 -1
- package/dist/cjs/types/interfaces/atomProps.d.ts +10 -0
- package/dist/cjs/types/types/styleTypes.d.ts +2 -0
- package/dist/esm/index.js +9 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/{Button/Button.d.ts → atoms/Button/index.d.ts} +1 -3
- package/dist/esm/types/components/atoms/Column/index.d.ts +4 -0
- package/dist/esm/types/components/atoms/index.d.ts +2 -0
- package/dist/esm/types/index.d.ts +2 -1
- package/dist/esm/types/interfaces/atomProps.d.ts +10 -0
- package/dist/esm/types/types/styleTypes.d.ts +2 -0
- package/dist/index.d.ts +15 -3
- package/package.json +4 -3
- package/dist/cjs/types/components/Button/index.d.ts +0 -1
- package/dist/cjs/types/components/index.d.ts +0 -2
- package/dist/esm/types/components/Button/index.d.ts +0 -1
- package/dist/esm/types/components/index.d.ts +0 -2
@@ -1 +1,2 @@
|
|
1
|
-
|
1
|
+
import '../node_modules/bulma/css/bulma.min.css';
|
2
|
+
export * from './components/atoms';
|
@@ -0,0 +1,10 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { columnOffsetType, columnSizeType } from '../types/styleTypes';
|
3
|
+
export interface ButtonProps {
|
4
|
+
text?: string;
|
5
|
+
}
|
6
|
+
export interface ColumnProps extends React.ComponentPropsWithoutRef<'section'> {
|
7
|
+
size?: columnSizeType;
|
8
|
+
offset?: columnOffsetType;
|
9
|
+
isNarrow?: boolean;
|
10
|
+
}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
export type columnSizeType = 'is-three-quarters' | 'is-two-thirds' | 'is-half' | 'is-one-third' | 'is-one-quarter' | 'is-full' | 'is-four-fifths' | 'is-three-fifths' | 'is-two-fifths' | 'is-one-fifth' | 'is-1' | 'is-2' | 'is-3' | 'is-4' | 'is-5' | 'is-6' | 'is-7' | 'is-8' | 'is-9' | 'is-10' | 'is-11' | 'is-12';
|
2
|
+
export type columnOffsetType = 'is-offset-1' | 'is-offset-2' | 'is-offset-3' | 'is-offset-4' | 'is-offset-5' | 'is-offset-6' | 'is-offset-7' | 'is-offset-8' | 'is-offset-9' | 'is-offset-10' | 'is-offset-11' | 'is-offset-12';
|
package/dist/index.d.ts
CHANGED
@@ -1,8 +1,20 @@
|
|
1
|
-
|
1
|
+
/// <reference types="react" />
|
2
|
+
import React$1 from 'react';
|
3
|
+
|
4
|
+
type columnSizeType = 'is-three-quarters' | 'is-two-thirds' | 'is-half' | 'is-one-third' | 'is-one-quarter' | 'is-full' | 'is-four-fifths' | 'is-three-fifths' | 'is-two-fifths' | 'is-one-fifth' | 'is-1' | 'is-2' | 'is-3' | 'is-4' | 'is-5' | 'is-6' | 'is-7' | 'is-8' | 'is-9' | 'is-10' | 'is-11' | 'is-12';
|
5
|
+
type columnOffsetType = 'is-offset-1' | 'is-offset-2' | 'is-offset-3' | 'is-offset-4' | 'is-offset-5' | 'is-offset-6' | 'is-offset-7' | 'is-offset-8' | 'is-offset-9' | 'is-offset-10' | 'is-offset-11' | 'is-offset-12';
|
2
6
|
|
3
7
|
interface ButtonProps {
|
4
8
|
text?: string;
|
5
9
|
}
|
6
|
-
|
10
|
+
interface ColumnProps extends React.ComponentPropsWithoutRef<'section'> {
|
11
|
+
size?: columnSizeType;
|
12
|
+
offset?: columnOffsetType;
|
13
|
+
isNarrow?: boolean;
|
14
|
+
}
|
15
|
+
|
16
|
+
declare const Button: React$1.FC<ButtonProps>;
|
17
|
+
|
18
|
+
declare const Column: React$1.FC<ColumnProps>;
|
7
19
|
|
8
|
-
export { Button };
|
20
|
+
export { Button, Column };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "reactive-bulma",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.6.0",
|
4
4
|
"description": "A typescript-react-based component library based on bulma",
|
5
5
|
"keywords": [
|
6
6
|
"typescript",
|
@@ -66,6 +66,7 @@
|
|
66
66
|
"@storybook/manager-webpack5": "^6.5.15",
|
67
67
|
"@storybook/react": "^6.5.15",
|
68
68
|
"@storybook/testing-library": "^0.0.13",
|
69
|
+
"@testing-library/jest-dom": "^5.16.5",
|
69
70
|
"@testing-library/react": "^13.4.0",
|
70
71
|
"@types/jest": "^29.4.0",
|
71
72
|
"@types/react": "^18.0.26",
|
@@ -77,6 +78,7 @@
|
|
77
78
|
"eslint": "^8.33.0",
|
78
79
|
"eslint-config-prettier": "^8.6.0",
|
79
80
|
"eslint-plugin-react": "^7.32.2",
|
81
|
+
"husky": "^8.0.0",
|
80
82
|
"jest": "^29.4.1",
|
81
83
|
"jest-environment-jsdom": "^29.4.1",
|
82
84
|
"lint-staged": "^13.1.0",
|
@@ -88,8 +90,7 @@
|
|
88
90
|
"rollup-plugin-postcss": "^4.0.2",
|
89
91
|
"semantic-release": "^20.1.0",
|
90
92
|
"tslib": "^2.4.1",
|
91
|
-
"typescript": "^4.9.4"
|
92
|
-
"husky": "^8.0.0"
|
93
|
+
"typescript": "^4.9.4"
|
93
94
|
},
|
94
95
|
"lint-staged": {
|
95
96
|
"src/**/*.(ts|tsx)": [
|
@@ -1 +0,0 @@
|
|
1
|
-
export { default } from './Button';
|
@@ -1 +0,0 @@
|
|
1
|
-
export { default } from './Button';
|