reactive-bulma 2.11.0 → 2.13.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.
- package/LICENSE +1 -1
 - package/README.md +2 -2
 - package/dist/cjs/index.js +124 -34
 - 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/PanelBlock/index.d.ts +4 -0
 - package/dist/cjs/types/components/molecules/PanelTabs/index.d.ts +4 -0
 - package/dist/cjs/types/components/molecules/index.d.ts +3 -1
 - package/dist/cjs/types/components/{molecules → organisms}/FormField/index.d.ts +1 -1
 - package/dist/cjs/types/components/organisms/Level/index.d.ts +4 -0
 - package/dist/cjs/types/components/organisms/Panel/index.d.ts +4 -0
 - package/dist/cjs/types/components/organisms/index.d.ts +3 -0
 - package/dist/cjs/types/functions/generators.d.ts +4 -0
 - package/dist/cjs/types/functions/parsers.d.ts +1 -4
 - package/dist/cjs/types/functions/tests/generators.test.d.ts +1 -0
 - package/dist/cjs/types/index.d.ts +1 -0
 - package/dist/cjs/types/interfaces/atomProps.d.ts +8 -2
 - package/dist/cjs/types/interfaces/moleculeProps.d.ts +30 -15
 - package/dist/cjs/types/interfaces/organismProps.d.ts +39 -0
 - package/dist/cjs/types/types/domTypes.d.ts +3 -2
 - package/dist/esm/index.js +119 -35
 - 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/PanelBlock/index.d.ts +4 -0
 - package/dist/esm/types/components/molecules/PanelTabs/index.d.ts +4 -0
 - package/dist/esm/types/components/molecules/index.d.ts +3 -1
 - package/dist/esm/types/components/{molecules → organisms}/FormField/index.d.ts +1 -1
 - package/dist/esm/types/components/organisms/Level/index.d.ts +4 -0
 - package/dist/esm/types/components/organisms/Panel/index.d.ts +4 -0
 - package/dist/esm/types/components/organisms/index.d.ts +3 -0
 - package/dist/esm/types/functions/generators.d.ts +4 -0
 - package/dist/esm/types/functions/parsers.d.ts +1 -4
 - package/dist/esm/types/functions/tests/generators.test.d.ts +1 -0
 - package/dist/esm/types/index.d.ts +1 -0
 - package/dist/esm/types/interfaces/atomProps.d.ts +8 -2
 - package/dist/esm/types/interfaces/moleculeProps.d.ts +30 -15
 - package/dist/esm/types/interfaces/organismProps.d.ts +39 -0
 - package/dist/esm/types/types/domTypes.d.ts +3 -2
 - package/dist/index.d.ts +87 -17
 - package/package.json +11 -11
 
| 
         @@ -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';
         
     | 
| 
         @@ -10,4 +10,6 @@ export { default as Pagination } from './Pagination'; 
     | 
|
| 
       10 
10 
     | 
    
         
             
            export { default as Modal } from './Modal';
         
     | 
| 
       11 
11 
     | 
    
         
             
            export { default as Tabs } from './Tabs';
         
     | 
| 
       12 
12 
     | 
    
         
             
            export { default as InputControl } from './InputControl';
         
     | 
