reactive-bulma 2.12.0 → 2.14.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +2 -2
- package/dist/cjs/index.js +57 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/atoms/LevelHeader/index.d.ts +4 -0
- package/dist/cjs/types/components/atoms/index.d.ts +1 -0
- package/dist/cjs/types/components/molecules/LevelItem/index.d.ts +4 -0
- package/dist/cjs/types/components/molecules/index.d.ts +1 -0
- package/dist/cjs/types/components/organisms/Hero/index.d.ts +4 -0
- package/dist/cjs/types/components/organisms/Level/index.d.ts +4 -0
- package/dist/cjs/types/components/organisms/index.d.ts +2 -0
- package/dist/cjs/types/interfaces/atomProps.d.ts +34 -27
- package/dist/cjs/types/interfaces/moleculeProps.d.ts +23 -17
- package/dist/cjs/types/interfaces/organismProps.d.ts +27 -4
- package/dist/cjs/types/types/componentEnums.d.ts +3 -0
- package/dist/cjs/types/types/styleTypes.d.ts +15 -15
- package/dist/esm/index.js +54 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/atoms/LevelHeader/index.d.ts +4 -0
- package/dist/esm/types/components/atoms/index.d.ts +1 -0
- package/dist/esm/types/components/molecules/LevelItem/index.d.ts +4 -0
- package/dist/esm/types/components/molecules/index.d.ts +1 -0
- package/dist/esm/types/components/organisms/Hero/index.d.ts +4 -0
- package/dist/esm/types/components/organisms/Level/index.d.ts +4 -0
- package/dist/esm/types/components/organisms/index.d.ts +2 -0
- package/dist/esm/types/interfaces/atomProps.d.ts +34 -27
- package/dist/esm/types/interfaces/moleculeProps.d.ts +23 -17
- package/dist/esm/types/interfaces/organismProps.d.ts +27 -4
- package/dist/esm/types/types/componentEnums.d.ts +3 -0
- package/dist/esm/types/types/styleTypes.d.ts +15 -15
- package/dist/index.d.ts +104 -59
- package/package.json +1 -1
@@ -20,3 +20,4 @@ export { default as MenuItem } from './MenuItem';
|
|
20
20
|
export { default as Image } from './Image';
|
21
21
|
export { default as PaginationItem } from './PaginationItem';
|
22
22
|
export { default as TabItem } from './TabItem';
|
23
|
+
export { default as LevelHeader } from './LevelHeader';
|
@@ -12,3 +12,4 @@ export { default as Tabs } from './Tabs';
|
|
12
12
|
export { default as InputControl } from './InputControl';
|
13
13
|
export { default as PanelBlock } from './PanelBlock';
|
14
14
|
export { default as PanelTabs } from './PanelTabs';
|
15
|
+
export { default as LevelItem } from '../molecules/LevelItem';
|
@@ -1,14 +1,15 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { ElementProps, ComposedElementProps, ClickeableProps } from './commonProps';
|
3
|
-
import {
|
3
|
+
import { BasicColorType, ColumnOffsetType, ColumnSizeType, FixedImageSizeType, IconColorModeType, ElementSizeType, SizeWithoutNormalType, TextColorType, TitleSizeType, RightLeftAlignType } from '../types/styleTypes';
|
4
4
|
import { DropdownItemType, InputType } from '../types/domTypes';
|
5
|
+
import { ChildrenType } from '../types/componentEnums';
|
5
6
|
export interface ColumnProps extends ElementProps, React.ComponentPropsWithoutRef<'section'> {
|
6
7
|
/** `Attribute` Reffers to the component or array of components that will be shown inside the column */
|
7
|
-
children?:
|
8
|
+
children?: ChildrenType;
|
8
9
|
/** `Styling` Set column's size */
|
9
|
-
size?:
|
10
|
+
size?: ColumnSizeType;
|
10
11
|
/** `Styling` Set column's offset (moving it as you set its size */
|
11
|
-
offset?:
|
12
|
+
offset?: ColumnOffsetType;
|
12
13
|
/** `Styling` Set if the column only will take the space it needs */
|
13
14
|
isNarrow?: boolean;
|
14
15
|
}
|
@@ -18,7 +19,7 @@ export interface ButtonProps extends ElementProps, React.ComponentPropsWithoutRe
|
|
18
19
|
/** `Attribute` Will disable the button */
|
19
20
|
isDisabled?: boolean;
|
20
21
|
/** `Styling` Color based on bulma's color tokens */
|
21
|
-
color?:
|
22
|
+
color?: BasicColorType;
|
22
23
|
/** `Styling` Will adjust the selected color with a ligther style */
|
23
24
|
isLightColor?: boolean;
|
24
25
|
/** `Styling` Will invert button's colors (typography in color and background in white or black) */
|
@@ -34,7 +35,7 @@ export interface ButtonProps extends ElementProps, React.ComponentPropsWithoutRe
|
|
34
35
|
/** `Styling` Sets the button style when a User selects it (useful for an attached `ButtonGroup`) */
|
35
36
|
isSelected?: boolean;
|
36
37
|
/** `Styling` Set button's size on bulma's size tokens */
|
37
|
-
size?:
|
38
|
+
size?: ElementSizeType;
|
38
39
|
/** `Function` Click function, alone does not nothing, but can be reused for other components */
|
39
40
|
onClick?: () => void;
|
40
41
|
}
|
@@ -44,15 +45,15 @@ export interface ProgressBarProps extends ElementProps, React.ComponentPropsWith
|
|
44
45
|
/** `Attribute` Sets the entire bar length comparing with current `value` */
|
45
46
|
max?: number;
|
46
47
|
/** `Styling` Color based on bulma's color tokens */
|
47
|
-
color?:
|
48
|
+
color?: BasicColorType;
|
48
49
|
/** `Styling` Set progress bar's size */
|
49
|
-
size?:
|
50
|
+
size?: ElementSizeType;
|
50
51
|
/** `Styling` Will change `value` for an animated loading */
|
51
52
|
isLoading?: boolean;
|
52
53
|
}
|
53
54
|
export interface BlockProps extends ElementProps, React.ComponentPropsWithoutRef<'section'> {
|
54
55
|
/** `Attribute` Reffers to the component or array of components that will be shown inside the block */
|
55
|
-
children?:
|
56
|
+
children?: ChildrenType;
|
56
57
|
}
|
57
58
|
export interface TagProps extends ComposedElementProps, React.ComponentPropsWithoutRef<'span'> {
|
58
59
|
/** `Attribute` `Required` The text will be shown in the `Tag` */
|
@@ -64,15 +65,15 @@ export interface TagProps extends ComposedElementProps, React.ComponentPropsWith
|
|
64
65
|
/** `Attribute` The text will be shown in the tag's addon */
|
65
66
|
addonText?: string;
|
66
67
|
/** `Styling` Color based on bulma's color tokens */
|
67
|
-
color?:
|
68
|
+
color?: BasicColorType;
|
68
69
|
/** `Styling` Will adjust the selected color with a ligther style */
|
69
70
|
isLight?: boolean;
|
70
71
|
/** `Styling` Will add round borders to tag's shape */
|
71
72
|
isRounded?: boolean;
|
72
73
|
/** `Styling` Set tag's size */
|
73
|
-
size?:
|
74
|
+
size?: SizeWithoutNormalType;
|
74
75
|
/** `Styling` Color on tag's addon based on bulma's color tokens */
|
75
|
-
addonColor?:
|
76
|
+
addonColor?: BasicColorType;
|
76
77
|
/** `Function` Click function for `delete` option, alone does not nothing, but can be reused for other components */
|
77
78
|
onDeleteClick?: () => void;
|
78
79
|
}
|
@@ -82,19 +83,19 @@ export interface ImageProps extends ComposedElementProps, React.ComponentPropsWi
|
|
82
83
|
/** `Attribute` A description text for the image, useful for accessibility purposes */
|
83
84
|
alt?: string;
|
84
85
|
/** `Styling` Will add round borders to image's shape */
|
85
|
-
fixedSize?:
|
86
|
+
fixedSize?: FixedImageSizeType;
|
86
87
|
/** `Styling` Sets image size based on one of fixed ratios/fixed sizes */
|
87
88
|
isRounded?: boolean;
|
88
89
|
}
|
89
90
|
export interface BoxProps extends ElementProps, React.ComponentPropsWithoutRef<'section'> {
|
90
91
|
/** `Attribute` Reffers to the component or array of components that will be shown inside the box */
|
91
|
-
children?:
|
92
|
+
children?: ChildrenType;
|
92
93
|
}
|
93
94
|
export interface TitleSectionProps extends ElementProps, React.ComponentPropsWithoutRef<'p'> {
|
94
95
|
/** `Attribute` Sets the text you want to show */
|
95
96
|
text: string;
|
96
97
|
/** `Styling` Set text size */
|
97
|
-
size?:
|
98
|
+
size?: TitleSizeType;
|
98
99
|
/** `Styling` Set type of title (`title` at top, `subtitle` at below) */
|
99
100
|
type: 'title' | 'subtitle';
|
100
101
|
/** `Styling` Set text spacing at default or maximun length */
|
@@ -112,15 +113,15 @@ export interface IconProps extends ComposedElementProps {
|
|
112
113
|
/** `Attribute` Sets the text you want to show next to the icon */
|
113
114
|
text?: string;
|
114
115
|
/** `Styling` Color based on bulma's text color tokens */
|
115
|
-
color?:
|
116
|
+
color?: TextColorType;
|
116
117
|
/** `Styling` Set icons's size */
|
117
|
-
size?:
|
118
|
+
size?: SizeWithoutNormalType;
|
118
119
|
/** `Styling` Special usage in case you want to set as dark or light mode */
|
119
|
-
colorMode?:
|
120
|
+
colorMode?: IconColorModeType;
|
120
121
|
/** `Styling` Animates the icon spinning 360° */
|
121
122
|
isSpinning?: boolean;
|
122
123
|
/** `Styling` Used for `InputControl` styling purpose only. Will move the Icon itself to control's Input side */
|
123
|
-
position?:
|
124
|
+
position?: RightLeftAlignType;
|
124
125
|
}
|
125
126
|
export interface InputProps extends ElementProps, ClickeableProps {
|
126
127
|
/** `Attribute` `Required` What type of input will be used */
|
@@ -134,9 +135,9 @@ export interface InputProps extends ElementProps, ClickeableProps {
|
|
134
135
|
/** `Attribute` Will show the input as a normal one, but is not editable and has no shadow */
|
135
136
|
isReadonly?: boolean;
|
136
137
|
/** `Styling` Color based on bulma's text color tokens */
|
137
|
-
color?:
|
138
|
+
color?: BasicColorType;
|
138
139
|
/** `Styling` Set input's size */
|
139
|
-
size?:
|
140
|
+
size?: SizeWithoutNormalType;
|
140
141
|
/** `Styling` Will add round borders to input's shape */
|
141
142
|
isRounded?: boolean;
|
142
143
|
/** `Styling` Will add a specific border when the input is hovered by the user */
|
@@ -156,7 +157,7 @@ export interface TextAreaProps extends Omit<InputProps, 'isRounded' | 'type'> {
|
|
156
157
|
}
|
157
158
|
export interface DeleteProps extends ElementProps, ClickeableProps {
|
158
159
|
/** `Styling` Set icons's size */
|
159
|
-
size?:
|
160
|
+
size?: SizeWithoutNormalType;
|
160
161
|
}
|
161
162
|
export interface SelectOption {
|
162
163
|
id: string | number;
|
@@ -171,9 +172,9 @@ export interface SelectProps extends ComposedElementProps, ClickeableProps {
|
|
171
172
|
/** `Attribute` Will allow multiple selection */
|
172
173
|
isMultiple?: boolean;
|
173
174
|
/** `Styling` Color based on bulma's color tokens */
|
174
|
-
color?:
|
175
|
+
color?: BasicColorType;
|
175
176
|
/** `Styling` Set select's size */
|
176
|
-
size?:
|
177
|
+
size?: ElementSizeType;
|
177
178
|
/** `Styling`Will add round borders to input's shape */
|
178
179
|
isRounded?: boolean;
|
179
180
|
/** `Styling`Will add a specific border when the input is hovered by the user */
|
@@ -195,13 +196,13 @@ export interface FileProps extends ComposedElementProps, ClickeableProps {
|
|
195
196
|
/** `Styling` Changes styling to a box style, making the button bigger and file name's position below the button */
|
196
197
|
isBoxed?: boolean;
|
197
198
|
/** `Styling` Color based on bulma's color tokens */
|
198
|
-
color?:
|
199
|
+
color?: BasicColorType;
|
199
200
|
/** `Styling` Set button's size */
|
200
|
-
size?:
|
201
|
+
size?: ElementSizeType;
|
201
202
|
}
|
202
203
|
export interface CheckBoxProps extends ComposedElementProps {
|
203
204
|
/** `Attribute` Sets checkbox's text that will be shown next to its control */
|
204
|
-
content?:
|
205
|
+
content?: ChildrenType;
|
205
206
|
/** `Attribute` Will disable the checkbox */
|
206
207
|
isDisabled?: boolean;
|
207
208
|
/** `Function` Click function, alone does not nothing, but can be reused for other components */
|
@@ -271,3 +272,9 @@ export interface TabItemProps extends ComposedElementProps, ClickeableProps {
|
|
271
272
|
/** `Styling` Used for `Tabs` styling purpose only. Will mark the tab as the one selected among its group */
|
272
273
|
isActive?: boolean;
|
273
274
|
}
|
275
|
+
export interface LevelHeaderProps extends ElementProps {
|
276
|
+
/** `Attribute` `Required` A title in smaller size */
|
277
|
+
header: string;
|
278
|
+
/** `Attribute` `Required` Main value (numeric or text) to be shown in a bigger scale below `header` */
|
279
|
+
value: string | number;
|
280
|
+
}
|
@@ -1,8 +1,8 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import { ClickeableProps, ComposedElementProps, ElementProps } from './commonProps';
|
3
2
|
import { BreadcrumbItemProps, ButtonProps, ColumnProps, DeleteProps, DropdownItemProps, IconProps, InputProps, MenuItemProps, PaginationItemProps, TabItemProps } from './atomProps';
|
4
|
-
import {
|
3
|
+
import { BasicColorType, RightCenteredAlignType, BreadcrumbSeparatorType, ColumnGapType, SizeWithoutNormalType, TabsFormatType } from '../types/styleTypes';
|
5
4
|
import { PanelBlockItemType } from '../types/domTypes';
|
5
|
+
import { ChildrenType, SingleChildType } from '../types/componentEnums';
|
6
6
|
export interface ButtonGroupProps extends ElementProps {
|
7
7
|
/** `Atribute` `Required` Array of `Button` objects that will be shown */
|
8
8
|
buttonList: ButtonProps[];
|
@@ -23,15 +23,15 @@ export interface ColumnGroupProps extends ElementProps {
|
|
23
23
|
/** `Styling` Will center the list of columns horizontally */
|
24
24
|
isHorizontallyCentered?: boolean;
|
25
25
|
/** `Styling` Will adjust the space between the columns. In case to set null, it will remove those gaps */
|
26
|
-
gap?:
|
26
|
+
gap?: ColumnGapType | null;
|
27
27
|
}
|
28
28
|
export interface NotificationProps extends ElementProps {
|
29
29
|
/** `Attribute` Reffers to the component or array of components that will be shown inside the column */
|
30
|
-
children?:
|
30
|
+
children?: ChildrenType;
|
31
31
|
/** `Atribute` Includes a `Delete` config object that will be shown */
|
32
32
|
deleteButton?: DeleteProps;
|
33
33
|
/** `Styling` Color based on bulma's color tokens */
|
34
|
-
color?:
|
34
|
+
color?: BasicColorType;
|
35
35
|
/** `Styling` Will adjust the selected color with a ligther style */
|
36
36
|
isLightColor?: boolean;
|
37
37
|
}
|
@@ -39,11 +39,11 @@ export interface BreadcrumbsProps extends ComposedElementProps {
|
|
39
39
|
/** `Atribute` `Required` Array of `BreadcrumbItems` objects that will be shown */
|
40
40
|
items: BreadcrumbItemProps[];
|
41
41
|
/** `Styling` Will adjust element position on screen */
|
42
|
-
alignment?:
|
42
|
+
alignment?: RightCenteredAlignType | null;
|
43
43
|
/** `Styling` Will adjust element position on screen */
|
44
|
-
separator?:
|
44
|
+
separator?: BreadcrumbSeparatorType | null;
|
45
45
|
/** `Styling` Set button's size on bulma's size tokens */
|
46
|
-
size?:
|
46
|
+
size?: SizeWithoutNormalType;
|
47
47
|
}
|
48
48
|
export interface DropdownProps extends ElementProps {
|
49
49
|
/** `Atribute` `Required` Sets the name will be shown on the dropdown input */
|
@@ -61,9 +61,9 @@ export interface MessageProps extends ElementProps {
|
|
61
61
|
/** `Atribute` Includes a `Delete` config object that will be shown */
|
62
62
|
deleteButton?: DeleteProps;
|
63
63
|
/** `Styling` Color based on bulma's color tokens */
|
64
|
-
color?:
|
64
|
+
color?: BasicColorType;
|
65
65
|
/** `Styling` Set button's size on bulma's size tokens */
|
66
|
-
size?:
|
66
|
+
size?: SizeWithoutNormalType;
|
67
67
|
}
|
68
68
|
interface MenuSubListProps {
|
69
69
|
subListTitle: MenuItemProps;
|
@@ -106,13 +106,13 @@ export interface PaginationProps extends ComposedElementProps {
|
|
106
106
|
/** `Styling` Will add round borders to each page's shape */
|
107
107
|
isRounded?: boolean;
|
108
108
|
/** `Styling` Set button's size on bulma's size tokens */
|
109
|
-
size?:
|
109
|
+
size?: SizeWithoutNormalType;
|
110
110
|
/** `Styling` Will adjust the pages position on screen */
|
111
|
-
alignment?:
|
111
|
+
alignment?: RightCenteredAlignType | null;
|
112
112
|
}
|
113
113
|
export interface ModalProps extends ComposedElementProps {
|
114
114
|
/** `Attribute` Reffers to the component or array of components that will be shown inside the column */
|
115
|
-
children?:
|
115
|
+
children?: ChildrenType | null;
|
116
116
|
/** `Function` Custom function related to the modal's close button to inject custom code if needed */
|
117
117
|
onCloseClick?: () => void;
|
118
118
|
}
|
@@ -120,11 +120,11 @@ export interface TabsProps extends ElementProps {
|
|
120
120
|
/** `Attribute` `Required` List of tabs that will be shown in order */
|
121
121
|
tabs: TabItemProps[];
|
122
122
|
/** `Styling` Will adjust the tabs position on screen */
|
123
|
-
alignment?:
|
123
|
+
alignment?: RightCenteredAlignType;
|
124
124
|
/** `Styling` Set tab's size on bulma's size tokens */
|
125
|
-
size?:
|
125
|
+
size?: SizeWithoutNormalType;
|
126
126
|
/** `Styling` Set tab's size on bulma's size tokens */
|
127
|
-
format?:
|
127
|
+
format?: TabsFormatType;
|
128
128
|
/** `Styling` Will add round tabs borders. Only visible if `format` is set to `is-toggle` */
|
129
129
|
isRounded?: boolean;
|
130
130
|
/** `Styling` The whole container will occupy its parent container width */
|
@@ -138,7 +138,7 @@ export interface InputControlProps extends ElementProps {
|
|
138
138
|
/** `Attribute` `Icon` configuration that will be shown in Input's right side */
|
139
139
|
rightIcon?: IconProps;
|
140
140
|
/** `Styling` Set control and its input size on bulma's size tokens */
|
141
|
-
size?:
|
141
|
+
size?: SizeWithoutNormalType;
|
142
142
|
/** `Styling` Will add an animated spinner on input's right side */
|
143
143
|
isLoading?: boolean;
|
144
144
|
/** `Styling` Used for `FormField` styling purpose only. Will strech the input and its container in full-width */
|
@@ -168,4 +168,10 @@ export interface PanelTabsProps extends ElementProps {
|
|
168
168
|
/** `Attribute` `Required` A list of configuration objects that will render a set of tabs */
|
169
169
|
tabList: PanelTabItem[];
|
170
170
|
}
|
171
|
+
export interface LevelItemProps extends ElementProps {
|
172
|
+
/** `Attribute` `Required` Reffers to the component or string content that will be shown inside the level */
|
173
|
+
content: SingleChildType;
|
174
|
+
/** `Styling` Centers item's content horizontally */
|
175
|
+
isCentered?: boolean;
|
176
|
+
}
|
171
177
|
export {};
|
@@ -1,9 +1,10 @@
|
|
1
1
|
import { ElementProps } from './commonProps';
|
2
|
-
import { InputControlProps, PanelBlockProps, PanelTabsProps } from './moleculeProps';
|
3
|
-
import {
|
2
|
+
import { InputControlProps, LevelItemProps, PanelBlockProps, PanelTabsProps } from './moleculeProps';
|
3
|
+
import { BasicColorType, SizeWithoutNormalType } from '../types/styleTypes';
|
4
|
+
import { ChildrenType } from '../types/componentEnums';
|
4
5
|
export interface FormFieldHelperProps {
|
5
6
|
text?: string;
|
6
|
-
color?:
|
7
|
+
color?: BasicColorType;
|
7
8
|
}
|
8
9
|
export interface FormFieldProps extends ElementProps {
|
9
10
|
/** `Attribute` `Required` Single or multiple `InputControlProps` config objects which will be wrapped around the `FormField` */
|
@@ -25,5 +26,27 @@ export interface PanelProps extends ElementProps {
|
|
25
26
|
/** `Attribute` `Required` A list of configuration objects that will render a list of block with different components, based on `PanelBlockList` component */
|
26
27
|
blockList: PanelBlockProps[];
|
27
28
|
/** `Styling` Color based on bulma's text color tokens */
|
28
|
-
color?:
|
29
|
+
color?: BasicColorType;
|
30
|
+
}
|
31
|
+
export interface LevelProps extends ElementProps {
|
32
|
+
/** `Attribute` A list of `LevelItem` configurations that will displayed in Level's left side */
|
33
|
+
leftSide?: LevelItemProps[];
|
34
|
+
/** `Attribute` A list of `LevelItem` configurations that will displayed in Level's center */
|
35
|
+
centerSide?: LevelItemProps[];
|
36
|
+
/** `Attribute` A list of `LevelItem` configurations that will displayed in Level's right side */
|
37
|
+
rightSide?: LevelItemProps[];
|
38
|
+
/** `Styling` Will adjust the navigator on horizontal on mobile as well */
|
39
|
+
isMobile?: boolean;
|
40
|
+
}
|
41
|
+
export interface HeroProps extends ElementProps {
|
42
|
+
/** `Attribute` Designated section for hero's header, it will be visible only if container's `size` is setted to `is-fullheight` */
|
43
|
+
header?: ChildrenType;
|
44
|
+
/** `Attribute` `Required` Designated section for hero's body */
|
45
|
+
body: ChildrenType;
|
46
|
+
/** `Attribute` Designated section for hero's footer, it will be visible only if container's `size` is setted to `is-fullheight` */
|
47
|
+
footer?: ChildrenType;
|
48
|
+
/** `Styling` Set hero's size */
|
49
|
+
size?: SizeWithoutNormalType | 'is-halfheight' | 'is-fullheight';
|
50
|
+
/** `Styling` Color based on bulma's text color tokens */
|
51
|
+
color?: BasicColorType;
|
29
52
|
}
|
@@ -1,5 +1,8 @@
|
|
1
|
+
import React from 'react';
|
1
2
|
export declare enum IconSizeEnum {
|
2
3
|
'is-small' = 24,
|
3
4
|
'is-medium' = 36,
|
4
5
|
'is-large' = 48
|
5
6
|
}
|
7
|
+
export type ChildrenType = string | React.ReactElement | React.ReactElement[];
|
8
|
+
export type SingleChildType = Exclude<ChildrenType, React.ReactElement[]>;
|
@@ -1,15 +1,15 @@
|
|
1
|
-
export type
|
2
|
-
export type
|
3
|
-
export type
|
4
|
-
export type
|
5
|
-
export type
|
6
|
-
export type
|
7
|
-
export type
|
8
|
-
export type
|
9
|
-
export type
|
10
|
-
export type
|
11
|
-
export type
|
12
|
-
export type
|
13
|
-
export type
|
14
|
-
export type
|
15
|
-
export type
|
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 TitleSizeType = 'is-1' | 'is-2' | 'is-3' | 'is-4' | 'is-5' | 'is-6';
|
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
|
+
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';
|
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';
|
7
|
+
export type ElementSizeType = 'is-small' | 'is-normal' | 'is-medium' | 'is-large';
|
8
|
+
export type SizeWithoutNormalType = Exclude<ElementSizeType, 'is-normal'>;
|
9
|
+
export type IconColorModeType = 'light' | 'dark';
|
10
|
+
export type ColumnGapType = 'is-0' | 'is-1' | 'is-2' | 'is-3' | 'is-4' | 'is-5' | 'is-6' | 'is-7' | 'is-8';
|
11
|
+
export type ElementAlignType = 'is-centered' | 'is-right' | 'is-left';
|
12
|
+
export type RightCenteredAlignType = Exclude<ElementAlignType, 'is-left'>;
|
13
|
+
export type RightLeftAlignType = Exclude<ElementAlignType, 'is-centered'>;
|
14
|
+
export type BreadcrumbSeparatorType = 'has-arrow-separator' | 'has-bullet-separator' | 'has-dot-separator' | 'has-succeeds-separator';
|
15
|
+
export type TabsFormatType = 'is-boxed' | 'is-toggle';
|
package/dist/esm/index.js
CHANGED
@@ -3284,6 +3284,13 @@ const TabItem = ({ testId = null, containerTestId = null, cssClasses = null, con
|
|
3284
3284
|
React.createElement("span", { "data-testid": tabItemTestId, className: cssClasses !== null && cssClasses !== void 0 ? cssClasses : undefined, style: style !== null && style !== void 0 ? style : undefined }, text)));
|
3285
3285
|
};
|
3286
3286
|
|
3287
|
+
const LevelHeader = ({ testId = null, cssClasses = null, style = null, header, value }) => {
|
3288
|
+
const levelHeaderTestId = testId !== null && testId !== void 0 ? testId : parseTestId({ tag: 'level-header', parsedClasses: cssClasses !== null && cssClasses !== void 0 ? cssClasses : '' });
|
3289
|
+
return (React.createElement("section", { "data-testid": levelHeaderTestId, className: cssClasses !== null && cssClasses !== void 0 ? cssClasses : undefined, style: style !== null && style !== void 0 ? style : undefined },
|
3290
|
+
React.createElement("p", { className: 'heading' }, header),
|
3291
|
+
React.createElement("p", { className: 'title' }, value)));
|
3292
|
+
};
|
3293
|
+
|
3287
3294
|
const generateKey = (max = 5000, min = 1) => {
|
3288
3295
|
max = Math.floor(max);
|
3289
3296
|
min = Math.ceil(min);
|
@@ -3609,6 +3616,29 @@ const PanelTabs = ({ testId = null, cssClasses = null, style = null, tabList })
|
|
3609
3616
|
})));
|
3610
3617
|
};
|
3611
3618
|
|
3619
|
+
const LevelItem = ({ testId = null, cssClasses = null, style = null, content, isCentered = false }) => {
|
3620
|
+
const levelItemClasses = parseClasses([
|
3621
|
+
'level-item',
|
3622
|
+
isCentered ? 'has-text-centered' : null,
|
3623
|
+
cssClasses
|
3624
|
+
]);
|
3625
|
+
const levelItemTestId = testId !== null && testId !== void 0 ? testId : parseTestId({
|
3626
|
+
tag: 'level-item',
|
3627
|
+
parsedClasses: levelItemClasses,
|
3628
|
+
rules: [
|
3629
|
+
{
|
3630
|
+
regExp: /is-|has-/gm,
|
3631
|
+
replacer: '-'
|
3632
|
+
},
|
3633
|
+
{
|
3634
|
+
regExp: /level-item/gm,
|
3635
|
+
replacer: ''
|
3636
|
+
}
|
3637
|
+
]
|
3638
|
+
});
|
3639
|
+
return (React.createElement("section", { "data-testid": levelItemTestId, className: levelItemClasses, style: style !== null && style !== void 0 ? style : undefined }, content));
|
3640
|
+
};
|
3641
|
+
|
3612
3642
|
const renderFieldLabel = (labelText) => labelText ? (React.createElement("label", { "data-testid": 'test-form-field-label', className: 'label' }, labelText)) : null;
|
3613
3643
|
const renderFieldBody = (inputControlConfig, isGrouped) => {
|
3614
3644
|
if (isGrouped) {
|
@@ -3662,5 +3692,28 @@ const Panel = ({ testId = null, cssClasses = null, style = null, headerText, pan
|
|
3662
3692
|
blockList.map(blockConfig => (React.createElement(PanelBlock, Object.assign({ key: `panel-block-item-${generateKey()}` }, blockConfig))))));
|
3663
3693
|
};
|
3664
3694
|
|
3665
|
-
|
3695
|
+
const renderLevelSection = (levelItemList) => levelItemList.map(_levelItemConfig => (React.createElement(LevelItem, Object.assign({ key: `level-item-${generateKey()}` }, _levelItemConfig))));
|
3696
|
+
const Level = ({ testId = null, cssClasses = null, style = null, leftSide = null, centerSide = null, rightSide = null, isMobile = false }) => {
|
3697
|
+
const levelClasses = parseClasses([
|
3698
|
+
'level',
|
3699
|
+
isMobile ? 'is-mobile' : null,
|
3700
|
+
cssClasses
|
3701
|
+
]);
|
3702
|
+
const levelTestId = testId !== null && testId !== void 0 ? testId : parseTestId({ tag: 'level', parsedClasses: levelClasses });
|
3703
|
+
return (React.createElement("nav", { "data-testid": levelTestId, className: levelClasses, style: style !== null && style !== void 0 ? style : undefined },
|
3704
|
+
leftSide ? (React.createElement("section", { className: 'level-left' }, renderLevelSection(leftSide))) : null,
|
3705
|
+
centerSide ? renderLevelSection(centerSide) : null,
|
3706
|
+
rightSide ? (React.createElement("section", { className: 'level-right' }, renderLevelSection(rightSide))) : null));
|
3707
|
+
};
|
3708
|
+
|
3709
|
+
const Hero = ({ testId = null, cssClasses = null, style = null, header = null, body, footer = null, color = null, size = null }) => {
|
3710
|
+
const heroClasses = parseClasses(['hero', color, size, cssClasses]);
|
3711
|
+
const heroTestId = testId !== null && testId !== void 0 ? testId : parseTestId({ tag: 'hero', parsedClasses: heroClasses });
|
3712
|
+
return (React.createElement("section", { "data-testid": heroTestId, className: heroClasses, style: style !== null && style !== void 0 ? style : undefined },
|
3713
|
+
size === 'is-fullheight' ? (React.createElement("section", { "data-testid": `${heroTestId}-head`, className: 'hero-head' }, header)) : null,
|
3714
|
+
React.createElement("section", { "data-testid": `${heroTestId}-body`, className: 'hero-body' }, body),
|
3715
|
+
size === 'is-fullheight' ? (React.createElement("section", { "data-testid": `${heroTestId}-foot`, className: 'hero-foot' }, footer)) : null));
|
3716
|
+
};
|
3717
|
+
|
3718
|
+
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, Title };
|
3666
3719
|
//# sourceMappingURL=index.js.map
|