pixel-virtual-tree 1.0.0 → 1.0.2

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.
Files changed (60) hide show
  1. package/lib/components/Excel/ExcelFile/ExcelFileComponents/Copied.js +2 -2
  2. package/lib/components/Excel/ExcelFile/ExcelFileComponents/Copied.js.map +1 -1
  3. package/lib/components/Excel/ExcelFile/ExcelFileComponents/Selected.js +2 -2
  4. package/lib/components/Excel/ExcelFile/ExcelFileComponents/Selected.js.map +1 -1
  5. package/lib/components/Icon/iconList.js +546 -544
  6. package/lib/components/Icon/iconList.js.map +1 -1
  7. package/lib/components/Table/Table.js +24 -11
  8. package/lib/components/Table/Table.js.map +1 -1
  9. package/lib/components/Table/Types.d.ts +4 -0
  10. package/lib/components/Table/components/SortableRow.d.ts +1 -1
  11. package/lib/components/Table/components/SortableRow.js +35 -25
  12. package/lib/components/Table/components/SortableRow.js.map +1 -1
  13. package/lib/components/Table/components/VirtualizedRows.d.ts +1 -1
  14. package/lib/components/Table/components/VirtualizedRows.js +11 -3
  15. package/lib/components/Table/components/VirtualizedRows.js.map +1 -1
  16. package/lib/components/TableTree/Components/TableCell.js +2 -2
  17. package/lib/components/TableTree/Components/TableCell.js.map +1 -1
  18. package/lib/components/TableTreeFn/Components/TableCell.js +2 -2
  19. package/lib/components/TableTreeFn/Components/TableCell.js.map +1 -1
  20. package/lib/components/TableTreeFn/DataGrid.d.ts +10 -0
  21. package/lib/components/TableTreeFn/DataGrid.js +362 -0
  22. package/lib/components/TableTreeFn/DataGrid.js.map +1 -0
  23. package/lib/components/TableTreeFn/TableTreeFn.d.ts +3 -4
  24. package/lib/components/TableTreeFn/TableTreeFn.js +293 -152
  25. package/lib/components/TableTreeFn/TableTreeFn.js.map +1 -1
  26. package/lib/components/TableTreeFn/hooks/useVirtualization.d.ts +16 -0
  27. package/lib/components/TableTreeFn/hooks/useVirtualization.js +37 -0
  28. package/lib/components/TableTreeFn/hooks/useVirtualization.js.map +1 -0
  29. package/lib/components/TableTreeFn/index.d.ts +2 -1
  30. package/lib/components/TableTreeFn/index.js +5 -1
  31. package/lib/components/TableTreeFn/index.js.map +1 -1
  32. package/lib/components/TableTreeFn/types.d.ts +17 -14
  33. package/lib/components/TableTreeFn/worker/gridWorker.d.ts +18 -0
  34. package/lib/components/TableTreeFn/worker/gridWorker.js +68 -0
  35. package/lib/components/TableTreeFn/worker/gridWorker.js.map +1 -0
  36. package/lib/index.d.ts +24 -19
  37. package/lib/index.js +8 -8
  38. package/lib/index.js.map +1 -1
  39. package/lib/styles.css +2 -1
  40. package/lib/styles.css.map +1 -0
  41. package/lib/tsconfig.tsbuildinfo +1 -1
  42. package/package.json +13 -15
  43. package/lib/components/TableTreeFn/TableTreeFnVirtual.d.ts +0 -5
  44. package/lib/components/TableTreeFn/TableTreeFnVirtual.demo.d.ts +0 -4
  45. package/lib/components/TableTreeFn/TableTreeFnVirtual.demo.js +0 -146
  46. package/lib/components/TableTreeFn/TableTreeFnVirtual.demo.js.map +0 -1
  47. package/lib/components/TableTreeFn/TableTreeFnVirtual.js +0 -174
  48. package/lib/components/TableTreeFn/TableTreeFnVirtual.js.map +0 -1
  49. package/lib/components/TableTreeFn/VirtualRow.d.ts +0 -27
  50. package/lib/components/TableTreeFn/VirtualRow.js +0 -46
  51. package/lib/components/TableTreeFn/VirtualRow.js.map +0 -1
  52. package/lib/components/TableTreeFn/hooks/useVirtualizer.d.ts +0 -14
  53. package/lib/components/TableTreeFn/hooks/useVirtualizer.js +0 -22
  54. package/lib/components/TableTreeFn/hooks/useVirtualizer.js.map +0 -1
  55. package/lib/components/TableTreeFn/tree.worker.d.ts +0 -1
  56. package/lib/components/TableTreeFn/tree.worker.js +0 -188
  57. package/lib/components/TableTreeFn/tree.worker.js.map +0 -1
  58. package/lib/components/TableTreeFn/types.worker.d.ts +0 -44
  59. package/lib/components/TableTreeFn/types.worker.js +0 -2
  60. package/lib/components/TableTreeFn/types.worker.js.map +0 -1
