pixel-react 1.9.5 → 1.9.7
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/.yarn/install-state.gz +0 -0
- package/lib/ComponentProps/TreeNodeProps.d.ts +31 -0
- package/lib/components/ConditionalDropdown/types.d.ts +4 -3
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.d.ts +1 -0
- package/lib/components/Input/types.d.ts +2 -0
- package/lib/components/MobileSkin/MobileSkinInterface.d.ts +2 -2
- package/lib/components/MobileSkin/types.d.ts +9 -8
- package/lib/components/Select/types.d.ts +4 -0
- package/lib/components/SequentialConnectingBranch/components/DatasetTooltip/DataSetTooltip.d.ts +4 -0
- package/lib/components/SequentialConnectingBranch/components/DatasetTooltip/types.d.ts +8 -0
- package/lib/components/SequentialConnectingBranch/types.d.ts +17 -4
- package/lib/components/TableTree/Components/TableBody.d.ts +1 -1
- package/lib/components/TableTree/types.d.ts +5 -32
- package/lib/index.d.ts +46 -75
- package/lib/index.esm.js +292 -98
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +292 -98
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/getSequentialPayload/types.d.ts +6 -0
- package/lib/utils/getTreeDetails/getTreeDetails.d.ts +1 -29
- package/lib/utils/handleTreeNodeSelect/handleTreeNodeSelect.d.ts +1 -30
- package/package.json +1 -1
- package/src/ComponentProps/TreeNodeProps.ts +31 -0
- package/src/assets/Themes/BaseTheme.scss +3 -0
- package/src/assets/Themes/DarkTheme.scss +3 -0
- package/src/assets/styles/_colors.scss +5 -0
- package/src/components/ConditionalDropdown/ConditionalDropdown.tsx +149 -30
- package/src/components/ConditionalDropdown/types.ts +27 -25
- package/src/components/Drawer/Drawer.scss +1 -1
- package/src/components/Drawer/Drawer.tsx +1 -1
- package/src/components/Editor/VariableDropdown.tsx +1 -1
- package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +39 -8
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +0 -4
- package/src/components/Input/Input.tsx +4 -0
- package/src/components/Input/types.ts +5 -0
- package/src/components/InputWithDropdown/InputWithDropdown.tsx +1 -0
- package/src/components/MobileSkin/MobileSkin.scss +0 -8
- package/src/components/MobileSkin/MobileSkin.stories.tsx +10 -9
- package/src/components/MobileSkin/MobileSkin.tsx +16 -31
- package/src/components/MobileSkin/MobileSkinInterface.ts +2 -2
- package/src/components/MobileSkin/types.ts +9 -8
- package/src/components/RadioButton/RadioButton.tsx +5 -1
- package/src/components/Select/Select.stories.tsx +2 -0
- package/src/components/Select/Select.tsx +4 -1
- package/src/components/Select/components/Dropdown.tsx +1 -2
- package/src/components/Select/types.ts +6 -1
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.tsx +35 -28
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.tsx +58 -14
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +45 -20
- package/src/components/SequentialConnectingBranch/components/DatasetTooltip/DataSetTooltip.tsx +41 -0
- package/src/components/SequentialConnectingBranch/components/DatasetTooltip/types.ts +9 -0
- package/src/components/SequentialConnectingBranch/types.ts +19 -5
- package/src/components/TableTree/Components/TableBody.tsx +22 -20
- package/src/components/TableTree/Components/TableCell.tsx +18 -6
- package/src/components/TableTree/Components/TableHead.tsx +5 -3
- package/src/components/TableTree/Components/TableRow.tsx +0 -3
- package/src/components/TableTree/TableTree.scss +88 -51
- package/src/components/TableTree/TableTree.stories.tsx +8 -7
- package/src/components/TableTree/TableTree.tsx +7 -2
- package/src/components/TableTree/data.ts +1 -1
- package/src/components/TableTree/types.ts +5 -33
- package/src/components/Tabs/Tabs.scss +1 -1
- package/src/index.ts +7 -0
- package/src/utils/getSequentialPayload/getSequentialPayload.stories.tsx +1 -0
- package/src/utils/getSequentialPayload/getSequentialPayload.ts +1 -1
- package/src/utils/getSequentialPayload/types.ts +6 -0
- package/src/utils/getTreeDetails/getTreeDetails.ts +1 -29
- package/src/utils/handleTreeNodeSelect/handleTreeNodeSelect.ts +1 -30
    
        package/.yarn/install-state.gz
    CHANGED
    
    | Binary file | 
| @@ -0,0 +1,31 @@ | |
| 1 | 
            +
            export type TreeNodeProps = {
         | 
| 2 | 
            +
                createdBy: string;
         | 
| 3 | 
            +
                modifiedBy: string;
         | 
| 4 | 
            +
                createdByUname: string;
         | 
| 5 | 
            +
                modifiedByUname: string;
         | 
| 6 | 
            +
                createdOn: string;
         | 
| 7 | 
            +
                modifiedOn: string;
         | 
| 8 | 
            +
                state: string;
         | 
| 9 | 
            +
                path: string;
         | 
| 10 | 
            +
                searchKey: string;
         | 
| 11 | 
            +
                key: string;
         | 
| 12 | 
            +
                name: string;
         | 
| 13 | 
            +
                projectId: string;
         | 
| 14 | 
            +
                hierarchy: number;
         | 
| 15 | 
            +
                executionOrder: number;
         | 
| 16 | 
            +
                subContainerCount: number;
         | 
| 17 | 
            +
                resourceCount: number;
         | 
| 18 | 
            +
                totalSubContainerCount: number;
         | 
| 19 | 
            +
                totalResourceCount: number;
         | 
| 20 | 
            +
                totalProjectElementCount: number;
         | 
| 21 | 
            +
                totalSharedElementCount: number;
         | 
| 22 | 
            +
                container: boolean;
         | 
| 23 | 
            +
                localDelete: boolean;
         | 
| 24 | 
            +
                defaultEntity: boolean;
         | 
| 25 | 
            +
                lastResource: boolean;
         | 
| 26 | 
            +
                platform?: string;
         | 
| 27 | 
            +
                parentId?: string;
         | 
| 28 | 
            +
                parentName?: string;
         | 
| 29 | 
            +
                checked?: boolean | 'partial';
         | 
| 30 | 
            +
                expand?: boolean;
         | 
| 31 | 
            +
            };
         | 
