reactive-bulma 1.13.0 → 1.15.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +30 -25
- package/dist/cjs/index.js +96 -11
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/atoms/Icon/index.d.ts +4 -0
- package/dist/cjs/types/components/atoms/Input/index.d.ts +4 -0
- package/dist/cjs/types/components/atoms/index.d.ts +2 -0
- package/dist/cjs/types/functions/parsers.d.ts +1 -1
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/cjs/types/interfaces/atomProps.d.ts +27 -5
- package/dist/cjs/types/interfaces/functionProps.d.ts +6 -0
- package/dist/cjs/types/types/componentEnums.d.ts +5 -0
- package/dist/cjs/types/types/domTypes.d.ts +1 -0
- package/dist/cjs/types/types/styleTypes.d.ts +4 -2
- package/dist/esm/index.js +95 -12
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/atoms/Icon/index.d.ts +4 -0
- package/dist/esm/types/components/atoms/Input/index.d.ts +4 -0
- package/dist/esm/types/components/atoms/index.d.ts +2 -0
- package/dist/esm/types/functions/parsers.d.ts +1 -1
- package/dist/esm/types/index.d.ts +1 -0
- package/dist/esm/types/interfaces/atomProps.d.ts +27 -5
- package/dist/esm/types/interfaces/functionProps.d.ts +6 -0
- package/dist/esm/types/types/componentEnums.d.ts +5 -0
- package/dist/esm/types/types/domTypes.d.ts +1 -0
- package/dist/esm/types/types/styleTypes.d.ts +4 -2
- package/dist/index.d.ts +36 -7
- package/package.json +3 -2
@@ -8,7 +8,7 @@ export declare const parseClasses: (_classes: Array<string | null>) => string;
|
|
8
8
|
* @param { ParseTestIdProps } config Configuration object
|
9
9
|
* @param { string } config.tag Required. Component tag used between to build the final testId string.
|
10
10
|
* @param { string } config.parsedClasses Required. A single string of previously parsed classes what will be joined with `tag` property.
|
11
|
-
* @param { string } config.
|
11
|
+
* @param { { usedRegExp?: RegExp, regExpReplacer?: string }[] } config.rules Optional. An array of objects used with a regular expression to check each case and a replacer for each one, giving oportunity to handle specific cases of component class names.
|
12
12
|
* @returns A single string product of merge all classNames, separated by `separator` value
|
13
13
|
*/
|
14
14
|
export declare const parseTestId: (config: ParseTestIdProps) => string;
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import { basicColorType, columnOffsetType, columnSizeType, fixedImageSizeType,
|
2
|
+
import { basicColorType, columnOffsetType, columnSizeType, fixedImageSizeType, iconColorModeType, basicSizeType, textColorType, titleSizeType } from '../types/styleTypes';
|
3
|
+
import { inputTypes } from '../types/domTypes';
|
3
4
|
interface BasicProps {
|
4
5
|
testId?: string;
|
5
6
|
style?: React.CSSProperties;
|
@@ -20,7 +21,7 @@ export interface ButtonProps extends BasicProps, React.ComponentPropsWithoutRef<
|
|
20
21
|
isLoading?: boolean;
|
21
22
|
isDisabled?: boolean;
|
22
23
|
isStatic?: boolean;
|
23
|
-
size?:
|
24
|
+
size?: basicSizeType;
|
24
25
|
onClick?: () => void;
|
25
26
|
}
|
26
27
|
export interface ProgressBarProps extends BasicProps, React.ComponentPropsWithoutRef<'progress'> {
|
@@ -28,7 +29,7 @@ export interface ProgressBarProps extends BasicProps, React.ComponentPropsWithou
|
|
28
29
|
max?: number;
|
29
30
|
style?: React.CSSProperties;
|
30
31
|
color?: basicColorType;
|
31
|
-
size?:
|
32
|
+
size?: basicSizeType;
|
32
33
|
isLoading?: boolean;
|
33
34
|
}
|
34
35
|
export interface BlockProps extends BasicProps, React.ComponentPropsWithoutRef<'section'> {
|
@@ -39,7 +40,7 @@ export interface TagProps extends BasicProps, React.ComponentPropsWithoutRef<'sp
|
|
39
40
|
color?: basicColorType;
|
40
41
|
isLight?: boolean;
|
41
42
|
isRounded?: boolean;
|
42
|
-
size?: Exclude<
|
43
|
+
size?: Exclude<basicSizeType, 'is-normal'>;
|
43
44
|
withDelete?: boolean;
|
44
45
|
withAddon?: boolean;
|
45
46
|
addonText?: string;
|
@@ -55,7 +56,7 @@ export interface BoxProps extends BasicProps, React.ComponentPropsWithoutRef<'se
|
|
55
56
|
}
|
56
57
|
export interface TitleSectionProps extends BasicProps, React.ComponentPropsWithoutRef<'p'> {
|
57
58
|
text: string;
|
58
|
-
size?:
|
59
|
+
size?: titleSizeType;
|
59
60
|
prop: 'title' | 'subtitle';
|
60
61
|
isSpaced?: boolean;
|
61
62
|
}
|
@@ -63,4 +64,25 @@ export interface TitleProps {
|
|
63
64
|
main?: TitleSectionProps;
|
64
65
|
secondary?: TitleSectionProps;
|
65
66
|
}
|
67
|
+
export interface IconProps extends BasicProps {
|
68
|
+
iconLabel: string;
|
69
|
+
text?: string;
|
70
|
+
color?: textColorType;
|
71
|
+
size?: Exclude<basicSizeType, 'is-normal'>;
|
72
|
+
colorMode?: iconColorModeType;
|
73
|
+
isSpinning?: boolean;
|
74
|
+
}
|
75
|
+
export interface InputProps extends BasicProps {
|
76
|
+
type: inputTypes;
|
77
|
+
text?: string;
|
78
|
+
isDisabled?: boolean;
|
79
|
+
isReadonly?: boolean;
|
80
|
+
color?: basicColorType;
|
81
|
+
size?: basicSizeType;
|
82
|
+
isRounded?: boolean;
|
83
|
+
isHovered?: boolean;
|
84
|
+
isFocused?: boolean;
|
85
|
+
onClick?: () => void;
|
86
|
+
onChange?: () => void;
|
87
|
+
}
|
66
88
|
export {};
|
@@ -1,6 +1,8 @@
|
|
1
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
|
2
|
+
export type titleSizeType = 'is-1' | 'is-2' | 'is-3' | 'is-4' | 'is-5' | 'is-6';
|
3
3
|
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';
|
4
4
|
export type basicColorType = 'is-white' | 'is-light' | 'is-dark' | 'is-black' | 'is-text' | 'is-ghost' | 'is-primary' | 'is-link' | 'is-info' | 'is-success' | 'is-warning' | 'is-danger';
|
5
|
+
export type textColorType = 'has-text-white' | 'has-text-black' | 'has-text-light' | 'has-text-dark' | 'has-text-primary' | 'has-text-link' | 'has-text-info' | 'has-text-success' | 'has-text-warning' | 'has-text-danger';
|
5
6
|
export type fixedImageSizeType = 'is-16x16' | 'is-24x24' | 'is-32x32' | 'is-48x48' | 'is-64x64' | 'is-96x96' | 'is-128x128' | 'is-square' | 'is-1by1' | 'is-5by4' | 'is-4by3' | 'is-3by2' | 'is-5by3' | 'is-16by9' | 'is-2by1' | 'is-3by1' | 'is-4by5' | 'is-3by4' | 'is-2by3' | 'is-3by5' | 'is-9by16' | 'is-1by2' | 'is-1by3';
|
6
|
-
export type
|
7
|
+
export type basicSizeType = 'is-small' | 'is-normal' | 'is-medium' | 'is-large';
|
8
|
+
export type iconColorModeType = 'light' | 'dark';
|