@@ -1,6 +1,6 @@
1
1
  import { ReactNode } from 'react';
2
2
  import { TreeNodeProps as TreeNode } from '../../ComponentProps/TreeNodeProps';
3
- interface NewNode {
3
+ export interface NewNode {
4
4
  sourceId?: string;
5
5
  payloadSourceId?: string;
6
6
  action?: 'addAbove' | 'addBelow' | 'addInside';
@@ -94,20 +94,9 @@ export interface TableRowProps {
94
94
  addModuleSelectWidth?: number;
95
95
  disableEditLabelConfirmIcon?: boolean;
96
96
  }
97
- export interface Column {
98
- name: string | JSX;
99
- accessor: string;
100
- width: string;
101
- isClickable?: boolean;
102
- cell?: (row: any) => JSX;
103
- actions?: (row: any, treeRowRef?: React.RefObject<HTMLDivElement | null>) => JSX;
104
- isTree?: boolean;
105
- defaultValue?: string;
106
- defaultActions?: () => JSX;
107
- }
108
- export interface TreeTableProps {
97
+ export interface GridProps {
109
98
  treeData: any;
110
- columnsData: Column[];
99
+ columnsData: GridColumn[];
111
100
  selected?: string[];
112
101
  select?: 'radio' | 'checkbox' | 'none';
113
102
  onChange?: (e: any, node: string[] | any) => void;
@@ -140,6 +129,20 @@ export interface TreeTableProps {
140
129
  scrollThreshold?: number;
141
130
  showHeader?: boolean;
142
131
  }
132
+ export type TreeTableProps = GridProps;
133
+ export interface GridColumn {
134
+ name: string | JSX;
135
+ accessor: string;
136
+ width: string;
137
+ isClickable?: boolean;
138
+ cell?: (row: any) => JSX;
139
+ actions?: (row: any, treeRowRef?: React.RefObject<HTMLDivElement | null>) => JSX;
140
+ isTree?: boolean;
141
+ defaultValue?: string;
142
+ defaultActions?: () => JSX;
143
+ }
144
+ export interface Column extends GridColumn {
145
+ }
143
146
  type OptionValue = any;
144
147
  export interface Option {
145
148
  [key: string]: OptionValue;
@@ -0,0 +1,18 @@
1
+ export interface WorkerMessage {
2
+ type: 'PROCESS_DATA' | 'SORT_DATA' | 'FILTER_DATA';
3
+ payload: {
4
+ data: any[];
5
+ sortConfig?: {
6
+ key: string;
7
+ direction: 'asc' | 'desc';
8
+ };
9
+ filterQuery?: string;
10
+ };
11
+ }
12
+ export interface WorkerResponse {
13
+ type: 'DATA_READY' | 'ERROR';
14
+ payload: any[] | {
15
+ message: string;
16
+ };
17
+ }
18
+ export declare const workerCode = "\n self.onmessage = function(e) {\n const { type, payload } = e.data;\n\n try {\n if (type === 'PROCESS_DATA') {\n const { data, sortConfig, filterQuery } = payload;\n let processedData = [...data]; // Create a copy to avoid mutations\n\n // 1. Heavy Filtering O(N)\n if (filterQuery && filterQuery.trim()) {\n const query = filterQuery.toLowerCase();\n processedData = processedData.filter(row => \n Object.values(row).some(val => \n String(val).toLowerCase().includes(query)\n )\n );\n }\n\n // 2. Heavy Sorting O(N log N) - Merge Sort implementation\n if (sortConfig && sortConfig.key) {\n const { key, direction } = sortConfig;\n processedData.sort((a, b) => {\n const aVal = a[key];\n const bVal = b[key];\n \n // Handle undefined/null values\n if (aVal == null && bVal == null) return 0;\n if (aVal == null) return direction === 'asc' ? -1 : 1;\n if (bVal == null) return direction === 'asc' ? 1 : -1;\n \n // String comparison\n if (typeof aVal === 'string' && typeof bVal === 'string') {\n const comparison = aVal.localeCompare(bVal);\n return direction === 'asc' ? comparison : -comparison;\n }\n \n // Numeric comparison\n if (typeof aVal === 'number' && typeof bVal === 'number') {\n return direction === 'asc' ? aVal - bVal : bVal - aVal;\n }\n \n // Default comparison\n const aStr = String(aVal);\n const bStr = String(bVal);\n const comparison = aStr.localeCompare(bStr);\n return direction === 'asc' ? comparison : -comparison;\n });\n }\n\n // Post processed data back to main thread\n self.postMessage({ \n type: 'DATA_READY', \n payload: processedData \n });\n }\n } catch (error) {\n self.postMessage({ \n type: 'ERROR', \n payload: { message: error.message } \n });\n }\n };\n";
@@ -0,0 +1,68 @@
1
+ // Web Worker for high-performance data processing
2
+ // Uses Blob Worker Pattern for NPM compatibility
3
+ // We export the worker code as a string to create a Blob later
4
+ export const workerCode = `
5
+ self.onmessage = function(e) {
6
+ const { type, payload } = e.data;
7
+
8
+ try {
9
+ if (type === 'PROCESS_DATA') {
10
+ const { data, sortConfig, filterQuery } = payload;
11
+ let processedData = [...data]; // Create a copy to avoid mutations
12
+
13
+ // 1. Heavy Filtering O(N)
14
+ if (filterQuery && filterQuery.trim()) {
15
+ const query = filterQuery.toLowerCase();
16
+ processedData = processedData.filter(row =>
17
+ Object.values(row).some(val =>
18
+ String(val).toLowerCase().includes(query)
19
+ )
20
+ );
21
+ }
22
+
23
+ // 2. Heavy Sorting O(N log N) - Merge Sort implementation
24
+ if (sortConfig && sortConfig.key) {
25
+ const { key, direction } = sortConfig;
26
+ processedData.sort((a, b) => {
27
+ const aVal = a[key];
28
+ const bVal = b[key];
29
+
30
+ // Handle undefined/null values
31
+ if (aVal == null && bVal == null) return 0;
32
+ if (aVal == null) return direction === 'asc' ? -1 : 1;
33
+ if (bVal == null) return direction === 'asc' ? 1 : -1;
34
+
35
+ // String comparison
36
+ if (typeof aVal === 'string' && typeof bVal === 'string') {
37
+ const comparison = aVal.localeCompare(bVal);
38
+ return direction === 'asc' ? comparison : -comparison;
39
+ }
40
+
41
+ // Numeric comparison
42
+ if (typeof aVal === 'number' && typeof bVal === 'number') {
43
+ return direction === 'asc' ? aVal - bVal : bVal - aVal;
44
+ }
45
+
46
+ // Default comparison
47
+ const aStr = String(aVal);
48
+ const bStr = String(bVal);
49
+ const comparison = aStr.localeCompare(bStr);
50
+ return direction === 'asc' ? comparison : -comparison;
51
+ });
52
+ }
53
+
54
+ // Post processed data back to main thread
55
+ self.postMessage({
56
+ type: 'DATA_READY',
57
+ payload: processedData
58
+ });
59
+ }
60
+ } catch (error) {
61
+ self.postMessage({
62
+ type: 'ERROR',
63
+ payload: { message: error.message }
64
+ });
65
+ }
66
+ };
67
+ `;
68
+ //# sourceMappingURL=gridWorker.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gridWorker.js","sourceRoot":"","sources":["../../../../src/components/TableTreeFn/worker/gridWorker.ts"],"names":[],"mappings":"AAAA,kDAAkD;AAClD,iDAAiD;AAmBjD,+DAA+D;AAC/D,MAAM,CAAC,MAAM,UAAU,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+DzB,CAAC"}
package/lib/index.d.ts CHANGED
@@ -2281,7 +2281,7 @@ type RootNode$1 = {
2281
2281
  cell?: (row: any) => JSX$2;
2282
2282
  actions?: (row: any, treeRowRef?: React.RefObject<HTMLDivElement | null>) => JSX$2;
2283
2283
  };
2284
- interface Column$1 {
2284
+ interface Column {
2285
2285
  name: string | JSX$2;
2286
2286
  accessor: string;
2287
2287
  width: string;
@@ -2292,9 +2292,9 @@ interface Column$1 {
2292
2292
  defaultValue?: string;
2293
2293
  defaultActions?: () => JSX$2;
2294
2294
  }
2295
- interface TreeTableProps$1 {
2295
+ interface TreeTableProps {
2296
2296
  treeData: any;
2297
- columnsData: Column$1[];
2297
+ columnsData: Column[];
2298
2298
  selected?: string[];
2299
2299
  select?: 'radio' | 'checkbox' | 'none';
2300
2300
  onChange?: (e: any, node: string[] | any) => void;
@@ -2327,7 +2327,7 @@ interface Option$3 {
2327
2327
  [key: string]: OptionValue$2;
2328
2328
  }
2329
2329
 
2330
- declare const TreeTable: React__default.ForwardRefExoticComponent<TreeTableProps$1 & React__default.RefAttributes<HTMLDivElement>>;
2330
+ declare const TreeTable: React__default.ForwardRefExoticComponent<TreeTableProps & React__default.RefAttributes<HTMLDivElement>>;
2331
2331
 
2332
2332
  interface TabsProps$1 {
2333
2333
  /**
@@ -4547,20 +4547,9 @@ type RootNode = {
4547
4547
  cell?: (row: any) => JSX$1;
4548
4548
  actions?: (row: any, treeRowRef?: React.RefObject<HTMLDivElement | null>) => JSX$1;
4549
4549
  };
4550
- interface Column {
4551
- name: string | JSX$1;
4552
- accessor: string;
4553
- width: string;
4554
- isClickable?: boolean;
4555
- cell?: (row: any) => JSX$1;
4556
- actions?: (row: any, treeRowRef?: React.RefObject<HTMLDivElement | null>) => JSX$1;
4557
- isTree?: boolean;
4558
- defaultValue?: string;
4559
- defaultActions?: () => JSX$1;
4560
- }
4561
- interface TreeTableProps {
4550
+ interface GridProps {
4562
4551
  treeData: any;
4563
- columnsData: Column[];
4552
+ columnsData: GridColumn[];
4564
4553
  selected?: string[];
4565
4554
  select?: 'radio' | 'checkbox' | 'none';
4566
4555
  onChange?: (e: any, node: string[] | any) => void;
@@ -4593,12 +4582,28 @@ interface TreeTableProps {
4593
4582
  scrollThreshold?: number;
4594
4583
  showHeader?: boolean;
4595
4584
  }
4585
+ interface GridColumn {
4586
+ name: string | JSX$1;
4587
+ accessor: string;
4588
+ width: string;
4589
+ isClickable?: boolean;
4590
+ cell?: (row: any) => JSX$1;
4591
+ actions?: (row: any, treeRowRef?: React.RefObject<HTMLDivElement | null>) => JSX$1;
4592
+ isTree?: boolean;
4593
+ defaultValue?: string;
4594
+ defaultActions?: () => JSX$1;
4595
+ }
4596
4596
  type OptionValue = any;
4597
4597
  interface Option$1 {
4598
4598
  [key: string]: OptionValue;
4599
4599
  }
4600
4600
 
4601
- declare const TableTreeFnVirtual: React__default.ForwardRefExoticComponent<TreeTableProps & React__default.RefAttributes<HTMLDivElement>>;
4601
+ /**
4602
+ * High-Performance Virtualized Data Grid Component
4603
+ * Replaces TableTreeFn with modern virtualization architecture
4604
+ * Maintains 100% backward compatibility with existing API
4605
+ */
4606
+ declare const DataGrid: React__default.ForwardRefExoticComponent<GridProps & React__default.RefAttributes<HTMLDivElement>>;
4602
4607
 
4603
4608
  type valueType$1 = any;
4604
4609
  declare const checkEmpty: (value: valueType$1) => boolean;
@@ -5781,5 +5786,5 @@ declare const useDeviceType: () => {
5781
5786
 
5782
5787
  declare const copyToClipboard: (text: string) => boolean;
5783
5788
 
5784
- export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHABET_WITH_SPACES_ONLY_REGEX, ALPHANUMERIC_PARENTHESIS_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_DOT_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, ALPHA_NUM_EXTENDED_REGEX, ALPHA_NUM_REGEX, Accordion, AddContentButton, AddResourceButton, AiToggle, AllProjectsDropdown, AnimatedSetting, AppHeader, AttachMedia, AttachmentButton, Avatar, BASE64_REGEX, BIG_END_WHITESPACE, BINARY_NUMBER_REGEX, BODY_TAG_TYPE_VALIDATION, BarChart, Card as Box, BrowserTabs, Button, CAMEL_CASE_REGEX, CERTIFICATES_NAME_REGEX, CHECK_CAMEL_CASE, CREDIT_CARD_REGEX, CURRENCY_GENERIC_REGEX, ChatModal, ChatModalAi, Checkbox, Chip, ChipWithCount, ChooseFile, Col, Comments, ConditionalDropdown, ConnectingBranch, Container, ContentCard, CreateVariableSlider, DATE_REGEX, DECIMAL_NUMBER_REGEX, DRIVING_LICENSE_REGEX, DYNAMIC_VALUE_PATTERN_REGEX, DYNAMIC_VALUE_TYPE_REGEX, DYNAMIC_VALUE_WITH_VALID_BRACKETS_REGEX, DYNAMIC_VALUE__PLACEHOLDER_REGEX, DashboardDonutChart, CustomDatePicker as DatePicker, DebugToolsPanel, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, EMAIL_REGEX, EMAIL_VALIDATION_REGEX, EXCEL_SPACING_REGEX, EditLabel, EditTextField, Editor, ErrorBoundary, ExcelFile as Excel, ExpandableMenu, FILENAME_VALIDATION_REGEX, 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_FILE_TYPE_VALIDATION, HTML_TAG_REGEX, HighlightText, HistoryCard, 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, JAVASCRIPT_FILE_TYPE_VALIDATION, LINKEDIN_PROFILE_REGEX, LINK_VALIDATION_REGEX, LabelEditTextField, LineChart, LineLoader, Link, MAC_ADDRESS_REGEX, MEMORY_VALIDATION_REGEX, MachineInputField, MediaPreview, MediaViewerModal as MediaViewerModel, MenuOption, MessageBox, MiniModal, MobileSkin, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, NLP_DESCRIPTION_REGEX, NO_LEADING_TRAILING_SPACE_REGEX, NUMBERS_ONLY_REGEX, NUMBER_REGEX, NoDataContent, OsTree, OtpVerification, OverviewModal, PAN_CARD_REGEX, PARAMETER_ALPHANUMERIC_REGEX, PASSWORD_COMPLEX_REGEX, PASSWORD_SIMPLE_REGEX, PHONE_REGEX, POSTAL_CODE_REGEX, Paper, PhoneInputField, PieChart, PopUpModal, PrePostTable, ProgressBar, Prompt, PromptContainer, RGB_COLOR_REGEX, ROMAN_NUMERALS_REGEX, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, SCRIPT_REGEX, SERVER_HOST_REGEX, SSN_REGEX, START_END_WHITESPACE_REGEX, STEP_GROUP_NAME_REGEX, ScriptGenerationLoader, ScriptSwitchButton, Search, Select, SequentialConnectingBranch, SessionDropdown, SessionManager, StateDropdown, StatusBadge, StatusButton, StatusCard, StatusIndicator, StepLandingTable, StepResultStats, SwitchButton, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, TreeTable as TableTree, TableTreeFnVirtual as TableTreeFn, TableWithAccordion, Tabs, TabsWithSilder, Textarea as TextArea, TextEditor, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, TruncatedTooltip, Typography, UNIT_REGEX, URL_REGEX, USERNAME_REGEX, USERNAME_SPECIAL_REGEX, US_ZIP_CODE_REGEX, UUID_REGEX, VEHICLE_REGISTRATION_REGEX, VariableDropdown, VariableInput, VariableSuggestionInputDropDown, WHITESPACE_REGEX, XML_FILE_TYPE_VALIDATION, addPrePostStepGroup, addStepGroup, autoScrollToTableLastRow, capitalize, checkEmpty, checkMicrophoneAccess, clearStore, compareArrays, compareObjects, convertFormDataToObject, convertToBytes, convertToGB, convertToISO, copyToClipboard, debounce, deleteStoreValue, ffid, findAndInsert, formatDate, formatResponseDate, getEncryptedData, getExtension, getExtensionWithPeriod, getNavigateToKey, getSequentialPayload, getStoreValue, getTopVisibleNodeKey, getTreeDetails, handleTimeZoneChange, handleTreeExpandAllCollapseAll, handleTreeNodeExpandCollapse, handleTreeNodeSect, handleUnCheckAllTreeNodesWithUpdates, hasDuplicateFile, isEmptyObject, isTextTruncated, nlpInputDelay, rearrangeDragItem, saveFileFromBlob, scrollToView, setStoreValue, throttle, toCamelCase, toast, toggleShowHideEntity, truncateText, updateTreeState, useBeforeUnload, useClickOutside, useDeviceType, useFileDropzone, useKeyboardActions, useTheme, useTriggerControl };
5789
+ export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHABET_WITH_SPACES_ONLY_REGEX, ALPHANUMERIC_PARENTHESIS_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_DOT_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, ALPHA_NUM_EXTENDED_REGEX, ALPHA_NUM_REGEX, Accordion, AddContentButton, AddResourceButton, AiToggle, AllProjectsDropdown, AnimatedSetting, AppHeader, AttachMedia, AttachmentButton, Avatar, BASE64_REGEX, BIG_END_WHITESPACE, BINARY_NUMBER_REGEX, BODY_TAG_TYPE_VALIDATION, BarChart, Card as Box, BrowserTabs, Button, CAMEL_CASE_REGEX, CERTIFICATES_NAME_REGEX, CHECK_CAMEL_CASE, CREDIT_CARD_REGEX, CURRENCY_GENERIC_REGEX, ChatModal, ChatModalAi, Checkbox, Chip, ChipWithCount, ChooseFile, Col, Comments, ConditionalDropdown, ConnectingBranch, Container, ContentCard, CreateVariableSlider, DATE_REGEX, DECIMAL_NUMBER_REGEX, DRIVING_LICENSE_REGEX, DYNAMIC_VALUE_PATTERN_REGEX, DYNAMIC_VALUE_TYPE_REGEX, DYNAMIC_VALUE_WITH_VALID_BRACKETS_REGEX, DYNAMIC_VALUE__PLACEHOLDER_REGEX, DashboardDonutChart, DataGrid, CustomDatePicker as DatePicker, DebugToolsPanel, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, EMAIL_REGEX, EMAIL_VALIDATION_REGEX, EXCEL_SPACING_REGEX, EditLabel, EditTextField, Editor, ErrorBoundary, ExcelFile as Excel, ExpandableMenu, FILENAME_VALIDATION_REGEX, 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_FILE_TYPE_VALIDATION, HTML_TAG_REGEX, HighlightText, HistoryCard, 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, JAVASCRIPT_FILE_TYPE_VALIDATION, LINKEDIN_PROFILE_REGEX, LINK_VALIDATION_REGEX, LabelEditTextField, LineChart, LineLoader, Link, MAC_ADDRESS_REGEX, MEMORY_VALIDATION_REGEX, MachineInputField, MediaPreview, MediaViewerModal as MediaViewerModel, MenuOption, MessageBox, MiniModal, MobileSkin, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, NLP_DESCRIPTION_REGEX, NO_LEADING_TRAILING_SPACE_REGEX, NUMBERS_ONLY_REGEX, NUMBER_REGEX, NoDataContent, OsTree, OtpVerification, OverviewModal, PAN_CARD_REGEX, PARAMETER_ALPHANUMERIC_REGEX, PASSWORD_COMPLEX_REGEX, PASSWORD_SIMPLE_REGEX, PHONE_REGEX, POSTAL_CODE_REGEX, Paper, PhoneInputField, PieChart, PopUpModal, PrePostTable, ProgressBar, Prompt, PromptContainer, RGB_COLOR_REGEX, ROMAN_NUMERALS_REGEX, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, SCRIPT_REGEX, SERVER_HOST_REGEX, SSN_REGEX, START_END_WHITESPACE_REGEX, STEP_GROUP_NAME_REGEX, ScriptGenerationLoader, ScriptSwitchButton, Search, Select, SequentialConnectingBranch, SessionDropdown, SessionManager, StateDropdown, StatusBadge, StatusButton, StatusCard, StatusIndicator, StepLandingTable, StepResultStats, SwitchButton, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, TreeTable as TableTree, DataGrid as TableTreeFn, TableWithAccordion, Tabs, TabsWithSilder, Textarea as TextArea, TextEditor, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, TruncatedTooltip, Typography, UNIT_REGEX, URL_REGEX, USERNAME_REGEX, USERNAME_SPECIAL_REGEX, US_ZIP_CODE_REGEX, UUID_REGEX, VEHICLE_REGISTRATION_REGEX, VariableDropdown, VariableInput, VariableSuggestionInputDropDown, WHITESPACE_REGEX, XML_FILE_TYPE_VALIDATION, addPrePostStepGroup, addStepGroup, autoScrollToTableLastRow, capitalize, checkEmpty, checkMicrophoneAccess, clearStore, compareArrays, compareObjects, convertFormDataToObject, convertToBytes, convertToGB, convertToISO, copyToClipboard, debounce, deleteStoreValue, ffid, findAndInsert, formatDate, formatResponseDate, getEncryptedData, getExtension, getExtensionWithPeriod, getNavigateToKey, getSequentialPayload, getStoreValue, getTopVisibleNodeKey, getTreeDetails, handleTimeZoneChange, handleTreeExpandAllCollapseAll, handleTreeNodeExpandCollapse, handleTreeNodeSect, handleUnCheckAllTreeNodesWithUpdates, hasDuplicateFile, isEmptyObject, isTextTruncated, nlpInputDelay, rearrangeDragItem, saveFileFromBlob, scrollToView, setStoreValue, throttle, toCamelCase, toast, toggleShowHideEntity, truncateText, updateTreeState, useBeforeUnload, useClickOutside, useDeviceType, useFileDropzone, useKeyboardActions, useTheme, useTriggerControl };
5785
5790
  export type { RootNode$1 as RootNode, TreeNodeProps };