| 
       13 
     | 
    
         
            -
            export { default as  
     | 
| 
      
 13 
     | 
    
         
            +
            export { default as PanelBlock } from './PanelBlock';
         
     | 
| 
      
 14 
     | 
    
         
            +
            export { default as PanelTabs } from './PanelTabs';
         
     | 
| 
      
 15 
     | 
    
         
            +
            export { default as LevelItem } from '../molecules/LevelItem';
         
     | 
| 
         @@ -0,0 +1,4 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import { GenericObjectProps } from '../interfaces/commonProps';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import { CreateObjArrayProps } from '../interfaces/functionProps';
         
     | 
| 
      
 3 
     | 
    
         
            +
            export declare const generateKey: (max?: number, min?: number) => string;
         
     | 
| 
      
 4 
     | 
    
         
            +
            export declare const createObjArray: <ImportedProps>({ numberOfItems, externalParser }?: CreateObjArrayProps) => ImportedProps[] | GenericObjectProps[];
         
     | 
| 
         @@ -1,5 +1,4 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            import {  
     | 
| 
       2 
     | 
    
         
            -
            import { CreateObjArrayProps, ParseTestIdProps } from '../interfaces/functionProps';
         
     | 
| 
      
 1 
     | 
    
         
            +
            import { ParseTestIdProps } from '../interfaces/functionProps';
         
     | 
| 
       3 
2 
     | 
    
         
             
            /**
         
     | 
| 
       4 
3 
     | 
    
         
             
             * @param { Array<string | null> } _classes `Required`. Array of classNames on `string` (or `null`) values
         
     | 
| 
       5 
4 
     | 
    
         
             
             * @returns { string } A single string product of merge all classNames, separated by spaces
         
     | 
| 
         @@ -13,5 +12,3 @@ export declare const parseClasses: (_classes: Array<string | null | undefined>) 
     | 
|
| 
       13 
12 
     | 
    
         
             
             * @returns A single string product of merge all classNames, separated by `separator` value
         
     | 
| 
       14 
13 
     | 
    
         
             
             */
         
     | 
| 
       15 
14 
     | 
    
         
             
            export declare const parseTestId: (config: ParseTestIdProps) => string;
         
     | 
| 
       16 
     | 
    
         
            -
            export declare const parseKey: (max?: number, min?: number) => string;
         
     | 
| 
       17 
     | 
    
         
            -
            export declare const createObjArray: <ImportedProps>({ numberOfItems, externalParser }?: CreateObjArrayProps) => ImportedProps[] | GenericObjectProps[];
         
     | 
| 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            export {};
         
     | 
| 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            import React from 'react';
         
     | 
| 
       2 
2 
     | 
    
         
             
            import { ElementProps, ComposedElementProps, ClickeableProps } from './commonProps';
         
     | 
| 
       3 
3 
     | 
    
         
             
            import { basicColorType, columnOffsetType, columnSizeType, fixedImageSizeType, iconColorModeType, elementSizeType, sizeWithoutNormalType, textColorType, titleSizeType, rightLeftAlignType } from '../types/styleTypes';
         
     | 
| 
       4 
     | 
    
         
            -
            import { DropdownItemType,  
     | 
| 
      
 4 
     | 
    
         
            +
            import { DropdownItemType, InputType } from '../types/domTypes';
         
     | 
| 
       5 
5 
     | 
    
         
             
            export interface ColumnProps extends ElementProps, React.ComponentPropsWithoutRef<'section'> {
         
     | 
| 
       6 
6 
     | 
    
         
             
                /** `Attribute` Reffers to the component or array of components that will be shown inside the column */
         
     | 
| 
       7 
7 
     | 
    
         
             
                children?: string | React.ReactElement | React.ReactElement[];
         
     | 
| 
         @@ -124,7 +124,7 @@ export interface IconProps extends ComposedElementProps { 
     | 
|
| 
       124 
124 
     | 
    
         
             
            }
         
     | 
| 
       125 
125 
     | 
    
         
             
            export interface InputProps extends ElementProps, ClickeableProps {
         
     | 
| 
       126 
126 
     | 
    
         
             
                /** `Attribute` `Required` What type of input will be used */
         
     | 
| 
       127 
     | 
    
         
            -
                type:  
     | 
| 
      
 127 
     | 
    
         
            +
                type: InputType;
         
     | 
| 
       128 
128 
     | 
    
         
             
                /** `Attribute` The value that will be shown on the input */
         
     | 
| 
       129 
129 
     | 
    
         
             
                text?: string;
         
     | 
| 
       130 
130 
     | 
    
         
             
                /** `Attribute` The text that will be shown if the user does not type any value */
         
     | 
| 
         @@ -271,3 +271,9 @@ export interface TabItemProps extends ComposedElementProps, ClickeableProps { 
     | 
|
| 
       271 
271 
     | 
    
         
             
                /** `Styling` Used for `Tabs` styling purpose only. Will mark the tab as the one selected among its group */
         
     | 
| 
       272 
272 
     | 
    
         
             
                isActive?: boolean;
         
     | 
| 
       273 
273 
     | 
    
         
             
            }
         
     | 
| 
      
 274 
     | 
    
         
            +
            export interface LevelHeaderProps extends ElementProps {
         
     | 
| 
      
 275 
     | 
    
         
            +
                /** `Attribute` `Required` A title in smaller size */
         
     | 
| 
      
 276 
     | 
    
         
            +
                header: string;
         
     | 
| 
      
 277 
     | 
    
         
            +
                /** `Attribute` `Required` Main value (numeric or text) to be shown in a bigger scale below `header` */
         
     | 
| 
      
 278 
     | 
    
         
            +
                value: string | number;
         
     | 
| 
      
 279 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -2,6 +2,7 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            import { ClickeableProps, ComposedElementProps, ElementProps } from './commonProps';
         
     | 
| 
       3 
3 
     | 
    
         
             
            import { BreadcrumbItemProps, ButtonProps, ColumnProps, DeleteProps, DropdownItemProps, IconProps, InputProps, MenuItemProps, PaginationItemProps, TabItemProps } from './atomProps';
         
     | 
| 
       4 
4 
     | 
    
         
             
            import { basicColorType, rightCenteredAlignType, breadcrumbSeparatorType, columnGapType, sizeWithoutNormalType, tabsFormatType } from '../types/styleTypes';
         
     | 
| 
      
 5 
     | 
    
         
            +
            import { PanelBlockItemType } from '../types/domTypes';
         
     | 
| 
       5 
6 
     | 
    
         
             
            export interface ButtonGroupProps extends ElementProps {
         
     | 
| 
       6 
7 
     | 
    
         
             
                /** `Atribute` `Required` Array of `Button` objects that will be shown */
         
     | 
| 
       7 
8 
     | 
    
         
             
                buttonList: ButtonProps[];
         
     | 
| 
         @@ -143,20 +144,34 @@ export interface InputControlProps extends ElementProps { 
     | 
|
| 
       143 
144 
     | 
    
         
             
                /** `Styling` Used for `FormField` styling purpose only. Will strech the input and its container in full-width */
         
     | 
| 
       144 
145 
     | 
    
         
             
                isExpanded?: boolean;
         
     | 
| 
       145 
146 
     | 
    
         
             
            }
         
     | 
| 
       146 
     | 
    
         
            -
            export interface  
     | 
| 
       147 
     | 
    
         
            -
                 
     | 
| 
       148 
     | 
    
         
            -
                 
     | 
| 
       149 
     | 
    
         
            -
             
     | 
| 
       150 
     | 
    
         
            -
             
     | 
| 
       151 
     | 
    
         
            -
             
     | 
| 
       152 
     | 
    
         
            -
             
     | 
| 
       153 
     | 
    
         
            -
                /** `Attribute` `Required`  
     | 
| 
       154 
     | 
    
         
            -
                 
     | 
| 
       155 
     | 
    
         
            -
                /** `Attribute`  
     | 
| 
       156 
     | 
    
         
            -
                 
     | 
| 
       157 
     | 
    
         
            -
                /** `Styling` Will  
     | 
| 
       158 
     | 
    
         
            -
                 
     | 
| 
       159 
     | 
    
         
            -
             
     | 
| 
       160 
     | 
    
         
            -
             
     | 
| 
      
 147 
     | 
    
         
            +
            export interface PanelBlockItemProps {
         
     | 
| 
      
 148 
     | 
    
         
            +
                /** `Attribute` `Required` Indicates to component's parser which type of component will be rendered based on its option */
         
     | 
| 
      
 149 
     | 
    
         
            +
                type: PanelBlockItemType;
         
     | 
| 
      
 150 
     | 
    
         
            +
                /** `Attribute` `Required` The component properties that will configure that specific instance */
         
     | 
| 
      
 151 
     | 
    
         
            +
                props: InputControlProps | IconProps | ButtonProps;
         
     | 
| 
      
 152 
     | 
    
         
            +
            }
         
     | 
| 
      
 153 
     | 
    
         
            +
            export interface PanelBlockProps extends ComposedElementProps, ClickeableProps {
         
     | 
| 
      
 154 
     | 
    
         
            +
                /** `Attribute` `Required` Configuration object with a type and a set of props based on the available components that could be rendered in each `PanelBlock` */
         
     | 
| 
      
 155 
     | 
    
         
            +
                config: PanelBlockItemProps;
         
     | 
| 
      
 156 
     | 
    
         
            +
                /** `Attribute` Usable when config's U is `icon` only. It will display a text next to mentioned icon (for user purposes) */
         
     | 
| 
      
 157 
     | 
    
         
            +
                blockText?: string;
         
     | 
| 
      
 158 
     | 
    
         
            +
                /** `Styling` Used for `PanelBlock` styling purpose only. Will mark its rendered component as the one selected among its group */
         
     | 
| 
      
 159 
     | 
    
         
            +
                isActive?: boolean;
         
     | 
| 
      
 160 
     | 
    
         
            +
            }
         
     | 
| 
      
 161 
     | 
    
         
            +
            export interface PanelTabItem extends ClickeableProps {
         
     | 
| 
      
 162 
     | 
    
         
            +
                /** `Attribute` `Required` Will show the text to the user in shape of tab */
         
     | 
| 
      
 163 
     | 
    
         
            +
                text: string;
         
     | 
| 
      
 164 
     | 
    
         
            +
                /** `Styling` Used for `PanelTab` styling purpose only. Will mark its rendered component as the one selected among its group */
         
     | 
| 
      
 165 
     | 
    
         
            +
                isActive?: boolean;
         
     | 
| 
      
 166 
     | 
    
         
            +
            }
         
     | 
| 
      
 167 
     | 
    
         
            +
            export interface PanelTabsProps extends ElementProps {
         
     | 
| 
      
 168 
     | 
    
         
            +
                /** `Attribute` `Required` A list of configuration objects that will render a set of tabs */
         
     | 
| 
      
 169 
     | 
    
         
            +
                tabList: PanelTabItem[];
         
     | 
| 
      
 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: string | React.ReactElement;
         
     | 
| 
      
 174 
     | 
    
         
            +
                /** `Styling` Centers item's content horizontally */
         
     | 
| 
      
 175 
     | 
    
         
            +
                isCentered?: boolean;
         
     | 
| 
       161 
176 
     | 
    
         
             
            }
         
     | 
| 
       162 
177 
     | 
    
         
             
            export {};
         
     | 
| 
         @@ -0,0 +1,39 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import { ElementProps } from './commonProps';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import { InputControlProps, LevelItemProps, PanelBlockProps, PanelTabsProps } from './moleculeProps';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import { basicColorType } from '../types/styleTypes';
         
     | 
| 
      
 4 
     | 
    
         
            +
            export interface FormFieldHelperProps {
         
     | 
| 
      
 5 
     | 
    
         
            +
                text?: string;
         
     | 
| 
      
 6 
     | 
    
         
            +
                color?: basicColorType;
         
     | 
| 
      
 7 
     | 
    
         
            +
            }
         
     | 
| 
      
 8 
     | 
    
         
            +
            export interface FormFieldProps extends ElementProps {
         
     | 
| 
      
 9 
     | 
    
         
            +
                /** `Attribute` `Required` Single or multiple `InputControlProps` config objects which will be wrapped around the `FormField` */
         
     | 
| 
      
 10 
     | 
    
         
            +
                inputControlConfig: InputControlProps | InputControlProps[];
         
     | 
| 
      
 11 
     | 
    
         
            +
                /** `Attribute` Sets a custom text before the wrapped input to indicate its usage */
         
     | 
| 
      
 12 
     | 
    
         
            +
                labelText?: string;
         
     | 
| 
      
 13 
     | 
    
         
            +
                /** `Attribute` Adds a helper text below the wrapped paragraph to provide context information */
         
     | 
| 
      
 14 
     | 
    
         
            +
                helperConfig?: FormFieldHelperProps;
         
     | 
| 
      
 15 
     | 
    
         
            +
                /** `Styling` Will adjust field's sections (label, input/s and helper) in horizontal position */
         
     | 
| 
      
 16 
     | 
    
         
            +
                isHorizontal?: boolean;
         
     | 
| 
      
 17 
     | 
    
         
            +
                /** `Styling` Will group the list of inputs in a same wrapper (useful for several inputs with same usage, as a complex address) */
         
     | 
| 
      
 18 
     | 
    
         
            +
                isGrouped?: boolean;
         
     | 
| 
      
 19 
     | 
    
         
            +
            }
         
     | 
| 
      
 20 
     | 
    
         
            +
            export interface PanelProps extends ElementProps {
         
     | 
| 
      
 21 
     | 
    
         
            +
                /** `Attribute` `Required` Will display Panel's header text */
         
     | 
| 
      
 22 
     | 
    
         
            +
                headerText: string;
         
     | 
| 
      
 23 
     | 
    
         
            +
                /** `Attribute` A configuration object that will render a set of tabs based on `PanelTab` component */
         
     | 
| 
      
 24 
     | 
    
         
            +
                panelTabs?: PanelTabsProps;
         
     | 
| 
      
 25 
     | 
    
         
            +
                /** `Attribute` `Required` A list of configuration objects that will render a list of block with different components, based on `PanelBlockList` component */
         
     | 
| 
      
 26 
     | 
    
         
            +
                blockList: PanelBlockProps[];
         
     | 
| 
      
 27 
     | 
    
         
            +
                /** `Styling` Color based on bulma's text color tokens */
         
     | 
| 
      
 28 
     | 
    
         
            +
                color?: basicColorType;
         
     | 
| 
      
 29 
     | 
    
         
            +
            }
         
     | 
| 
      
 30 
     | 
    
         
            +
            export interface LevelProps extends ElementProps {
         
     | 
| 
      
 31 
     | 
    
         
            +
                /** `Attribute` A list of `LevelItem` configurations that will displayed in Level's left side */
         
     | 
| 
      
 32 
     | 
    
         
            +
                leftSide?: LevelItemProps[];
         
     | 
| 
      
 33 
     | 
    
         
            +
                /** `Attribute` A list of `LevelItem` configurations that will displayed in Level's center */
         
     | 
| 
      
 34 
     | 
    
         
            +
                centerSide?: LevelItemProps[];
         
     | 
| 
      
 35 
     | 
    
         
            +
                /** `Attribute` A list of `LevelItem` configurations that will displayed in Level's right side */
         
     | 
| 
      
 36 
     | 
    
         
            +
                rightSide?: LevelItemProps[];
         
     | 
| 
      
 37 
     | 
    
         
            +
                /** `Styling` Will adjust the navigator on horizontal on mobile as well */
         
     | 
| 
      
 38 
     | 
    
         
            +
                isMobile?: boolean;
         
     | 
| 
      
 39 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -1,3 +1,4 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            export type  
     | 
| 
       2 
     | 
    
         
            -
            export type  
     | 
| 
      
 1 
     | 
    
         
            +
            export type ButtonType = 'submit' | 'reset' | 'button';
         
     | 
| 
      
 2 
     | 
    
         
            +
            export type InputType = 'text' | 'password' | 'email' | 'tel';
         
     | 
| 
       3 
3 
     | 
    
         
             
            export type DropdownItemType = 'item' | 'link' | 'divider';
         
     | 
| 
      
 4 
     | 
    
         
            +
            export type PanelBlockItemType = 'icon' | 'control' | 'button';
         
     | 
    
        package/dist/index.d.ts
    CHANGED
    
    | 
         @@ -40,8 +40,9 @@ type rightLeftAlignType = Exclude<elementAlignType, 'is-centered'>; 
     | 
|
| 
       40 
40 
     | 
    
         
             
            type breadcrumbSeparatorType = 'has-arrow-separator' | 'has-bullet-separator' | 'has-dot-separator' | 'has-succeeds-separator';
         
     | 
| 
       41 
41 
     | 
    
         
             
            type tabsFormatType = 'is-boxed' | 'is-toggle';
         
     | 
| 
       42 
42 
     | 
    
         | 
| 
       43 
     | 
    
         
            -
            type  
     | 
| 
      
 43 
     | 
    
         
            +
            type InputType = 'text' | 'password' | 'email' | 'tel';
         
     | 
| 
       44 
44 
     | 
    
         
             
            type DropdownItemType = 'item' | 'link' | 'divider';
         
     | 
| 
      
 45 
     | 
    
         
            +
            type PanelBlockItemType = 'icon' | 'control' | 'button';
         
     | 
| 
       45 
46 
     | 
    
         | 
| 
       46 
47 
     | 
    
         
             
            interface ColumnProps extends ElementProps, React$1.ComponentPropsWithoutRef<'section'> {
         
     | 
| 
       47 
48 
     | 
    
         
             
                /** `Attribute` Reffers to the component or array of components that will be shown inside the column */
         
     | 
| 
         @@ -165,7 +166,7 @@ interface IconProps extends ComposedElementProps { 
     | 
|
| 
       165 
166 
     | 
    
         
             
            }
         
     | 
| 
       166 
167 
     | 
    
         
             
            interface InputProps extends ElementProps, ClickeableProps {
         
     | 
| 
       167 
168 
     | 
    
         
             
                /** `Attribute` `Required` What type of input will be used */
         
     | 
| 
       168 
     | 
    
         
            -
                type:  
     | 
| 
      
 169 
     | 
    
         
            +
                type: InputType;
         
     | 
| 
       169 
170 
     | 
    
         
             
                /** `Attribute` The value that will be shown on the input */
         
     | 
| 
       170 
171 
     | 
    
         
             
                text?: string;
         
     | 
| 
       171 
172 
     | 
    
         
             
                /** `Attribute` The text that will be shown if the user does not type any value */
         
     | 
| 
         @@ -312,6 +313,12 @@ interface TabItemProps extends ComposedElementProps, ClickeableProps { 
     | 
|
| 
       312 
313 
     | 
    
         
             
                /** `Styling` Used for `Tabs` styling purpose only. Will mark the tab as the one selected among its group */
         
     | 
| 
       313 
314 
     | 
    
         
             
                isActive?: boolean;
         
     | 
| 
       314 
315 
     | 
    
         
             
            }
         
     | 
| 
      
 316 
     | 
    
         
            +
            interface LevelHeaderProps extends ElementProps {
         
     | 
| 
      
 317 
     | 
    
         
            +
                /** `Attribute` `Required` A title in smaller size */
         
     | 
| 
      
 318 
     | 
    
         
            +
                header: string;
         
     | 
| 
      
 319 
     | 
    
         
            +
                /** `Attribute` `Required` Main value (numeric or text) to be shown in a bigger scale below `header` */
         
     | 
| 
      
 320 
     | 
    
         
            +
                value: string | number;
         
     | 
| 
      
 321 
     | 
    
         
            +
            }
         
     | 
| 
       315 
322 
     | 
    
         | 
| 
       316 
323 
     | 
    
         
             
            declare const Button: React$1.FC<ButtonProps>;
         
     | 
| 
       317 
324 
     | 
    
         | 
| 
         @@ -357,6 +364,8 @@ declare const PaginationItem: React$1.FC<PaginationItemProps>; 
     | 
|
| 
       357 
364 
     | 
    
         | 
| 
       358 
365 
     | 
    
         
             
            declare const TabItem: React$1.FC<TabItemProps>;
         
     | 
| 
       359 
366 
     | 
    
         | 
| 
      
 367 
     | 
    
         
            +
            declare const LevelHeader: React$1.FC<LevelHeaderProps>;
         
     | 
| 
      
 368 
     | 
    
         
            +
             
     | 
| 
       360 
369 
     | 
    
         
             
            interface ButtonGroupProps extends ElementProps {
         
     | 
| 
       361 
370 
     | 
    
         
             
                /** `Atribute` `Required` Array of `Button` objects that will be shown */
         
     | 
| 
       362 
371 
     | 
    
         
             
                buttonList: ButtonProps[];
         
     | 
| 
         @@ -498,21 +507,35 @@ interface InputControlProps extends ElementProps { 
     | 
|
| 
       498 
507 
     | 
    
         
             
                /** `Styling` Used for `FormField` styling purpose only. Will strech the input and its container in full-width */
         
     | 
| 
       499 
508 
     | 
    
         
             
                isExpanded?: boolean;
         
     | 
| 
       500 
509 
     | 
    
         
             
            }
         
     | 
| 
       501 
     | 
    
         
            -
            interface  
     | 
| 
       502 
     | 
    
         
            -
                 
     | 
| 
       503 
     | 
    
         
            -
                 
     | 
| 
      
 510 
     | 
    
         
            +
            interface PanelBlockItemProps {
         
     | 
| 
      
 511 
     | 
    
         
            +
                /** `Attribute` `Required` Indicates to component's parser which type of component will be rendered based on its option */
         
     | 
| 
      
 512 
     | 
    
         
            +
                type: PanelBlockItemType;
         
     | 
| 
      
 513 
     | 
    
         
            +
                /** `Attribute` `Required` The component properties that will configure that specific instance */
         
     | 
| 
      
 514 
     | 
    
         
            +
                props: InputControlProps | IconProps | ButtonProps;
         
     | 
| 
      
 515 
     | 
    
         
            +
            }
         
     | 
| 
      
 516 
     | 
    
         
            +
            interface PanelBlockProps extends ComposedElementProps, ClickeableProps {
         
     | 
| 
      
 517 
     | 
    
         
            +
                /** `Attribute` `Required` Configuration object with a type and a set of props based on the available components that could be rendered in each `PanelBlock` */
         
     | 
| 
      
 518 
     | 
    
         
            +
                config: PanelBlockItemProps;
         
     | 
| 
      
 519 
     | 
    
         
            +
                /** `Attribute` Usable when config's U is `icon` only. It will display a text next to mentioned icon (for user purposes) */
         
     | 
| 
      
 520 
     | 
    
         
            +
                blockText?: string;
         
     | 
| 
      
 521 
     | 
    
         
            +
                /** `Styling` Used for `PanelBlock` styling purpose only. Will mark its rendered component as the one selected among its group */
         
     | 
| 
      
 522 
     | 
    
         
            +
                isActive?: boolean;
         
     | 
| 
       504 
523 
     | 
    
         
             
            }
         
     | 
| 
       505 
     | 
    
         
            -
            interface  
     | 
| 
       506 
     | 
    
         
            -
                /** `Attribute`  
     | 
| 
       507 
     | 
    
         
            -
                 
     | 
| 
       508 
     | 
    
         
            -
                /** ` 
     | 
| 
       509 
     | 
    
         
            -
                 
     | 
| 
       510 
     | 
    
         
            -
             
     | 
| 
       511 
     | 
    
         
            -
             
     | 
| 
       512 
     | 
    
         
            -
                /** ` 
     | 
| 
       513 
     | 
    
         
            -
                 
     | 
| 
       514 
     | 
    
         
            -
             
     | 
| 
       515 
     | 
    
         
            -
             
     | 
| 
      
 524 
     | 
    
         
            +
            interface PanelTabItem extends ClickeableProps {
         
     | 
| 
      
 525 
     | 
    
         
            +
                /** `Attribute` `Required` Will show the text to the user in shape of tab */
         
     | 
| 
      
 526 
     | 
    
         
            +
                text: string;
         
     | 
| 
      
 527 
     | 
    
         
            +
                /** `Styling` Used for `PanelTab` styling purpose only. Will mark its rendered component as the one selected among its group */
         
     | 
| 
      
 528 
     | 
    
         
            +
                isActive?: boolean;
         
     | 
| 
      
 529 
     | 
    
         
            +
            }
         
     | 
| 
      
 530 
     | 
    
         
            +
            interface PanelTabsProps extends ElementProps {
         
     | 
| 
      
 531 
     | 
    
         
            +
                /** `Attribute` `Required` A list of configuration objects that will render a set of tabs */
         
     | 
| 
      
 532 
     | 
    
         
            +
                tabList: PanelTabItem[];
         
     | 
| 
      
 533 
     | 
    
         
            +
            }
         
     | 
| 
      
 534 
     | 
    
         
            +
            interface LevelItemProps extends ElementProps {
         
     | 
| 
      
 535 
     | 
    
         
            +
                /** `Attribute` `Required` Reffers to the component or string content that will be shown inside the level */
         
     | 
| 
      
 536 
     | 
    
         
            +
                content: string | React.ReactElement;
         
     | 
| 
      
 537 
     | 
    
         
            +
                /** `Styling` Centers item's content horizontally */
         
     | 
| 
      
 538 
     | 
    
         
            +
                isCentered?: boolean;
         
     | 
| 
       516 
539 
     | 
    
         
             
            }
         
     | 
| 
       517 
540 
     | 
    
         | 
| 
       518 
541 
     | 
    
         
             
            declare const ButtonGroup: React$1.FC<ButtonGroupProps>;
         
     | 
| 
         @@ -539,6 +562,53 @@ declare const Tabs: React$1.FC<TabsProps>; 
     | 
|
| 
       539 
562 
     | 
    
         | 
| 
       540 
563 
     | 
    
         
             
            declare const InputControl: React$1.FC<InputControlProps>;
         
     | 
| 
       541 
564 
     | 
    
         | 
| 
      
 565 
     | 
    
         
            +
            declare const PanelBlock: React$1.FC<PanelBlockProps>;
         
     | 
| 
      
 566 
     | 
    
         
            +
             
     | 
| 
      
 567 
     | 
    
         
            +
            declare const PanelTabs: React$1.FC<PanelTabsProps>;
         
     | 
| 
      
 568 
     | 
    
         
            +
             
     | 
| 
      
 569 
     | 
    
         
            +
            declare const LevelItem: React$1.FC<LevelItemProps>;
         
     | 
| 
      
 570 
     | 
    
         
            +
             
     | 
| 
      
 571 
     | 
    
         
            +
            interface FormFieldHelperProps {
         
     | 
| 
      
 572 
     | 
    
         
            +
                text?: string;
         
     | 
| 
      
 573 
     | 
    
         
            +
                color?: basicColorType;
         
     | 
| 
      
 574 
     | 
    
         
            +
            }
         
     | 
| 
      
 575 
     | 
    
         
            +
            interface FormFieldProps extends ElementProps {
         
     | 
| 
      
 576 
     | 
    
         
            +
                /** `Attribute` `Required` Single or multiple `InputControlProps` config objects which will be wrapped around the `FormField` */
         
     | 
| 
      
 577 
     | 
    
         
            +
                inputControlConfig: InputControlProps | InputControlProps[];
         
     | 
| 
      
 578 
     | 
    
         
            +
                /** `Attribute` Sets a custom text before the wrapped input to indicate its usage */
         
     | 
| 
      
 579 
     | 
    
         
            +
                labelText?: string;
         
     | 
| 
      
 580 
     | 
    
         
            +
                /** `Attribute` Adds a helper text below the wrapped paragraph to provide context information */
         
     | 
| 
      
 581 
     | 
    
         
            +
                helperConfig?: FormFieldHelperProps;
         
     | 
| 
      
 582 
     | 
    
         
            +
                /** `Styling` Will adjust field's sections (label, input/s and helper) in horizontal position */
         
     | 
| 
      
 583 
     | 
    
         
            +
                isHorizontal?: boolean;
         
     | 
| 
      
 584 
     | 
    
         
            +
                /** `Styling` Will group the list of inputs in a same wrapper (useful for several inputs with same usage, as a complex address) */
         
     | 
| 
      
 585 
     | 
    
         
            +
                isGrouped?: boolean;
         
     | 
| 
      
 586 
     | 
    
         
            +
            }
         
     | 
| 
      
 587 
     | 
    
         
            +
            interface PanelProps extends ElementProps {
         
     | 
| 
      
 588 
     | 
    
         
            +
                /** `Attribute` `Required` Will display Panel's header text */
         
     | 
| 
      
 589 
     | 
    
         
            +
                headerText: string;
         
     | 
| 
      
 590 
     | 
    
         
            +
                /** `Attribute` A configuration object that will render a set of tabs based on `PanelTab` component */
         
     | 
| 
      
 591 
     | 
    
         
            +
                panelTabs?: PanelTabsProps;
         
     | 
| 
      
 592 
     | 
    
         
            +
                /** `Attribute` `Required` A list of configuration objects that will render a list of block with different components, based on `PanelBlockList` component */
         
     | 
| 
      
 593 
     | 
    
         
            +
                blockList: PanelBlockProps[];
         
     | 
| 
      
 594 
     | 
    
         
            +
                /** `Styling` Color based on bulma's text color tokens */
         
     | 
| 
      
 595 
     | 
    
         
            +
                color?: basicColorType;
         
     | 
| 
      
 596 
     | 
    
         
            +
            }
         
     | 
| 
      
 597 
     | 
    
         
            +
            interface LevelProps extends ElementProps {
         
     | 
| 
      
 598 
     | 
    
         
            +
                /** `Attribute` A list of `LevelItem` configurations that will displayed in Level's left side */
         
     | 
| 
      
 599 
     | 
    
         
            +
                leftSide?: LevelItemProps[];
         
     | 
| 
      
 600 
     | 
    
         
            +
                /** `Attribute` A list of `LevelItem` configurations that will displayed in Level's center */
         
     | 
| 
      
 601 
     | 
    
         
            +
                centerSide?: LevelItemProps[];
         
     | 
| 
      
 602 
     | 
    
         
            +
                /** `Attribute` A list of `LevelItem` configurations that will displayed in Level's right side */
         
     | 
| 
      
 603 
     | 
    
         
            +
                rightSide?: LevelItemProps[];
         
     | 
| 
      
 604 
     | 
    
         
            +
                /** `Styling` Will adjust the navigator on horizontal on mobile as well */
         
     | 
| 
      
 605 
     | 
    
         
            +
                isMobile?: boolean;
         
     | 
| 
      
 606 
     | 
    
         
            +
            }
         
     | 
| 
      
 607 
     | 
    
         
            +
             
     | 
| 
       542 
608 
     | 
    
         
             
            declare const FormField: React$1.FC<FormFieldProps>;
         
     | 
| 
       543 
609 
     | 
    
         | 
| 
       544 
     | 
    
         
            -
             
     | 
| 
      
 610 
     | 
    
         
            +
            declare const Panel: React$1.FC<PanelProps>;
         
     | 
| 
      
 611 
     | 
    
         
            +
             
     | 
| 
      
 612 
     | 
    
         
            +
            declare const Level: React$1.FC<LevelProps>;
         
     | 
| 
      
 613 
     | 
    
         
            +
             
     | 
| 
      
 614 
     | 
    
         
            +
            export { Block, Box, BreadcrumbItem, Breadcrumbs, Button, ButtonGroup, CheckBox as Checkbox, Column, ColumnGroup, Delete, Dropdown, DropdownItem, DropdownTrigger, File, FormField, 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 };
         
     | 
    
        package/package.json
    CHANGED
    
    | 
         @@ -1,6 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            {
         
     | 
| 
       2 
2 
     | 
    
         
             
              "name": "reactive-bulma",
         
     | 
| 
       3 
     | 
    
         
            -
              "version": "2. 
     | 
| 
      
 3 
     | 
    
         
            +
              "version": "2.13.0",
         
     | 
| 
       4 
4 
     | 
    
         
             
              "description": "A component library based on React, Bulma, Typescript and Rollup",
         
     | 
| 
       5 
5 
     | 
    
         
             
              "keywords": [
         
     | 
| 
       6 
6 
     | 
    
         
             
                "typescript",
         
     | 
| 
         @@ -67,14 +67,14 @@ 
     | 
|
| 
       67 
67 
     | 
    
         
             
                "@semantic-release/github": "^9.2.6",
         
     | 
| 
       68 
68 
     | 
    
         
             
                "@semantic-release/npm": "^11.0.2",
         
     | 
| 
       69 
69 
     | 
    
         
             
                "@semantic-release/release-notes-generator": "^12.1.0",
         
     | 
| 
       70 
     | 
    
         
            -
                "@storybook/addon-actions": "^7.6. 
     | 
| 
       71 
     | 
    
         
            -
                "@storybook/addon-essentials": "^7.6. 
     | 
| 
       72 
     | 
    
         
            -
                "@storybook/addon-interactions": "^7.6. 
     | 
| 
       73 
     | 
    
         
            -
                "@storybook/addon-links": "^7.6. 
     | 
| 
       74 
     | 
    
         
            -
                "@storybook/addon-mdx-gfm": "^7.6. 
     | 
| 
       75 
     | 
    
         
            -
                "@storybook/cli": "^7.6. 
     | 
| 
       76 
     | 
    
         
            -
                "@storybook/react": "^7.6. 
     | 
| 
       77 
     | 
    
         
            -
                "@storybook/react-webpack5": "^7.6. 
     | 
| 
      
 70 
     | 
    
         
            +
                "@storybook/addon-actions": "^7.6.10",
         
     | 
| 
      
 71 
     | 
    
         
            +
                "@storybook/addon-essentials": "^7.6.10",
         
     | 
| 
      
 72 
     | 
    
         
            +
                "@storybook/addon-interactions": "^7.6.10",
         
     | 
| 
      
 73 
     | 
    
         
            +
                "@storybook/addon-links": "^7.6.10",
         
     | 
| 
      
 74 
     | 
    
         
            +
                "@storybook/addon-mdx-gfm": "^7.6.10",
         
     | 
| 
      
 75 
     | 
    
         
            +
                "@storybook/cli": "^7.6.10",
         
     | 
| 
      
 76 
     | 
    
         
            +
                "@storybook/react": "^7.6.10",
         
     | 
| 
      
 77 
     | 
    
         
            +
                "@storybook/react-webpack5": "^7.6.10",
         
     | 
| 
       78 
78 
     | 
    
         
             
                "@storybook/testing-library": "^0.2.2",
         
     | 
| 
       79 
79 
     | 
    
         
             
                "@testing-library/jest-dom": "^6.2.0",
         
     | 
| 
       80 
80 
     | 
    
         
             
                "@testing-library/react": "^14.1.2",
         
     | 
| 
         @@ -96,14 +96,14 @@ 
     | 
|
| 
       96 
96 
     | 
    
         
             
                "lint-staged": "^15.2.0",
         
     | 
| 
       97 
97 
     | 
    
         
             
                "npm-check-updates": "^16.14.12",
         
     | 
| 
       98 
98 
     | 
    
         
             
                "postcss": "^8.4.33",
         
     | 
| 
       99 
     | 
    
         
            -
                "prettier": "^3.2. 
     | 
| 
      
 99 
     | 
    
         
            +
                "prettier": "^3.2.4",
         
     | 
| 
       100 
100 
     | 
    
         
             
                "react": "^18.2.0",
         
     | 
| 
       101 
101 
     | 
    
         
             
                "react-dom": "^18.2.0",
         
     | 
| 
       102 
102 
     | 
    
         
             
                "rollup": "^4.9.5",
         
     | 
| 
       103 
103 
     | 
    
         
             
                "rollup-plugin-dts": "^6.1.0",
         
     | 
| 
       104 
104 
     | 
    
         
             
                "rollup-plugin-postcss": "^4.0.2",
         
     | 
| 
       105 
105 
     | 
    
         
             
                "semantic-release": "^23.0.0",
         
     | 
| 
       106 
     | 
    
         
            -
                "storybook": "^7.6. 
     | 
| 
      
 106 
     | 
    
         
            +
                "storybook": "^7.6.10",
         
     | 
| 
       107 
107 
     | 
    
         
             
                "tslib": "^2.6.2",
         
     | 
| 
       108 
108 
     | 
    
         
             
                "typescript": "^5.3.3"
         
     | 
| 
       109 
109 
     | 
    
         
             
              },
         
     |