pixel-react 1.21.23 → 1.21.24
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/components/AllProjectsDropdown/AllProjectsDropdown.js +14 -12
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.js.map +1 -1
- package/lib/components/Charts/ScoreChart/ScoreGaugeChart.d.ts +5 -0
- package/lib/components/Charts/ScoreChart/ScoreGaugeChart.js +98 -0
- package/lib/components/Charts/ScoreChart/ScoreGaugeChart.js.map +1 -0
- package/lib/components/Charts/ScoreChart/index.d.ts +1 -0
- package/lib/components/Charts/ScoreChart/index.js +2 -0
- package/lib/components/Charts/ScoreChart/index.js.map +1 -0
- package/lib/components/Charts/ScoreChart/types.d.ts +42 -0
- package/lib/components/Charts/ScoreChart/types.js +2 -0
- package/lib/components/Charts/ScoreChart/types.js.map +1 -0
- package/lib/components/Chip/Chip.d.ts +1 -1
- package/lib/components/Chip/Chip.js +19 -6
- package/lib/components/Chip/Chip.js.map +1 -1
- package/lib/components/Chip/types.d.ts +1 -0
- package/lib/components/Icon/iconList.js +28 -0
- package/lib/components/Icon/iconList.js.map +1 -1
- package/lib/components/Table/EditComponent.js +6 -6
- package/lib/components/Table/EditComponent.js.map +1 -1
- package/lib/components/Table/NoDataContent.js +1 -1
- package/lib/components/Table/NoDataContent.js.map +1 -1
- package/lib/components/Table/Table.js +78 -153
- package/lib/components/Table/Table.js.map +1 -1
- package/lib/components/Table/Types.d.ts +6 -17
- package/lib/components/Table/components/SortableRow.d.ts +1 -1
- package/lib/components/Table/components/SortableRow.js +69 -68
- package/lib/components/Table/components/SortableRow.js.map +1 -1
- package/lib/components/Table/components/TableHeader.js +15 -20
- package/lib/components/Table/components/TableHeader.js.map +1 -1
- package/lib/components/Table/components/VirtualizedRows.d.ts +1 -1
- package/lib/components/Table/components/VirtualizedRows.js +17 -32
- package/lib/components/Table/components/VirtualizedRows.js.map +1 -1
- package/lib/components/Table/utils/virtualization.d.ts +3 -10
- package/lib/components/Table/utils/virtualization.js +13 -40
- package/lib/components/Table/utils/virtualization.js.map +1 -1
- package/lib/components/TableWithAccordion/TableWithAccordion.js +13 -38
- package/lib/components/TableWithAccordion/TableWithAccordion.js.map +1 -1
- package/lib/components/TableWithAccordion/types.d.ts +2 -2
- package/lib/components/Toastify/Toastify.js +1 -1
- package/lib/index.d.ts +52 -8
- package/lib/index.js +9 -9
- package/lib/index.js.map +1 -1
- package/lib/styles.css +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/TreeNavigateUtils/getNavigateToKey.d.ts +1 -1
- package/lib/utils/getTopVisibleNodeKey/getTopVisibleNodeKey.d.ts +1 -1
- package/lib/utils/getTreeDetails/getTreeDetails.d.ts +1 -1
- package/lib/utils/handleTreeExpandAllCollapseAll/handleTreeExpandAllCollapseAll.d.ts +1 -1
- package/lib/utils/handleTreeNodeExpandCollapse/handleTreeNodeExpandCollapse.d.ts +1 -1
- package/lib/utils/handleTreeNodeSelect/handleTreeNodeSelect.d.ts +1 -1
- package/lib/utils/toggleShowHideEntity/toggleShowHideEntity.d.ts +1 -1
- package/package.json +2 -2
- package/lib/components/Table/utils/TableCell.d.ts +0 -2
- package/lib/components/Table/utils/TableCell.js +0 -27
- package/lib/components/Table/utils/TableCell.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
2
|
export interface ColumnProps {
|
|
3
3
|
/**
|
|
4
4
|
* column name
|
|
@@ -15,7 +15,7 @@ export interface ColumnProps {
|
|
|
15
15
|
/**
|
|
16
16
|
* width of a column
|
|
17
17
|
*/
|
|
18
|
-
width?:
|
|
18
|
+
width?: number;
|
|
19
19
|
/**
|
|
20
20
|
* data for the column
|
|
21
21
|
*/
|
package/lib/index.d.ts
CHANGED
|
@@ -696,10 +696,11 @@ interface ChipsProps {
|
|
|
696
696
|
*/
|
|
697
697
|
labelWidth?: number;
|
|
698
698
|
fullTextWidth?: number;
|
|
699
|
+
disableCollapse?: boolean;
|
|
699
700
|
onClick?: () => void;
|
|
700
701
|
}
|
|
701
702
|
|
|
702
|
-
declare const Chip: ({ label, fullText, variant, labelWidth, fullTextWidth, onClick, }: ChipsProps) => React$1.JSX.Element;
|
|
703
|
+
declare const Chip: ({ label, fullText, variant, labelWidth, fullTextWidth, onClick, disableCollapse, }: ChipsProps) => React$1.JSX.Element;
|
|
703
704
|
|
|
704
705
|
interface TooltipProps {
|
|
705
706
|
/**
|
|
@@ -1366,7 +1367,6 @@ interface SelectedItemProps$1 {
|
|
|
1366
1367
|
*/
|
|
1367
1368
|
[key: string]: string | number | boolean;
|
|
1368
1369
|
}
|
|
1369
|
-
type TableRef = LegacyRef<HTMLTableSectionElement> | React__default.RefObject<HTMLTableSectionElement> | LegacyRef<HTMLDivElement> | React__default.RefObject<HTMLDivElement> | null;
|
|
1370
1370
|
interface TableProps$2 {
|
|
1371
1371
|
/**
|
|
1372
1372
|
* Data for table
|
|
@@ -1476,7 +1476,7 @@ interface TableProps$2 {
|
|
|
1476
1476
|
/**
|
|
1477
1477
|
* enable editMode by setting state row id
|
|
1478
1478
|
*/
|
|
1479
|
-
editMode?: string |
|
|
1479
|
+
editMode?: string | null;
|
|
1480
1480
|
/**
|
|
1481
1481
|
* The content that to be displayed if editComponent
|
|
1482
1482
|
*/
|
|
@@ -1484,7 +1484,7 @@ interface TableProps$2 {
|
|
|
1484
1484
|
/**
|
|
1485
1485
|
* tableRef to get the scroll position & to pass control of table to parent component
|
|
1486
1486
|
*/
|
|
1487
|
-
tableRef?:
|
|
1487
|
+
tableRef?: LegacyRef<HTMLTableSectionElement> | React__default.RefObject<HTMLTableSectionElement> | null;
|
|
1488
1488
|
/**
|
|
1489
1489
|
* Explicitly handling the checkbox disability for the row.
|
|
1490
1490
|
*/
|
|
@@ -1501,10 +1501,9 @@ interface TableProps$2 {
|
|
|
1501
1501
|
displayCard?: boolean;
|
|
1502
1502
|
selectedNode?: {
|
|
1503
1503
|
key: string;
|
|
1504
|
-
selected: string
|
|
1504
|
+
selected: string;
|
|
1505
1505
|
};
|
|
1506
1506
|
uniqueRowIdForAccordion?: string | number;
|
|
1507
|
-
openAccordionId?: string | number | null;
|
|
1508
1507
|
}
|
|
1509
1508
|
|
|
1510
1509
|
declare const Table: React$1.ForwardRefExoticComponent<TableProps$2 & React$1.RefAttributes<any>>;
|
|
@@ -3842,7 +3841,7 @@ interface ColumnProps$1 {
|
|
|
3842
3841
|
/**
|
|
3843
3842
|
* width of a column
|
|
3844
3843
|
*/
|
|
3845
|
-
width?:
|
|
3844
|
+
width?: number;
|
|
3846
3845
|
/**
|
|
3847
3846
|
* data for the column
|
|
3848
3847
|
*/
|
|
@@ -5898,6 +5897,51 @@ declare const AutoTruncateText: React$1.MemoExoticComponent<({ children, classNa
|
|
|
5898
5897
|
|
|
5899
5898
|
declare const cleanAllTooltips: () => void;
|
|
5900
5899
|
|
|
5900
|
+
interface RiskZone {
|
|
5901
|
+
/** Inclusive lower bound of the score range */
|
|
5902
|
+
min: number;
|
|
5903
|
+
/** Inclusive upper bound of the score range */
|
|
5904
|
+
max: number;
|
|
5905
|
+
/** Risk level label */
|
|
5906
|
+
label: string;
|
|
5907
|
+
/** Color for the gauge arc segment */
|
|
5908
|
+
color: string;
|
|
5909
|
+
}
|
|
5910
|
+
interface ScoreGaugeChartProps {
|
|
5911
|
+
/** Score value between 0 and 100 */
|
|
5912
|
+
score: number;
|
|
5913
|
+
/** Outer radius of the gauge arc (default: 90) */
|
|
5914
|
+
radius?: number;
|
|
5915
|
+
/** Thickness of the gauge arc (default: 14) */
|
|
5916
|
+
strokeWidth?: number;
|
|
5917
|
+
/** Custom risk zones configuration. Defaults to High (0-70), Warning (71-89), Low (90-100) */
|
|
5918
|
+
riskZones?: RiskZone[];
|
|
5919
|
+
/** Whether to show the legend below the chart (default: true) */
|
|
5920
|
+
showLegend?: boolean;
|
|
5921
|
+
/** Angular gap (in radians) between adjacent risk zone arcs (default: 0) */
|
|
5922
|
+
gapAngle?: number;
|
|
5923
|
+
/** Custom class name for the root container */
|
|
5924
|
+
className?: string;
|
|
5925
|
+
/** Custom inline styles for the root container */
|
|
5926
|
+
style?: React.CSSProperties;
|
|
5927
|
+
/** Color of the background gauge track */
|
|
5928
|
+
trackColor?: string;
|
|
5929
|
+
/** Color of the inner circle and pointer */
|
|
5930
|
+
centerCircleColor?: string;
|
|
5931
|
+
/** Radius offset for the central circle, relative to the inner arc edge (default: 15) */
|
|
5932
|
+
centerCircleRadiusOffset?: number;
|
|
5933
|
+
/** Height/length of the triangular pointer (default: 16) */
|
|
5934
|
+
pointerHeight?: number;
|
|
5935
|
+
/** Half-width of the triangular pointer base (default: 10) */
|
|
5936
|
+
pointerBaseHalfWidth?: number;
|
|
5937
|
+
/** Opacity of the center circle and pointer (default: 0.6) */
|
|
5938
|
+
centerOpacity?: number;
|
|
5939
|
+
/** Whether to show the center score text and labels (default: true) */
|
|
5940
|
+
showCenterText?: boolean;
|
|
5941
|
+
}
|
|
5942
|
+
|
|
5943
|
+
declare const ScoreGaugeChart: React__default.FC<ScoreGaugeChartProps>;
|
|
5944
|
+
|
|
5901
5945
|
declare const computeTreeCountsAndFormatNodes: (treeData: TreeNodeProps[], timezone?: string) => TreeNodeProps[];
|
|
5902
5946
|
declare const updateSearchTree: (searchValues: DynamicObj$1, treeDataList: TreeNodeProps[], dispatch: Dispatch<any>, setSearchedTree: (data: any) => void, setSearchedRootModule: (data: any) => void) => void;
|
|
5903
5947
|
declare const passesFilters: (facetQueries: DynamicObj$1[], response: DynamicObj$1) => boolean;
|
|
@@ -6048,5 +6092,5 @@ declare const StorageUsageBar: React.FC<StorageUsageBarProps>;
|
|
|
6048
6092
|
|
|
6049
6093
|
declare const validateFileContent: (file: File) => Promise<boolean>;
|
|
6050
6094
|
|
|
6051
|
-
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, AutoTruncateText, 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_FORMAT_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, INVALID_EMAIL_REGEX, IPV4_REGEX, IPV6_REGEX, Icon, IconButton, IconRadialChart, IconRadioGroup, Input, InputWithDropdown, JAVASCRIPT_FILE_TYPE_VALIDATION, LINKEDIN_PROFILE_REGEX, LINK_VALIDATION_REGEX, LabelEditTextField, LayoutWithDrawer, LineChart, LineLoader, Link, Loader, 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, NetworkErrorBoundary, NoDataAvailable, NoDataContent, NoResultFound, 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, SelectionSwitcher, SequentialConnectingBranch, SessionDropdown, SessionManager, StackedBarChart, StateDropdown, StatusBadge, StatusButton, StatusCard, StatusIndicator, StepLandingTable, StepResultStats, StorageUsageBar, SwitchButton, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, TreeTable as TableTree, TableTreeFn, TableWithAccordion, Tabs, TabsWithSilder, Textarea as TextArea, TextEditor, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, TooltipService, 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, ZoomControl, addPrePostStepGroup, addStepGroup, autoScrollToTableLastRow, capitalize, checkEmpty, checkMicrophoneAccess, cleanAllTooltips, clearStore, compareArrays, compareObjects, computeTreeCountsAndFormatNodes, convertFormDataToObject, convertToBytes, convertToGB, convertToISO, copyToClipboard, debounce, deleteStoreValue, ffid, findAndInsert, formatDate, formatResponseDate, getEncryptedData, getExtension, getExtensionWithPeriod, getFiltersFromUrl, getNavigateToKey, getSequentialPayload, getStoreValue, getTopVisibleNodeKey, getTreeDetails, handleTimeZoneChange, handleTreeExpandAllCollapseAll, handleTreeNodeExpandCollapse, handleTreeNodeSect, handleUnCheckAllTreeNodesWithUpdates, hasDuplicateFile, isEmptyObject, isTextTruncated, nlpInputDelay, passesFilters, rearrangeDragItem, restoreSelectedFilters, saveFileFromBlob, scrollToView, setStoreValue, throttle, toCamelCase, toast, toggleShowHideEntity, truncateText, updateSearchTree, updateTreeState, useBeforeUnload, useClickOutside, useDeviceType, useFileDropzone, useKeyboardActions, useTheme, useTriggerControl, validateFileContent };
|
|
6095
|
+
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, AutoTruncateText, 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_FORMAT_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, INVALID_EMAIL_REGEX, IPV4_REGEX, IPV6_REGEX, Icon, IconButton, IconRadialChart, IconRadioGroup, Input, InputWithDropdown, JAVASCRIPT_FILE_TYPE_VALIDATION, LINKEDIN_PROFILE_REGEX, LINK_VALIDATION_REGEX, LabelEditTextField, LayoutWithDrawer, LineChart, LineLoader, Link, Loader, 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, NetworkErrorBoundary, NoDataAvailable, NoDataContent, NoResultFound, 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, ScoreGaugeChart, ScriptGenerationLoader, ScriptSwitchButton, Search, Select, SelectionSwitcher, SequentialConnectingBranch, SessionDropdown, SessionManager, StackedBarChart, StateDropdown, StatusBadge, StatusButton, StatusCard, StatusIndicator, StepLandingTable, StepResultStats, StorageUsageBar, SwitchButton, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, TreeTable as TableTree, TableTreeFn, TableWithAccordion, Tabs, TabsWithSilder, Textarea as TextArea, TextEditor, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, TooltipService, 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, ZoomControl, addPrePostStepGroup, addStepGroup, autoScrollToTableLastRow, capitalize, checkEmpty, checkMicrophoneAccess, cleanAllTooltips, clearStore, compareArrays, compareObjects, computeTreeCountsAndFormatNodes, convertFormDataToObject, convertToBytes, convertToGB, convertToISO, copyToClipboard, debounce, deleteStoreValue, ffid, findAndInsert, formatDate, formatResponseDate, getEncryptedData, getExtension, getExtensionWithPeriod, getFiltersFromUrl, getNavigateToKey, getSequentialPayload, getStoreValue, getTopVisibleNodeKey, getTreeDetails, handleTimeZoneChange, handleTreeExpandAllCollapseAll, handleTreeNodeExpandCollapse, handleTreeNodeSect, handleUnCheckAllTreeNodesWithUpdates, hasDuplicateFile, isEmptyObject, isTextTruncated, nlpInputDelay, passesFilters, rearrangeDragItem, restoreSelectedFilters, saveFileFromBlob, scrollToView, setStoreValue, throttle, toCamelCase, toast, toggleShowHideEntity, truncateText, updateSearchTree, updateTreeState, useBeforeUnload, useClickOutside, useDeviceType, useFileDropzone, useKeyboardActions, useTheme, useTriggerControl, validateFileContent };
|
|
6052
6096
|
export type { RootNode$1 as RootNode, TreeNodeProps };
|