pixel-react 1.10.4 → 1.10.6
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/lib/ComponentProps/TreeNodeProps.d.ts +2 -1
- package/lib/components/AddResourceButton/AddResourceButton.d.ts +4 -0
- package/lib/components/AddResourceButton/ArrowsButton/ArrowsButton.d.ts +1 -1
- package/lib/components/AddResourceButton/index.d.ts +1 -1
- package/lib/components/AddResourceButton/type.d.ts +2 -0
- package/lib/components/BrowserTabs/BrowserTabs.d.ts +5 -0
- package/lib/components/BrowserTabs/index.d.ts +1 -0
- package/lib/components/BrowserTabs/types.d.ts +64 -0
- package/lib/components/ConnectingBranch/data.d.ts +62 -64
- package/lib/components/ConnectingBranch/types.d.ts +28 -7
- package/lib/components/Excel/ExcelFile/ExcelFile.d.ts +6 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +3 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/actions.d.ts +15 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/types.d.ts +5 -0
- package/lib/components/Excel/Types.d.ts +1 -0
- package/lib/components/MenuOption/MenuOption.d.ts +1 -1
- package/lib/components/MenuOption/types.d.ts +1 -0
- package/lib/components/MiniModal/types.d.ts +2 -1
- package/lib/components/Select/components/types.d.ts +6 -1
- package/lib/components/Select/types.d.ts +17 -0
- package/lib/components/Table/Table.d.ts +1 -1
- package/lib/components/Table/Types.d.ts +1 -0
- package/lib/components/TableTree/Components/TableCell.d.ts +1 -1
- package/lib/components/TableTree/Components/TableRow.d.ts +1 -1
- package/lib/components/TableTree/types.d.ts +4 -3
- package/lib/index.d.ts +127 -13
- package/lib/index.esm.js +992 -462
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +993 -462
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/ComponentProps/TreeNodeProps.ts +2 -1
- package/src/assets/Themes/BaseTheme.scss +1 -2
- package/src/assets/Themes/DarkTheme.scss +0 -1
- package/src/assets/styles/_mixins.scss +19 -0
- package/src/components/AddResourceButton/{AddButton.scss → AddResourceButton.scss} +1 -0
- package/src/components/AddResourceButton/{AddButton.stories.tsx → AddResourceButton.stories.tsx} +4 -4
- package/src/components/AddResourceButton/{AddButton.tsx → AddResourceButton.tsx} +25 -10
- package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.scss +1 -2
- package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.tsx +16 -9
- package/src/components/AddResourceButton/index.ts +1 -1
- package/src/components/AddResourceButton/type.ts +2 -0
- package/src/components/BrowserTabs/BrowserTabs.scss +75 -0
- package/src/components/BrowserTabs/BrowserTabs.stories.tsx +366 -0
- package/src/components/BrowserTabs/BrowserTabs.tsx +128 -0
- package/src/components/BrowserTabs/index.ts +1 -0
- package/src/components/BrowserTabs/types.ts +73 -0
- package/src/components/ConnectingBranch/BranchComponents/MachineInstances.tsx +54 -39
- package/src/components/ConnectingBranch/ConnectingBranch.stories.tsx +3 -2
- package/src/components/ConnectingBranch/ConnectingBranch.tsx +28 -24
- package/src/components/ConnectingBranch/data.tsx +207 -213
- package/src/components/ConnectingBranch/types.ts +26 -17
- package/src/components/Excel/ColorBarSelector/ColorBarSelector.tsx +1 -1
- package/src/components/Excel/ExcelFile/ExcelFile.scss +4 -0
- package/src/components/Excel/ExcelFile/ExcelFile.tsx +35 -16
- package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +14 -3
- package/src/components/Excel/ExcelFile/ExcelFileComponents/DataEditor.tsx +1 -0
- package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +16 -5
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +12 -1
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +31 -5
- package/src/components/Excel/ExcelFile/ExcelFileComponents/actions.ts +30 -0
- package/src/components/Excel/ExcelFile/ExcelFileComponents/reducer.ts +47 -0
- package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +4 -4
- package/src/components/Excel/ExcelFile/ExcelFileComponents/types.ts +6 -0
- package/src/components/Excel/ExcelFile.stories.tsx +10 -2
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +11 -11
- package/src/components/Excel/Types.ts +1 -0
- package/src/components/Excel/dataConversion.ts +17 -19
- package/src/components/MenuOption/MenuOption.tsx +4 -0
- package/src/components/MenuOption/types.ts +1 -0
- package/src/components/MiniModal/MiniModal.scss +8 -0
- package/src/components/MiniModal/MiniModal.stories.tsx +60 -0
- package/src/components/MiniModal/types.ts +2 -1
- package/src/components/Select/Select.stories.tsx +43 -1
- package/src/components/Select/Select.tsx +16 -1
- package/src/components/Select/components/Dropdown.scss +41 -1
- package/src/components/Select/components/Dropdown.tsx +52 -6
- package/src/components/Select/components/types.ts +7 -2
- package/src/components/Select/types.ts +22 -0
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.tsx +8 -2
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +1 -1
- package/src/components/SequentialConnectingBranch/components/DatasetTooltip/DataSetTooltip.scss +14 -0
- package/src/components/SequentialConnectingBranch/components/DatasetTooltip/DataSetTooltip.tsx +6 -11
- package/src/components/Table/Table.stories.tsx +1 -1
- package/src/components/Table/Table.tsx +55 -4
- package/src/components/Table/Types.ts +4 -1
- package/src/components/TableTree/Components/TableCell.tsx +25 -10
- package/src/components/TableTree/Components/TableHead.tsx +5 -5
- package/src/components/TableTree/Components/TableRow.tsx +27 -24
- package/src/components/TableTree/TableTree.scss +89 -69
- package/src/components/TableTree/TableTree.stories.tsx +66 -2
- package/src/components/TableTree/types.ts +4 -3
- package/src/index.ts +2 -0
- package/src/utils/getTreeDetails/getTreeDetails.ts +8 -7
- package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +0 -6
- package/lib/StyleGuide/Typography/Typography.stories.d.ts +0 -6
- package/lib/components/Accordion/Accordion.stories.d.ts +0 -6
- package/lib/components/AddResourceButton/AddButton.stories.d.ts +0 -8
- package/lib/components/Button/Button.stories.d.ts +0 -12
- package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +0 -6
- package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +0 -6
- package/lib/components/Checkbox/Checkbox.stories.d.ts +0 -8
- package/lib/components/Chip/Chip.stories.d.ts +0 -14
- package/lib/components/DatePicker/DatePicker.stories.d.ts +0 -9
- package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +0 -6
- package/lib/components/Drawer/Drawer.stories.d.ts +0 -7
- package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +0 -7
- package/lib/components/FileDropzone/FileDropzone.stories.d.ts +0 -8
- package/lib/components/Form/Form.stories.d.ts +0 -6
- package/lib/components/GridLayout/GridLayout.stories.d.ts +0 -8
- package/lib/components/HighlightText/HighlightText.stories.d.ts +0 -6
- package/lib/components/Icon/Icon.stories.d.ts +0 -7
- package/lib/components/IconButton/IconButton.stories.d.ts +0 -6
- package/lib/components/Input/Input.stories.d.ts +0 -9
- package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +0 -9
- package/lib/components/LazyLoad/LazyLoad.stories.d.ts +0 -6
- package/lib/components/MenuOption/MenuOption.stories.d.ts +0 -15
- package/lib/components/MiniModal/MiniModal.stories.d.ts +0 -9
- package/lib/components/Modal/Modal.stories.d.ts +0 -7
- package/lib/components/MultiSelect/MultiSelect.stories.d.ts +0 -9
- package/lib/components/RadioButton/RadioButton.stories.d.ts +0 -10
- package/lib/components/RadioGroup/RadioGroup.stories.d.ts +0 -8
- package/lib/components/Search/Search.stories.d.ts +0 -6
- package/lib/components/Select/Select.stories.d.ts +0 -13
- package/lib/components/Select/components/Dropdown/Dropdown.d.ts +0 -4
- package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +0 -15
- package/lib/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.d.ts +0 -4
- package/lib/components/SequentialConnectingBranch/components/AddBrowserModal/types.d.ts +0 -3
- package/lib/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.d.ts +0 -4
- package/lib/components/SequentialConnectingBranch/components/DatasetListModal/types.d.ts +0 -3
- package/lib/components/StateDropdown/StateDropdown.stories.d.ts +0 -10
- package/lib/components/StatusButton/StatusButton.stories.d.ts +0 -14
- package/lib/components/Table/Table.stories.d.ts +0 -11
- package/lib/components/TableTree/TableTree.stories.d.ts +0 -7
- package/lib/components/Tabs/Tabs.stories.d.ts +0 -9
- package/lib/components/TextArea/Textarea.stories.d.ts +0 -9
- package/lib/components/ThemeProvider/CustomThemeProvider.d.ts +0 -8
- package/lib/components/Toast/Toast.stories.d.ts +0 -6
- package/lib/components/Toggle/Toggle.stories.d.ts +0 -12
- package/lib/components/Tooltip/Tooltip.stories.d.ts +0 -15
- package/lib/components/Typography/Typography.stories.d.ts +0 -10
- package/lib/hooks/useCustomThemeProvider.d.ts +0 -11
- package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +0 -6
- package/lib/utils/compareArrays/compareArrays.stories.d.ts +0 -6
- package/lib/utils/compareObjects/compareObjects.stories.d.ts +0 -6
- package/lib/utils/debounce/debounce.stories.d.ts +0 -6
- package/lib/utils/ffID/ffID.stories.d.ts +0 -6
- package/lib/utils/find/findAndInsert.d.ts +0 -7
- package/lib/utils/find/findAndInsert.stories.d.ts +0 -7
- package/lib/utils/getExtension/getExtension.stories.d.ts +0 -6
- package/lib/utils/throttle/throttle.stories.d.ts +0 -6
- package/lib/utils/truncateText/truncateText.stories.d.ts +0 -6
package/lib/index.d.ts
CHANGED
@@ -812,6 +812,22 @@ interface SelectProps$1 {
|
|
812
812
|
* Provide the background color for the select label on the hover state
|
813
813
|
*/
|
814
814
|
labelBackgroundColor?: string;
|
815
|
+
/**
|
816
|
+
* To close the modal in the select dropdown
|
817
|
+
*/
|
818
|
+
onCancelModal?: () => void;
|
819
|
+
/**
|
820
|
+
* To close the modal in the select dropdown
|
821
|
+
*/
|
822
|
+
onSaveModal?: () => void;
|
823
|
+
/**
|
824
|
+
* Pass the custom Jsx for the Modal
|
825
|
+
*/
|
826
|
+
modalJSXProps?: ReactNode;
|
827
|
+
/**
|
828
|
+
* Pass the recurrence boolean for the exeception cases
|
829
|
+
*/
|
830
|
+
recurrence?: boolean;
|
815
831
|
}
|
816
832
|
type OptionValue = any;
|
817
833
|
interface Option$2 {
|
@@ -1057,9 +1073,10 @@ interface MenuOptionProps {
|
|
1057
1073
|
*/
|
1058
1074
|
optionCardVariant?: 'primary';
|
1059
1075
|
targetRef?: string | React.RefObject<HTMLElement>;
|
1076
|
+
treeRowRef?: React.RefObject<any | null>;
|
1060
1077
|
}
|
1061
1078
|
|
1062
|
-
declare const MenuOption: ({ labelName, iconName, tooltipTitle, tooltipPlacement, options, onClick, onOptionClick, iconButtonSize, iconButtonBorderRadius, iconSize, variant, zIndex, dropdownPlacement, optionCardVariant, targetRef, }: MenuOptionProps) => react_jsx_runtime.JSX.Element;
|
1079
|
+
declare const MenuOption: ({ labelName, iconName, tooltipTitle, tooltipPlacement, options, onClick, onOptionClick, iconButtonSize, iconButtonBorderRadius, iconSize, variant, zIndex, dropdownPlacement, optionCardVariant, targetRef, treeRowRef, }: MenuOptionProps) => react_jsx_runtime.JSX.Element;
|
1063
1080
|
|
1064
1081
|
interface DataProps$1 {
|
1065
1082
|
/**
|
@@ -1166,9 +1183,10 @@ interface TableProps$1 {
|
|
1166
1183
|
* Drag and Drop indexes
|
1167
1184
|
*/
|
1168
1185
|
onDragEnd?: (startIndex: number, endIndex: number) => void | undefined;
|
1186
|
+
loadMore?: (_direction?: string) => void;
|
1169
1187
|
}
|
1170
1188
|
|
1171
|
-
declare const Table: ({ data, columns, headerType, withCheckbox, onSelect, allSelected, partialSelected, withFixedHeader, borderWithRadius, headerCheckboxDisabled, noDataContent, height, className, tableHeadClass, tableBodyRowClass, headerTextColor, tableDataTextColor, headerIconName, headerIconOnClick, draggable, onDragEnd, }: TableProps$1) => react_jsx_runtime.JSX.Element;
|
1189
|
+
declare const Table: ({ data, columns, headerType, withCheckbox, onSelect, allSelected, partialSelected, withFixedHeader, borderWithRadius, headerCheckboxDisabled, noDataContent, height, className, tableHeadClass, tableBodyRowClass, headerTextColor, tableDataTextColor, headerIconName, headerIconOnClick, draggable, onDragEnd, loadMore, }: TableProps$1) => react_jsx_runtime.JSX.Element;
|
1172
1190
|
|
1173
1191
|
/**
|
1174
1192
|
* Props for the Add Resource Button component.
|
@@ -1194,9 +1212,10 @@ interface AddResourceButtonProps {
|
|
1194
1212
|
}[];
|
1195
1213
|
}[];
|
1196
1214
|
zIndex?: number;
|
1215
|
+
treeRowRef?: React.RefObject<any | null>;
|
1197
1216
|
}
|
1198
1217
|
|
1199
|
-
declare const
|
1218
|
+
declare const AddResourceButton: ({ id, variant, directionalArrow, zIndex, treeRowRef, }: AddResourceButtonProps) => react_jsx_runtime.JSX.Element;
|
1200
1219
|
|
1201
1220
|
type Status = 'passed' | 'failed' | 'warning' | 'skipped' | 'Passed' | 'Failed' | 'Skipped' | 'Warning';
|
1202
1221
|
type StatusValue = {
|
@@ -1629,7 +1648,8 @@ interface MiniEditModalProps {
|
|
1629
1648
|
/**
|
1630
1649
|
* A reference to the button element that triggers the modal.
|
1631
1650
|
*/
|
1632
|
-
anchorRef
|
1651
|
+
anchorRef?: RefObject<HTMLButtonElement> | string;
|
1652
|
+
id?: string | number;
|
1633
1653
|
/**
|
1634
1654
|
* Optional properties for configuring the modal header.
|
1635
1655
|
*/
|
@@ -1757,7 +1777,8 @@ type TreeNodeProps = {
|
|
1757
1777
|
parentId?: string;
|
1758
1778
|
parentName?: string;
|
1759
1779
|
checked?: boolean | 'partial';
|
1760
|
-
|
1780
|
+
expanded?: boolean;
|
1781
|
+
expandable?: boolean;
|
1761
1782
|
sourceId?: string;
|
1762
1783
|
isNewNode?: boolean;
|
1763
1784
|
};
|
@@ -1769,7 +1790,7 @@ interface Column {
|
|
1769
1790
|
width: string;
|
1770
1791
|
isClickable?: boolean;
|
1771
1792
|
cell?: (row: any) => JSX$1;
|
1772
|
-
actions?: (row: any) => JSX$1;
|
1793
|
+
actions?: (row: any, treeRowRef?: React.RefObject<any | null>) => JSX$1;
|
1773
1794
|
isTree?: boolean;
|
1774
1795
|
defaultValue?: string;
|
1775
1796
|
defaultActions?: () => JSX$1;
|
@@ -1830,6 +1851,73 @@ interface TabsProps {
|
|
1830
1851
|
|
1831
1852
|
declare const Tabs: ({ variant, tabsData, activeTabId, onTabClick, noBorder, noPadding, }: TabsProps) => react_jsx_runtime.JSX.Element;
|
1832
1853
|
|
1854
|
+
/**
|
1855
|
+
* Represents a single tab in the BrowserTabs component.
|
1856
|
+
*/
|
1857
|
+
interface BrowserTab {
|
1858
|
+
/**
|
1859
|
+
* Unique identifier for the tab.
|
1860
|
+
*/
|
1861
|
+
id: string;
|
1862
|
+
/**
|
1863
|
+
* Label text displayed on the tab.
|
1864
|
+
*/
|
1865
|
+
label: string;
|
1866
|
+
/**
|
1867
|
+
* Optional component to be rendered when the tab is active.
|
1868
|
+
*/
|
1869
|
+
component?: JSX.Element;
|
1870
|
+
/**
|
1871
|
+
* Name of the tab icon.
|
1872
|
+
*/
|
1873
|
+
tabIcon: string;
|
1874
|
+
}
|
1875
|
+
/**
|
1876
|
+
* Props for the BrowserTabs component.
|
1877
|
+
*/
|
1878
|
+
interface BrowserTabsProps {
|
1879
|
+
/**
|
1880
|
+
* An array of tab objects containing label, icon, and an optional component.
|
1881
|
+
*/
|
1882
|
+
tabsData: BrowserTab[];
|
1883
|
+
/**
|
1884
|
+
* The ID of the currently active tab.
|
1885
|
+
*/
|
1886
|
+
activeTabId: string;
|
1887
|
+
/**
|
1888
|
+
* Function to update the active tab state when a user clicks on a tab.
|
1889
|
+
* @param id - The unique identifier of the clicked tab.
|
1890
|
+
*/
|
1891
|
+
onTabClick: (id: string) => void;
|
1892
|
+
/**
|
1893
|
+
* Function to add a new tab.
|
1894
|
+
*/
|
1895
|
+
onTabAdd?: () => void;
|
1896
|
+
/**
|
1897
|
+
* Function to close a specific tab.
|
1898
|
+
* @param index - The index of the tab to be closed.
|
1899
|
+
*/
|
1900
|
+
onTabClose?: (index: number) => void;
|
1901
|
+
/**
|
1902
|
+
* Minimum width for each tab (in pixels).
|
1903
|
+
*/
|
1904
|
+
minTabWidth?: number;
|
1905
|
+
/**
|
1906
|
+
* Maximum width for each tab (in pixels).
|
1907
|
+
*/
|
1908
|
+
maxTabWidth?: number;
|
1909
|
+
/**
|
1910
|
+
* Show the close button only for the active tab.
|
1911
|
+
*/
|
1912
|
+
showCloseOnActive?: boolean;
|
1913
|
+
/**
|
1914
|
+
* Custom CSS class name to override default styles.
|
1915
|
+
*/
|
1916
|
+
className?: string;
|
1917
|
+
}
|
1918
|
+
|
1919
|
+
declare const BrowserTabs: ({ tabsData, activeTabId, onTabClick, onTabClose, onTabAdd, maxTabWidth, showCloseOnActive, }: BrowserTabsProps) => react_jsx_runtime.JSX.Element;
|
1920
|
+
|
1833
1921
|
interface HighlightTextProps {
|
1834
1922
|
text?: string;
|
1835
1923
|
highlight?: String;
|
@@ -2604,13 +2692,18 @@ interface ExcelFileProps {
|
|
2604
2692
|
}[];
|
2605
2693
|
};
|
2606
2694
|
/** Controls whether the toolbar is shown, disabled, or hidden */
|
2607
|
-
toolbar?: 'show' | '
|
2695
|
+
toolbar?: 'show' | 'hide';
|
2696
|
+
sheetBar?: 'show' | 'hide';
|
2697
|
+
rowCount?: number;
|
2698
|
+
colCount?: number;
|
2608
2699
|
/** Callback function to save the Excel data */
|
2609
2700
|
onSave?: (saveData: any) => void;
|
2610
2701
|
contextHeightPositioning?: number;
|
2611
2702
|
contextWidthPositioning?: number;
|
2612
2703
|
/** Set your dynamic sheet Height*/
|
2613
2704
|
sheetHeight?: string;
|
2705
|
+
columnContextEnable?: boolean;
|
2706
|
+
rowContextEnable?: boolean;
|
2614
2707
|
}
|
2615
2708
|
declare const ExcelFile: React__default.FC<ExcelFileProps>;
|
2616
2709
|
|
@@ -3116,7 +3209,7 @@ interface OperatingSystemInfo {
|
|
3116
3209
|
hostName: string;
|
3117
3210
|
iconName: string;
|
3118
3211
|
}
|
3119
|
-
interface RunLevelExecutionDataSet {
|
3212
|
+
interface RunLevelExecutionDataSet$1 {
|
3120
3213
|
peVariableSetId: string;
|
3121
3214
|
peVariableSetName: string;
|
3122
3215
|
globalVariableSetId: string;
|
@@ -3134,7 +3227,7 @@ interface MachineExecutionInstance {
|
|
3134
3227
|
systemUrl: string;
|
3135
3228
|
machineInfo: OperatingSystemInfo;
|
3136
3229
|
deviceInfo: any[];
|
3137
|
-
runLevelExecutionDataSets: RunLevelExecutionDataSet[];
|
3230
|
+
runLevelExecutionDataSets: RunLevelExecutionDataSet$1[];
|
3138
3231
|
headless: boolean;
|
3139
3232
|
}
|
3140
3233
|
interface SequentialMachineInstance extends Omit<MachineExecutionInstance, 'runLevelExecutionDataSets'> {
|
@@ -3152,12 +3245,33 @@ type machineDataObj = any;
|
|
3152
3245
|
interface MachineData {
|
3153
3246
|
[key: string]: machineDataObj;
|
3154
3247
|
}
|
3248
|
+
interface RunLevelExecutionDataSet {
|
3249
|
+
peVariableSetId: string;
|
3250
|
+
globalVariableSetId: string;
|
3251
|
+
testDataSetId: string;
|
3252
|
+
runScriptCount?: number;
|
3253
|
+
[key: string]: any;
|
3254
|
+
}
|
3255
|
+
interface ConnectingNodeConfig {
|
3256
|
+
isButton?: boolean;
|
3257
|
+
isMultiSelect?: boolean;
|
3258
|
+
parentNodeData?: {
|
3259
|
+
[key: string]: any;
|
3260
|
+
};
|
3261
|
+
parentNodeIndex?: number;
|
3262
|
+
childNodeData?: {
|
3263
|
+
[key: string]: any;
|
3264
|
+
};
|
3265
|
+
childNodeIndex?: number;
|
3266
|
+
runLevelExecutionDataSetIndex?: number;
|
3267
|
+
runLevelExecutionDataSet?: RunLevelExecutionDataSet;
|
3268
|
+
}
|
3155
3269
|
interface ConnectBranchProps {
|
3156
3270
|
data: MachineData;
|
3157
3271
|
childNodeCurveHeight?: number;
|
3158
|
-
getParentNodeComponent: (
|
3159
|
-
getParentNodeComponentActionItems: (
|
3160
|
-
getChildNodeComponent: (
|
3272
|
+
getParentNodeComponent: (nodeArgs: ConnectingNodeConfig) => ReactElement;
|
3273
|
+
getParentNodeComponentActionItems: (nodeArgs: ConnectingNodeConfig) => ReactElement;
|
3274
|
+
getChildNodeComponent: (nodeArgs: ConnectingNodeConfig) => ReactElement;
|
3161
3275
|
}
|
3162
3276
|
|
3163
3277
|
declare const ConnectingBranch: React__default.FC<ConnectBranchProps>;
|
@@ -3433,4 +3547,4 @@ declare const PARAMETER_ALPHANUMERIC_REGEX: RegExp;
|
|
3433
3547
|
declare function saveToIndexedDB(key: string, value: string): Promise<void>;
|
3434
3548
|
declare function getFromIndexedDB(key: string): Promise<string | null>;
|
3435
3549
|
|
3436
|
-
export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, Accordion,
|
3550
|
+
export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, Accordion, AddResourceButton, AllProjectsDropdown, AppHeader, AttachImage, AttachmentButton, Avatar, BASE64_REGEX, BINARY_NUMBER_REGEX, BarChart, BrowserTabs, 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 };
|