reactive-bulma 1.5.0 → 1.6.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.
@@ -1,6 +1,4 @@
1
1
  import React from 'react';
2
- interface ButtonProps {
3
- text?: string;
4
- }
2
+ import { ButtonProps } from '../../../interfaces/atomProps';
5
3
  declare const Button: React.FC<ButtonProps>;
6
4
  export default Button;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { ColumnProps } from '../../../interfaces/atomProps';
3
+ declare const Column: React.FC<ColumnProps>;
4
+ export default Column;
@@ -0,0 +1,2 @@
1
+ export { default as Button } from './Button';
2
+ export { default as Column } from './Column';
@@ -1 +1,2 @@
1
- export * from './components';
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
- import React from 'react';
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
- declare const Button: React.FC<ButtonProps>;
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.5.0",
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,2 +0,0 @@
1
- import '../../node_modules/bulma/css/bulma.min.css';
2
- export { default as Button } from './Button';
@@ -1 +0,0 @@
1
- export { default } from './Button';
@@ -1,2 +0,0 @@
1
- import '../../node_modules/bulma/css/bulma.min.css';
2
- export { default as Button } from './Button';