| @@ -1,4 +1,4 @@ | |
| 1 | 
            -
            import { dropdownPositionType } from  | 
| 1 | 
            +
            import { dropdownPositionType } from '../Editor/types';
         | 
| 2 2 | 
             
            export type dynamicObject = {
         | 
| 3 3 | 
             
                [key: string]: any;
         | 
| 4 4 | 
             
            };
         | 
| @@ -124,11 +124,12 @@ export interface ConditionalDropdownProps { | |
| 124 124 | 
             
                 * a boolean prop to show add variable icon or not.
         | 
| 125 125 | 
             
                 */
         | 
| 126 126 | 
             
                showAddVariableIcon?: boolean;
         | 
| 127 | 
            +
                formProps?: Record<string, any>;
         | 
| 127 128 | 
             
            }
         | 
| 128 129 | 
             
            export interface OptionsDropdownProps {
         | 
| 129 130 | 
             
                /**
         | 
| 130 | 
            -
             | 
| 131 | 
            -
             | 
| 131 | 
            +
                 * Position whether absoloute or relative
         | 
| 132 | 
            +
                 */
         | 
| 132 133 | 
             
                position: 'absolute' | 'relative';
         | 
| 133 134 | 
             
                /**
         | 
| 134 135 | 
             
                 * Dropdown width
         | 
| @@ -18,6 +18,7 @@ export declare function dragEndFormatePainter(currentData: Matrix.Matrix<Types.C | |
| 18 18 | 
             
            export declare function dragEndAutoFill(currentData: Matrix.Matrix<Types.CellBase<any>>, selectedRange: PointRange | null, cellValue: Types.CellBase, activeCell: Point.Point | null): Matrix.Matrix<Types.CellBase<any>>;
         | 
| 19 19 | 
             
            export declare function edit(state: Types.StoreState): Types.StoreState;
         | 
| 20 20 | 
             
            export declare function clear(state: Types.StoreState): Types.StoreState;
         | 
| 21 | 
            +
            export declare function clearEditMode(state: Types.StoreState): Types.StoreState;
         | 
| 21 22 | 
             
            export declare function blur(state: Types.StoreState): Types.StoreState;
         | 
| 22 23 | 
             
            export declare function view(state: Types.StoreState): Types.StoreState;
         | 
| 23 24 | 
             
            export declare function commit(changes: Types.CommitChanges): Partial<Types.StoreState>;
         | 
| @@ -54,6 +54,8 @@ export interface InputProps { | |
| 54 54 | 
             
                onKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
         | 
| 55 55 | 
             
                onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
         | 
| 56 56 | 
             
                onFocus?: (event: React.FocusEvent<HTMLInputElement>) => void;
         | 
| 57 | 
            +
                onClick?: (event: React.MouseEvent<HTMLInputElement>) => void;
         | 
| 58 | 
            +
                onKeyUp?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
         | 
| 57 59 | 
             
                /**
         | 
| 58 60 | 
             
                 * id to select the input field uniquely
         | 
| 59 61 | 
             
                 */
         | 
| @@ -5,8 +5,8 @@ interface NavBarIcon { | |
| 5 5 | 
             
            export interface MobileSkinProps {
         | 
| 6 6 | 
             
                children: React.ReactNode | string;
         | 
| 7 7 | 
             
                orientation?: 'portrait' | 'landscape';
         | 
| 8 | 
            -
                 | 
| 9 | 
            -
                navBarIcons | 
| 8 | 
            +
                UtilityBar?: boolean;
         | 
| 9 | 
            +
                navBarIcons?: NavBarIcon[];
         | 
| 10 10 | 
             
                mobileHeight?: number;
         | 
| 11 11 | 
             
                mobileWidth?: number;
         | 
| 12 12 | 
             
            }
         | 
| @@ -1,7 +1,8 @@ | |
| 1 1 | 
             
            export interface iconDetails {
         | 
| 2 2 | 
             
                /**
         | 
| 3 | 
            -
                 * details of each icon
         | 
| 3 | 
            +
                 * details of each icon in which name must be there
         | 
| 4 4 | 
             
                 */
         | 
| 5 | 
            +
                name: string;
         | 
| 5 6 | 
             
                [key: string]: any;
         | 
| 6 7 | 
             
            }
         | 
| 7 8 | 
             
            export interface MobileSkinProps {
         | 
| @@ -12,11 +13,7 @@ export interface MobileSkinProps { | |
| 12 13 | 
             
                /**
         | 
| 13 14 | 
             
                 *    Portrait or landScape View of the Mobile
         | 
| 14 15 | 
             
                 */
         | 
| 15 | 
            -
                orientation:  | 
| 16 | 
            -
                /**
         | 
| 17 | 
            -
                 * type either it will be ios or android
         | 
| 18 | 
            -
                 */
         | 
| 19 | 
            -
                type: string;
         | 
| 16 | 
            +
                orientation: 'portrait' | 'landscape';
         | 
| 20 17 | 
             
                /**
         | 
| 21 18 | 
             
                 *   height of the MobileSkin
         | 
| 22 19 | 
             
                 */
         | 
| @@ -26,7 +23,11 @@ export interface MobileSkinProps { | |
| 26 23 | 
             
                 */
         | 
| 27 24 | 
             
                mobileWidth?: number;
         | 
| 28 25 | 
             
                /**
         | 
| 29 | 
            -
                 *  | 
| 26 | 
            +
                 * if you need the lower navbar below the mobileSkin you pass this prop
         | 
| 27 | 
            +
                 */
         | 
| 28 | 
            +
                UtilityBar?: boolean;
         | 
| 29 | 
            +
                /**
         | 
| 30 | 
            +
                 * takes the icons details like icon name , title, onClick event, height , width, etc but name is must
         | 
| 30 31 | 
             
                 */
         | 
| 31 | 
            -
                navbarIcons | 
| 32 | 
            +
                navbarIcons?: Array<iconDetails>;
         | 
| 32 33 | 
             
            }
         | 
| @@ -32,6 +32,10 @@ export interface SelectProps { | |
| 32 32 | 
             
                 * Provide the boolean value if tooltip is reuired or not
         | 
| 33 33 | 
             
                 */
         | 
| 34 34 | 
             
                showToolTip?: boolean;
         | 
| 35 | 
            +
                /**
         | 
| 36 | 
            +
                 * Provide the background color for the select label on the hover state
         | 
| 37 | 
            +
                 */
         | 
| 38 | 
            +
                labelBackgroundColor?: string;
         | 
| 35 39 | 
             
            }
         | 
| 36 40 | 
             
            export interface DropdownPosition {
         | 
| 37 41 | 
             
                positionX: number;
         | 
| @@ -1,22 +1,27 @@ | |
| 1 1 | 
             
            import { Option } from '../Select/types';
         | 
| 2 2 | 
             
            export interface SequentialConnectingBranchProps {
         | 
| 3 | 
            -
                machineInstances | 
| 3 | 
            +
                machineInstances: ExecutionContext[] | {}[];
         | 
| 4 4 | 
             
                machineColumnWidth?: number;
         | 
| 5 5 | 
             
                machineColumnCount?: number;
         | 
| 6 6 | 
             
                selectedMachine?: Option;
         | 
| 7 7 | 
             
                machineOptionsList?: Option[];
         | 
| 8 8 | 
             
                onHandleSelect?: (option: Option) => void;
         | 
| 9 9 | 
             
                onAddBrowserInstance?: (modalId: string) => void;
         | 
| 10 | 
            -
                onUpdateAddBrowserInstance | 
| 10 | 
            +
                onUpdateAddBrowserInstance?: (modalId: string, machineInstance: ExecutionContext) => void;
         | 
| 11 11 | 
             
                onDeleteBrowserInstance?: (id: string, runCount: number) => void;
         | 
| 12 12 | 
             
                onAddRunBrowserInstance?: (machineInstanceId: string) => void;
         | 
| 13 13 | 
             
                onDeleteMachineInstance?: () => void;
         | 
| 14 | 
            -
                onUpdateDataSetList | 
| 15 | 
            -
                dataSetValues | 
| 14 | 
            +
                onUpdateDataSetList?: (id: string, dataSetObject?: dataSetValues, isInstance?: boolean, noOfRuns?: number, machineInstanceId?: string) => void;
         | 
| 15 | 
            +
                dataSetValues?: dataSetValues;
         | 
| 16 16 | 
             
                addInstanceLabel?: string;
         | 
| 17 17 | 
             
                scriptType?: string;
         | 
| 18 18 | 
             
                projectType?: string;
         | 
| 19 19 | 
             
                readOnly?: boolean;
         | 
| 20 | 
            +
                integrationInstance?: IntegrationInstance;
         | 
| 21 | 
            +
            }
         | 
| 22 | 
            +
            export interface IntegrationInstance {
         | 
| 23 | 
            +
                usename: string;
         | 
| 24 | 
            +
                accessKey: string;
         | 
| 20 25 | 
             
            }
         | 
| 21 26 | 
             
            export interface MachineInfo {
         | 
| 22 27 | 
             
                osName: string;
         | 
| @@ -32,6 +37,7 @@ export interface ExecutionContext { | |
| 32 37 | 
             
                machineInstanceId: string;
         | 
| 33 38 | 
             
                clientId: string;
         | 
| 34 39 | 
             
                numberOfRuns: number;
         | 
| 40 | 
            +
                runCount: number;
         | 
| 35 41 | 
             
                executionEnv?: 'Local';
         | 
| 36 42 | 
             
                browserName?: 'Local' | 'mac' | 'android' | 'Google Chrome';
         | 
| 37 43 | 
             
                browserVersion: string;
         | 
| @@ -40,11 +46,18 @@ export interface ExecutionContext { | |
| 40 46 | 
             
                deviceInfo: DeviceInfo[];
         | 
| 41 47 | 
             
                headless: boolean;
         | 
| 42 48 | 
             
                peVariableSetId: string;
         | 
| 49 | 
            +
                testDataSetName: string;
         | 
| 50 | 
            +
                globalVariableSetName: string;
         | 
| 51 | 
            +
                peVariableSetName: string;
         | 
| 43 52 | 
             
                globalVariableSetId: string;
         | 
| 44 53 | 
             
                testDataSetId: string;
         | 
| 54 | 
            +
                integrationInstance: IntegrationInstance;
         | 
| 45 55 | 
             
            }
         | 
| 46 56 | 
             
            export interface dataSetValues {
         | 
| 47 57 | 
             
                peVariableSetId: string;
         | 
| 48 58 | 
             
                globalVariableSetId: string;
         | 
| 49 59 | 
             
                testDataSetId: string;
         | 
| 60 | 
            +
                testDataSetName: string;
         | 
| 61 | 
            +
                globalVariableSetName: string;
         | 
| 62 | 
            +
                peVariableSetName: string;
         | 
| 50 63 | 
             
            }
         | 
| @@ -1,4 +1,4 @@ | |
| 1 1 | 
             
            import React from 'react';
         | 
| 2 2 | 
             
            import { TableBodyProps } from '../types';
         | 
| 3 | 
            -
            declare const TableBody: React.MemoExoticComponent<({ flattenedTreeData, columnsData, selected, select, onRowClick, onToggleExpand, onCheckBoxChange, }: TableBodyProps) => import("react/jsx-runtime").JSX.Element>;
         | 
| 3 | 
            +
            declare const TableBody: React.MemoExoticComponent<({ flattenedTreeData, columnsData, selected, select, onRowClick, onToggleExpand, onCheckBoxChange, }: TableBodyProps) => import("react/jsx-runtime").JSX.Element | null>;
         | 
| 4 4 | 
             
            export default TableBody;
         | 
| @@ -1,33 +1,5 @@ | |
| 1 1 | 
             
            import { ReactNode } from 'react';
         | 
| 2 | 
            -
             | 
| 3 | 
            -
                createdBy: string;
         | 
| 4 | 
            -
                modifiedBy: string;
         | 
| 5 | 
            -
                createdByUname: string;
         | 
| 6 | 
            -
                modifiedByUname: string;
         | 
| 7 | 
            -
                createdOn: string;
         | 
| 8 | 
            -
                modifiedOn: string;
         | 
| 9 | 
            -
                state: string;
         | 
| 10 | 
            -
                path: string;
         | 
| 11 | 
            -
                searchKey: string;
         | 
| 12 | 
            -
                key: string;
         | 
| 13 | 
            -
                name: string;
         | 
| 14 | 
            -
                projectId: string;
         | 
| 15 | 
            -
                hierarchy: number;
         | 
| 16 | 
            -
                executionOrder: number;
         | 
| 17 | 
            -
                subContainerCount: number;
         | 
| 18 | 
            -
                resourceCount: number;
         | 
| 19 | 
            -
                totalSubContainerCount: number;
         | 
| 20 | 
            -
                totalResourceCount: number;
         | 
| 21 | 
            -
                totalProjectElementCount: number;
         | 
| 22 | 
            -
                totalSharedElementCount: number;
         | 
| 23 | 
            -
                container: boolean;
         | 
| 24 | 
            -
                localDelete: boolean;
         | 
| 25 | 
            -
                defaultEntity: boolean;
         | 
| 26 | 
            -
                lastResource: boolean;
         | 
| 27 | 
            -
                platform: string;
         | 
| 28 | 
            -
                parentId?: string;
         | 
| 29 | 
            -
                parentName?: string;
         | 
| 30 | 
            -
            }
         | 
| 2 | 
            +
            import { TreeNodeProps as TreeNode } from '../../ComponentProps/TreeNodeProps';
         | 
| 31 3 | 
             
            declare type JSX = ReactNode | JSX.Element[] | string | null;
         | 
| 32 4 | 
             
            export interface TableCellProps {
         | 
| 33 5 | 
             
                col: any;
         | 
| @@ -46,7 +18,7 @@ export interface TableBodyProps { | |
| 46 18 | 
             
                selected: string[];
         | 
| 47 19 | 
             
                select: string | null;
         | 
| 48 20 | 
             
                onRowClick: (e: any, node: any) => void;
         | 
| 49 | 
            -
                onToggleExpand: (node:  | 
| 21 | 
            +
                onToggleExpand: (node: TreeNode, _index: number) => void;
         | 
| 50 22 | 
             
                onCheckBoxChange: (e: any, node: string[] | any) => void;
         | 
| 51 23 | 
             
            }
         | 
| 52 24 | 
             
            export interface TableRowProps {
         | 
| @@ -55,7 +27,7 @@ export interface TableRowProps { | |
| 55 27 | 
             
                selected: string[];
         | 
| 56 28 | 
             
                select: string | null;
         | 
| 57 29 | 
             
                onRowClick: (e: any, node: any) => void;
         | 
| 58 | 
            -
                onToggleExpand: (node:  | 
| 30 | 
            +
                onToggleExpand: (node: TreeNode) => void;
         | 
| 59 31 | 
             
                onCheckBoxChange: (e: any, node: string[] | any) => void;
         | 
| 60 32 | 
             
            }
         | 
| 61 33 | 
             
            export interface Column {
         | 
| @@ -76,8 +48,9 @@ export interface TreeTableProps { | |
| 76 48 | 
             
                select?: 'radio' | 'checkbox' | 'none';
         | 
| 77 49 | 
             
                onChange?: (e: any, node: string[] | any) => void;
         | 
| 78 50 | 
             
                onClick?: (e: React.MouseEvent<HTMLDivElement>, row: TreeNode) => void;
         | 
| 79 | 
            -
                onExpand?: ( | 
| 51 | 
            +
                onExpand?: (node: TreeNode, _index: number) => void;
         | 
| 80 52 | 
             
                loadMore?: (_direction?: string) => void;
         | 
| 53 | 
            +
                tableBorder?: string;
         | 
| 81 54 | 
             
                height?: number | string;
         | 
| 82 55 | 
             
            }
         | 
| 83 56 | 
             
            export {};
         | 
    
        package/lib/index.d.ts
    CHANGED
    
    | @@ -680,6 +680,8 @@ interface InputProps { | |
| 680 680 | 
             
                onKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
         | 
| 681 681 | 
             
                onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
         | 
| 682 682 | 
             
                onFocus?: (event: React.FocusEvent<HTMLInputElement>) => void;
         | 
| 683 | 
            +
                onClick?: (event: React.MouseEvent<HTMLInputElement>) => void;
         | 
| 684 | 
            +
                onKeyUp?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
         | 
| 683 685 | 
             
                /**
         | 
| 684 686 | 
             
                 * id to select the input field uniquely
         | 
| 685 687 | 
             
                 */
         | 
| @@ -798,6 +800,10 @@ interface SelectProps$1 { | |
| 798 800 | 
             
                 * Provide the boolean value if tooltip is reuired or not
         | 
| 799 801 | 
             
                 */
         | 
| 800 802 | 
             
                showToolTip?: boolean;
         | 
| 803 | 
            +
                /**
         | 
| 804 | 
            +
                 * Provide the background color for the select label on the hover state
         | 
| 805 | 
            +
                 */
         | 
| 806 | 
            +
                labelBackgroundColor?: string;
         | 
| 801 807 | 
             
            }
         | 
| 802 808 | 
             
            type OptionValue = any;
         | 
| 803 809 | 
             
            interface Option$2 {
         | 
| @@ -1711,7 +1717,7 @@ interface MiniEditModalProps { | |
| 1711 1717 |  | 
| 1712 1718 | 
             
            declare const MiniModal: React$1.ForwardRefExoticComponent<MiniEditModalProps & React$1.RefAttributes<HTMLDivElement>>;
         | 
| 1713 1719 |  | 
| 1714 | 
            -
             | 
| 1720 | 
            +
            type TreeNodeProps = {
         | 
| 1715 1721 | 
             
                createdBy: string;
         | 
| 1716 1722 | 
             
                modifiedBy: string;
         | 
| 1717 1723 | 
             
                createdByUname: string;
         | 
| @@ -1736,10 +1742,13 @@ interface TreeNode$2 { | |
| 1736 1742 | 
             
                localDelete: boolean;
         | 
| 1737 1743 | 
             
                defaultEntity: boolean;
         | 
| 1738 1744 | 
             
                lastResource: boolean;
         | 
| 1739 | 
            -
                platform | 
| 1745 | 
            +
                platform?: string;
         | 
| 1740 1746 | 
             
                parentId?: string;
         | 
| 1741 1747 | 
             
                parentName?: string;
         | 
| 1742 | 
            -
             | 
| 1748 | 
            +
                checked?: boolean | 'partial';
         | 
| 1749 | 
            +
                expand?: boolean;
         | 
| 1750 | 
            +
            };
         | 
| 1751 | 
            +
             | 
| 1743 1752 | 
             
            declare type JSX$1 = ReactNode | JSX$1.Element[] | string | null;
         | 
| 1744 1753 | 
             
            interface Column {
         | 
| 1745 1754 | 
             
                name: string;
         | 
| @@ -1758,9 +1767,10 @@ interface TreeTableProps { | |
| 1758 1767 | 
             
                selected?: string[];
         | 
| 1759 1768 | 
             
                select?: 'radio' | 'checkbox' | 'none';
         | 
| 1760 1769 | 
             
                onChange?: (e: any, node: string[] | any) => void;
         | 
| 1761 | 
            -
                onClick?: (e: React.MouseEvent<HTMLDivElement>, row:  | 
| 1762 | 
            -
                onExpand?: ( | 
| 1770 | 
            +
                onClick?: (e: React.MouseEvent<HTMLDivElement>, row: TreeNodeProps) => void;
         | 
| 1771 | 
            +
                onExpand?: (node: TreeNodeProps, _index: number) => void;
         | 
| 1763 1772 | 
             
                loadMore?: (_direction?: string) => void;
         | 
| 1773 | 
            +
                tableBorder?: string;
         | 
| 1764 1774 | 
             
                height?: number | string;
         | 
| 1765 1775 | 
             
            }
         | 
| 1766 1776 |  | 
| @@ -2313,23 +2323,28 @@ declare const MachineInputField: { | |
| 2313 2323 | 
             
            };
         | 
| 2314 2324 |  | 
| 2315 2325 | 
             
            interface SequentialConnectingBranchProps {
         | 
| 2316 | 
            -
                machineInstances | 
| 2326 | 
            +
                machineInstances: ExecutionContext[] | {}[];
         | 
| 2317 2327 | 
             
                machineColumnWidth?: number;
         | 
| 2318 2328 | 
             
                machineColumnCount?: number;
         | 
| 2319 2329 | 
             
                selectedMachine?: Option$2;
         | 
| 2320 2330 | 
             
                machineOptionsList?: Option$2[];
         | 
| 2321 2331 | 
             
                onHandleSelect?: (option: Option$2) => void;
         | 
| 2322 2332 | 
             
                onAddBrowserInstance?: (modalId: string) => void;
         | 
| 2323 | 
            -
                onUpdateAddBrowserInstance | 
| 2333 | 
            +
                onUpdateAddBrowserInstance?: (modalId: string, machineInstance: ExecutionContext) => void;
         | 
| 2324 2334 | 
             
                onDeleteBrowserInstance?: (id: string, runCount: number) => void;
         | 
| 2325 2335 | 
             
                onAddRunBrowserInstance?: (machineInstanceId: string) => void;
         | 
| 2326 2336 | 
             
                onDeleteMachineInstance?: () => void;
         | 
| 2327 | 
            -
                onUpdateDataSetList | 
| 2328 | 
            -
                dataSetValues | 
| 2337 | 
            +
                onUpdateDataSetList?: (id: string, dataSetObject?: dataSetValues, isInstance?: boolean, noOfRuns?: number, machineInstanceId?: string) => void;
         | 
| 2338 | 
            +
                dataSetValues?: dataSetValues;
         | 
| 2329 2339 | 
             
                addInstanceLabel?: string;
         | 
| 2330 2340 | 
             
                scriptType?: string;
         | 
| 2331 2341 | 
             
                projectType?: string;
         | 
| 2332 2342 | 
             
                readOnly?: boolean;
         | 
| 2343 | 
            +
                integrationInstance?: IntegrationInstance;
         | 
| 2344 | 
            +
            }
         | 
| 2345 | 
            +
            interface IntegrationInstance {
         | 
| 2346 | 
            +
                usename: string;
         | 
| 2347 | 
            +
                accessKey: string;
         | 
| 2333 2348 | 
             
            }
         | 
| 2334 2349 | 
             
            interface MachineInfo {
         | 
| 2335 2350 | 
             
                osName: string;
         | 
| @@ -2345,6 +2360,7 @@ interface ExecutionContext { | |
| 2345 2360 | 
             
                machineInstanceId: string;
         | 
| 2346 2361 | 
             
                clientId: string;
         | 
| 2347 2362 | 
             
                numberOfRuns: number;
         | 
| 2363 | 
            +
                runCount: number;
         | 
| 2348 2364 | 
             
                executionEnv?: 'Local';
         | 
| 2349 2365 | 
             
                browserName?: 'Local' | 'mac' | 'android' | 'Google Chrome';
         | 
| 2350 2366 | 
             
                browserVersion: string;
         | 
| @@ -2353,13 +2369,20 @@ interface ExecutionContext { | |
| 2353 2369 | 
             
                deviceInfo: DeviceInfo[];
         | 
| 2354 2370 | 
             
                headless: boolean;
         | 
| 2355 2371 | 
             
                peVariableSetId: string;
         | 
| 2372 | 
            +
                testDataSetName: string;
         | 
| 2373 | 
            +
                globalVariableSetName: string;
         | 
| 2374 | 
            +
                peVariableSetName: string;
         | 
| 2356 2375 | 
             
                globalVariableSetId: string;
         | 
| 2357 2376 | 
             
                testDataSetId: string;
         | 
| 2377 | 
            +
                integrationInstance: IntegrationInstance;
         | 
| 2358 2378 | 
             
            }
         | 
| 2359 2379 | 
             
            interface dataSetValues {
         | 
| 2360 2380 | 
             
                peVariableSetId: string;
         | 
| 2361 2381 | 
             
                globalVariableSetId: string;
         | 
| 2362 2382 | 
             
                testDataSetId: string;
         | 
| 2383 | 
            +
                testDataSetName: string;
         | 
| 2384 | 
            +
                globalVariableSetName: string;
         | 
| 2385 | 
            +
                peVariableSetName: string;
         | 
| 2363 2386 | 
             
            }
         | 
| 2364 2387 |  | 
| 2365 2388 | 
             
            declare const SequentialConnectingBranch: FC<SequentialConnectingBranchProps>;
         | 
| @@ -2953,8 +2976,8 @@ interface NavBarIcon { | |
| 2953 2976 | 
             
            interface MobileSkinProps {
         | 
| 2954 2977 | 
             
                children: React.ReactNode | string;
         | 
| 2955 2978 | 
             
                orientation?: 'portrait' | 'landscape';
         | 
| 2956 | 
            -
                 | 
| 2957 | 
            -
                navBarIcons | 
| 2979 | 
            +
                UtilityBar?: boolean;
         | 
| 2980 | 
            +
                navBarIcons?: NavBarIcon[];
         | 
| 2958 2981 | 
             
                mobileHeight?: number;
         | 
| 2959 2982 | 
             
                mobileWidth?: number;
         | 
| 2960 2983 | 
             
            }
         | 
| @@ -3069,8 +3092,11 @@ interface OperatingSystemInfo { | |
| 3069 3092 | 
             
            }
         | 
| 3070 3093 | 
             
            interface RunLevelExecutionDataSet {
         | 
| 3071 3094 | 
             
                peVariableSetId: string;
         | 
| 3095 | 
            +
                peVariableSetName: string;
         | 
| 3072 3096 | 
             
                globalVariableSetId: string;
         | 
| 3097 | 
            +
                globalVariableSetName: string;
         | 
| 3073 3098 | 
             
                testDataSetId: string;
         | 
| 3099 | 
            +
                testDataSetName: string;
         | 
| 3074 3100 | 
             
            }
         | 
| 3075 3101 | 
             
            interface MachineExecutionInstance {
         | 
| 3076 3102 | 
             
                id: string;
         | 
| @@ -3089,6 +3115,9 @@ interface SequentialMachineInstance extends Omit<MachineExecutionInstance, 'runL | |
| 3089 3115 | 
             
                peVariableSetId: string;
         | 
| 3090 3116 | 
             
                globalVariableSetId: string;
         | 
| 3091 3117 | 
             
                testDataSetId: string;
         | 
| 3118 | 
            +
                peVariableSetName: string;
         | 
| 3119 | 
            +
                globalVariableSetName: string;
         | 
| 3120 | 
            +
                testDataSetName: string;
         | 
| 3092 3121 | 
             
            }
         | 
| 3093 3122 |  | 
| 3094 3123 | 
             
            declare const getSequentialPayload: (data: MachineExecutionInstance[]) => SequentialMachineInstance[];
         | 
| @@ -3272,6 +3301,7 @@ interface ConditionalDropdownProps { | |
| 3272 3301 | 
             
                 * a boolean prop to show add variable icon or not.
         | 
| 3273 3302 | 
             
                 */
         | 
| 3274 3303 | 
             
                showAddVariableIcon?: boolean;
         | 
| 3304 | 
            +
                formProps?: Record<string, any>;
         | 
| 3275 3305 | 
             
            }
         | 
| 3276 3306 |  | 
| 3277 3307 | 
             
            declare const ConditionalDropdown: React$1.ForwardRefExoticComponent<ConditionalDropdownProps & React$1.RefAttributes<HTMLInputElement>>;
         | 
| @@ -3306,76 +3336,17 @@ declare const useKeyboardActions: (actions: KeyboardAction[]) => void; | |
| 3306 3336 |  | 
| 3307 3337 | 
             
            declare const rearrangeDragItem: (initialArray: any[], oldIndex: number, newIndex: number) => any[];
         | 
| 3308 3338 |  | 
| 3309 | 
            -
            interface TreeNode$1 {
         | 
| 3310 | 
            -
                createdBy: string;
         | 
| 3311 | 
            -
                modifiedBy: string;
         | 
| 3312 | 
            -
                createdByUname: string;
         | 
| 3313 | 
            -
                modifiedByUname: string;
         | 
| 3314 | 
            -
                createdOn: string;
         | 
| 3315 | 
            -
                modifiedOn: string;
         | 
| 3316 | 
            -
                state: string;
         | 
| 3317 | 
            -
                path: string;
         | 
| 3318 | 
            -
                searchKey: string;
         | 
| 3319 | 
            -
                key: string;
         | 
| 3320 | 
            -
                name: string;
         | 
| 3321 | 
            -
                projectId: string;
         | 
| 3322 | 
            -
                hierarchy: number;
         | 
| 3323 | 
            -
                executionOrder: number;
         | 
| 3324 | 
            -
                subContainerCount: number;
         | 
| 3325 | 
            -
                resourceCount: number;
         | 
| 3326 | 
            -
                totalSubContainerCount: number;
         | 
| 3327 | 
            -
                totalResourceCount: number;
         | 
| 3328 | 
            -
                totalProjectElementCount: number;
         | 
| 3329 | 
            -
                totalSharedElementCount: number;
         | 
| 3330 | 
            -
                container: boolean;
         | 
| 3331 | 
            -
                localDelete: boolean;
         | 
| 3332 | 
            -
                defaultEntity: boolean;
         | 
| 3333 | 
            -
                lastResource: boolean;
         | 
| 3334 | 
            -
                platform: string;
         | 
| 3335 | 
            -
                parentId?: string;
         | 
| 3336 | 
            -
                parentName?: string;
         | 
| 3337 | 
            -
            }
         | 
| 3338 3339 | 
             
            interface TreeDetailsResult {
         | 
| 3339 | 
            -
                treeDataList:  | 
| 3340 | 
            +
                treeDataList: TreeNodeProps[];
         | 
| 3340 3341 | 
             
                next: boolean;
         | 
| 3341 3342 | 
             
                previous: boolean;
         | 
| 3342 3343 | 
             
                startId: string;
         | 
| 3343 3344 | 
             
                endId: string;
         | 
| 3344 | 
            -
                root?:  | 
| 3345 | 
            +
                root?: TreeNodeProps;
         | 
| 3345 3346 | 
             
            }
         | 
| 3346 | 
            -
            declare const getTreeDetails: (action: "above" | "below" | "expand" | "collapse" | "start", oldData:  | 
| 3347 | 
            +
            declare const getTreeDetails: (action: "above" | "below" | "expand" | "collapse" | "start", oldData: TreeNodeProps[], newData: TreeNodeProps[], index?: number) => TreeDetailsResult;
         | 
| 3347 3348 |  | 
| 3348 | 
            -
             | 
| 3349 | 
            -
                createdBy: string;
         | 
| 3350 | 
            -
                modifiedBy: string;
         | 
| 3351 | 
            -
                createdByUname: string;
         | 
| 3352 | 
            -
                modifiedByUname: string;
         | 
| 3353 | 
            -
                createdOn: string;
         | 
| 3354 | 
            -
                modifiedOn: string;
         | 
| 3355 | 
            -
                state: string;
         | 
| 3356 | 
            -
                path: string;
         | 
| 3357 | 
            -
                searchKey: string;
         | 
| 3358 | 
            -
                key: string;
         | 
| 3359 | 
            -
                name: string;
         | 
| 3360 | 
            -
                projectId: string;
         | 
| 3361 | 
            -
                hierarchy: number;
         | 
| 3362 | 
            -
                executionOrder: number;
         | 
| 3363 | 
            -
                subContainerCount: number;
         | 
| 3364 | 
            -
                resourceCount: number;
         | 
| 3365 | 
            -
                totalSubContainerCount: number;
         | 
| 3366 | 
            -
                totalResourceCount: number;
         | 
| 3367 | 
            -
                totalProjectElementCount: number;
         | 
| 3368 | 
            -
                totalSharedElementCount: number;
         | 
| 3369 | 
            -
                container: boolean;
         | 
| 3370 | 
            -
                localDelete: boolean;
         | 
| 3371 | 
            -
                defaultEntity: boolean;
         | 
| 3372 | 
            -
                lastResource: boolean;
         | 
| 3373 | 
            -
                platform?: string;
         | 
| 3374 | 
            -
                parentId?: string;
         | 
| 3375 | 
            -
                parentName?: string;
         | 
| 3376 | 
            -
                checked?: boolean | 'partial';
         | 
| 3377 | 
            -
            };
         | 
| 3378 | 
            -
            declare const handleTreeNodeSect: (data: TreeNode[], key: string, isChecked: boolean | "partial") => TreeNode[];
         | 
| 3349 | 
            +
            declare const handleTreeNodeSect: (data: TreeNodeProps[], key: string, isChecked: boolean | "partial") => TreeNodeProps[];
         | 
| 3379 3350 |  | 
| 3380 3351 | 
             
            declare const EMAIL_REGEX: RegExp;
         | 
| 3381 3352 | 
             
            declare const URL_REGEX: RegExp;
         | 
| @@ -3436,4 +3407,4 @@ declare const PARAMETER_ALPHANUMERIC_REGEX: RegExp; | |
| 3436 3407 | 
             
            declare function saveToIndexedDB(key: string, value: string): Promise<void>;
         | 
| 3437 3408 | 
             
            declare function getFromIndexedDB(key: string): Promise<string | null>;
         | 
| 3438 3409 |  | 
| 3439 | 
            -
            export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, Accordion, AddButton as AddResourceButton, AllProjectsDropdown, AppHeader, AttachImage, AttachmentButton, Avatar, BASE64_REGEX, BINARY_NUMBER_REGEX, BarChart, Button, CREDIT_CARD_REGEX, CURRENCY_GENERIC_REGEX, Checkbox, Chip, ChooseFile, Col, Comments, ConditionalDropdown, ConnectingBranch, Container, CreateVariableSlider, DATE_REGEX, DECIMAL_NUMBER_REGEX, DRIVING_LICENSE_REGEX, DashboardDonutChart, CustomDatePicker as DatePicker, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, EMAIL_REGEX, EditTextField, Editor, ExcelFile as Excel, ExpandableMenu, FILE_EXTENSION_REGEX, FILE_NAME_REGEX, FieldSet, FileDropzone, FilePreview, ForwardedForms as Form, formatString as FormatString, GSTIN_REGEX, HEXADECIMAL_NUMBER_REGEX, HEX_COLOR_REGEX, HSL_COLOR_REGEX, HTML_ATTRIBUTE_REGEX, HTML_TAG_REGEX, HighlightText, INDIAN_CURRENCY_REGEX, INDIAN_PASSPORT_REGEX, INDIAN_PHONE_REGEX, INDIAN_PIN_CODE_REGEX, INTERNATIONAL_PHONE_REGEX, IPV4_REGEX, IPV6_REGEX, Icon, IconButton, IconRadialChart, IconRadioGroup, Input, InputWithDropdown, LINKEDIN_PROFILE_REGEX, LabelEditTextField, LineChart, MAC_ADDRESS_REGEX, MEMORY_VALIDATION_REGEX, MachineInputField, MenuOption, MiniModal, MobileSkin, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, NLP_DESCRIPTION_REGEX, NUMBERS_ONLY_REGEX, NUMBER_REGEX, PAN_CARD_REGEX, PARAMETER_ALPHANUMERIC_REGEX, PASSWORD_COMPLEX_REGEX, PASSWORD_SIMPLE_REGEX, PHONE_REGEX, POSTAL_CODE_REGEX, Paper, PhoneInputField, PieChart, PopUpModal, ProgressBar, RGB_COLOR_REGEX, ROMAN_NUMERALS_REGEX, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, SSN_REGEX, STEP_GROUP_NAME_REGEX, ScriptSwitchButton, Search, Select, SequentialConnectingBranch, StateDropdown, StatusButton, StatusCard, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, _default as TableTree, TableWithAccordion, Tabs, Textarea as TextArea, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, Typography, UNIT_REGEX, URL_REGEX, USERNAME_REGEX, USERNAME_SPECIAL_REGEX, US_ZIP_CODE_REGEX, UUID_REGEX, VEHICLE_REGISTRATION_REGEX, VariableDropdown, VariableInput, WHITESPACE_REGEX, capitalize, checkEmpty, compareArrays, compareObjects, debounce, ffid, findAndInsert, getEncryptedData, getExtension, getExtensionWithPeriod, getFromIndexedDB, getSequentialPayload, getTreeDetails, handleTreeNodeSect, hasDuplicateFile, rearrangeDragItem, saveFileFromBlob, saveToIndexedDB, throttle, toast, truncateText, useClickOutside, useFileDropzone, useKeyboardActions, useTheme };
         | 
| 3410 | 
            +
            export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, Accordion, AddButton as AddResourceButton, AllProjectsDropdown, AppHeader, AttachImage, AttachmentButton, Avatar, BASE64_REGEX, BINARY_NUMBER_REGEX, BarChart, Button, CREDIT_CARD_REGEX, CURRENCY_GENERIC_REGEX, Checkbox, Chip, ChooseFile, Col, Comments, ConditionalDropdown, ConnectingBranch, Container, CreateVariableSlider, DATE_REGEX, DECIMAL_NUMBER_REGEX, DRIVING_LICENSE_REGEX, DashboardDonutChart, CustomDatePicker as DatePicker, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, EMAIL_REGEX, EditTextField, Editor, ExcelFile as Excel, ExpandableMenu, FILE_EXTENSION_REGEX, FILE_NAME_REGEX, FieldSet, FileDropzone, FilePreview, ForwardedForms as Form, formatString as FormatString, GSTIN_REGEX, HEXADECIMAL_NUMBER_REGEX, HEX_COLOR_REGEX, HSL_COLOR_REGEX, HTML_ATTRIBUTE_REGEX, HTML_TAG_REGEX, HighlightText, INDIAN_CURRENCY_REGEX, INDIAN_PASSPORT_REGEX, INDIAN_PHONE_REGEX, INDIAN_PIN_CODE_REGEX, INTERNATIONAL_PHONE_REGEX, IPV4_REGEX, IPV6_REGEX, Icon, IconButton, IconRadialChart, IconRadioGroup, Input, InputWithDropdown, LINKEDIN_PROFILE_REGEX, LabelEditTextField, LineChart, MAC_ADDRESS_REGEX, MEMORY_VALIDATION_REGEX, MachineInputField, MenuOption, MiniModal, MobileSkin, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, NLP_DESCRIPTION_REGEX, NUMBERS_ONLY_REGEX, NUMBER_REGEX, PAN_CARD_REGEX, PARAMETER_ALPHANUMERIC_REGEX, PASSWORD_COMPLEX_REGEX, PASSWORD_SIMPLE_REGEX, PHONE_REGEX, POSTAL_CODE_REGEX, Paper, PhoneInputField, PieChart, PopUpModal, ProgressBar, RGB_COLOR_REGEX, ROMAN_NUMERALS_REGEX, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, SSN_REGEX, STEP_GROUP_NAME_REGEX, ScriptSwitchButton, Search, Select, SequentialConnectingBranch, StateDropdown, StatusButton, StatusCard, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, _default as TableTree, TableWithAccordion, Tabs, Textarea as TextArea, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, type TreeNodeProps, Typography, UNIT_REGEX, URL_REGEX, USERNAME_REGEX, USERNAME_SPECIAL_REGEX, US_ZIP_CODE_REGEX, UUID_REGEX, VEHICLE_REGISTRATION_REGEX, VariableDropdown, VariableInput, WHITESPACE_REGEX, capitalize, checkEmpty, compareArrays, compareObjects, debounce, ffid, findAndInsert, getEncryptedData, getExtension, getExtensionWithPeriod, getFromIndexedDB, getSequentialPayload, getTreeDetails, handleTreeNodeSect, hasDuplicateFile, rearrangeDragItem, saveFileFromBlob, saveToIndexedDB, throttle, toast, truncateText, useClickOutside, useFileDropzone, useKeyboardActions, useTheme };
         |