pixel-react 1.20.10 → 1.20.12
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/AutoTruncateText/AutoTruncateText.d.ts +4 -0
- package/lib/components/AutoTruncateText/AutoTruncateText.js +41 -0
- package/lib/components/AutoTruncateText/AutoTruncateText.js.map +1 -0
- package/lib/components/AutoTruncateText/index.d.ts +1 -0
- package/lib/components/AutoTruncateText/index.js +2 -0
- package/lib/components/AutoTruncateText/index.js.map +1 -0
- package/lib/components/AutoTruncateText/resizeObserverService.d.ts +7 -0
- package/lib/components/AutoTruncateText/resizeObserverService.js +25 -0
- package/lib/components/AutoTruncateText/resizeObserverService.js.map +1 -0
- package/lib/components/AutoTruncateText/types.d.ts +8 -0
- package/lib/components/AutoTruncateText/types.js +2 -0
- package/lib/components/AutoTruncateText/types.js.map +1 -0
- package/lib/components/AutoTruncateText/useResizeSignal.d.ts +5 -0
- package/lib/components/AutoTruncateText/useResizeSignal.js +18 -0
- package/lib/components/AutoTruncateText/useResizeSignal.js.map +1 -0
- package/lib/components/CreateVariable/CreateVariableSlider.js +3 -3
- package/lib/components/CreateVariable/CreateVariableSlider.js.map +1 -1
- package/lib/components/CreateVariable/types.d.ts +6 -2
- package/lib/components/DownloadClient/DownloadClient.js +1 -1
- package/lib/components/DownloadClient/DownloadClient.js.map +1 -1
- package/lib/components/ExpandableMenu/ExpandableMenu.js +11 -10
- package/lib/components/ExpandableMenu/ExpandableMenu.js.map +1 -1
- package/lib/components/ExpandableMenu/types.d.ts +1 -0
- package/lib/components/Icon/iconList.js +24 -0
- package/lib/components/Icon/iconList.js.map +1 -1
- package/lib/components/MachineInputField/MachineInputField.d.ts +1 -1
- package/lib/components/MachineInputField/MachineInputField.js +2 -1
- package/lib/components/MachineInputField/MachineInputField.js.map +1 -1
- package/lib/components/MachineInputField/types.d.ts +1 -0
- package/lib/components/Select/Select.js +2 -1
- package/lib/components/Select/Select.js.map +1 -1
- package/lib/components/Select/types.d.ts +4 -0
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.js +16 -11
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.js.map +1 -1
- package/lib/components/TableTreeFn/TableTreeFn.js +3 -8
- package/lib/components/TableTreeFn/TableTreeFn.js.map +1 -1
- package/lib/components/TextEditor/TextEditor.js +2 -0
- package/lib/components/TextEditor/TextEditor.js.map +1 -1
- package/lib/components/TooltipService/TooltipService.js +37 -11
- package/lib/components/TooltipService/TooltipService.js.map +1 -1
- package/lib/index.d.ts +24 -3
- package/lib/index.js +9 -9
- package/lib/index.js.map +1 -1
- package/lib/styles.css +1 -1
- package/lib/styles.css.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/getTreeDetails/getTreeDetails.js +117 -58
- package/lib/utils/getTreeDetails/getTreeDetails.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import * as DNDSortable from '@dnd-kit/sortable';
|
|
|
9
9
|
import * as DNDUtilities from '@dnd-kit/utilities';
|
|
10
10
|
import * as DNDModifiers from '@dnd-kit/modifiers';
|
|
11
11
|
import ReCAPTCHA from 'react-google-recaptcha';
|
|
12
|
+
import { Props } from 'tippy.js';
|
|
12
13
|
export { default as Janus } from 'janus-gateway';
|
|
13
14
|
export { default as adapter } from 'webrtc-adapter';
|
|
14
15
|
|
|
@@ -69,7 +70,7 @@ interface CreateVariableProps {
|
|
|
69
70
|
/**
|
|
70
71
|
* verify which drawer is open, create or edit
|
|
71
72
|
*/
|
|
72
|
-
mode?:
|
|
73
|
+
mode?: 'create' | 'edit';
|
|
73
74
|
/**
|
|
74
75
|
* Disable the checkbox
|
|
75
76
|
*/
|
|
@@ -86,6 +87,10 @@ interface CreateVariableProps {
|
|
|
86
87
|
* Show or hide password icon
|
|
87
88
|
*/
|
|
88
89
|
showHidePasswordIcon?: boolean;
|
|
90
|
+
/**
|
|
91
|
+
* Show or hide checkbox scenario
|
|
92
|
+
*/
|
|
93
|
+
showHideValueOption?: boolean;
|
|
89
94
|
/**
|
|
90
95
|
* Show placeholder text
|
|
91
96
|
*/
|
|
@@ -949,6 +954,7 @@ interface ExpandableMenuProps {
|
|
|
949
954
|
*/
|
|
950
955
|
onSubMenuClick?: (subChip: any) => void;
|
|
951
956
|
menuExpandStatus?: boolean;
|
|
957
|
+
tooltipTitle?: string;
|
|
952
958
|
}
|
|
953
959
|
|
|
954
960
|
declare const ExpandableMenu: React.FC<ExpandableMenuProps>;
|
|
@@ -1054,6 +1060,10 @@ interface SelectProps$1 {
|
|
|
1054
1060
|
isCustomButtonDisabled?: boolean;
|
|
1055
1061
|
hasInnerClearIcon?: boolean;
|
|
1056
1062
|
dropdownInnerIconWidth?: number;
|
|
1063
|
+
/**
|
|
1064
|
+
* callback triggers on the open of dropdown
|
|
1065
|
+
*/
|
|
1066
|
+
onDropdownOpen?: () => void;
|
|
1057
1067
|
}
|
|
1058
1068
|
type OptionValue$3 = any;
|
|
1059
1069
|
interface Option$5 {
|
|
@@ -3091,10 +3101,11 @@ interface MachineInputFieldProps {
|
|
|
3091
3101
|
trucatedLable?: boolean;
|
|
3092
3102
|
scriptType?: string;
|
|
3093
3103
|
readOnly?: boolean;
|
|
3104
|
+
isMissing?: boolean;
|
|
3094
3105
|
}
|
|
3095
3106
|
|
|
3096
3107
|
declare const MachineInputField: {
|
|
3097
|
-
({ width, options, runCount, className, contentReverse, onClick, modalId, scriptType, readOnly, }: MachineInputFieldProps): react_jsx_runtime.JSX.Element;
|
|
3108
|
+
({ width, options, runCount, className, contentReverse, onClick, modalId, scriptType, readOnly, isMissing, }: MachineInputFieldProps): react_jsx_runtime.JSX.Element;
|
|
3098
3109
|
displayName: string;
|
|
3099
3110
|
};
|
|
3100
3111
|
|
|
@@ -5723,6 +5734,16 @@ declare const ZoomControl: FC<ZoomControlProps>;
|
|
|
5723
5734
|
|
|
5724
5735
|
declare const TooltipService: () => null;
|
|
5725
5736
|
|
|
5737
|
+
interface AutoTruncateTextComponentProps {
|
|
5738
|
+
children: React.ReactNode;
|
|
5739
|
+
className?: string;
|
|
5740
|
+
lines?: number;
|
|
5741
|
+
interactive?: boolean;
|
|
5742
|
+
placement?: Props['placement'];
|
|
5743
|
+
}
|
|
5744
|
+
|
|
5745
|
+
declare const AutoTruncateText: React$1.MemoExoticComponent<({ children, className, lines, interactive, placement, }: AutoTruncateTextComponentProps) => react_jsx_runtime.JSX.Element>;
|
|
5746
|
+
|
|
5726
5747
|
declare const EMAIL_REGEX: RegExp;
|
|
5727
5748
|
declare const URL_REGEX: RegExp;
|
|
5728
5749
|
declare const PHONE_REGEX: RegExp;
|
|
@@ -5864,5 +5885,5 @@ interface StorageUsageBarProps {
|
|
|
5864
5885
|
|
|
5865
5886
|
declare const StorageUsageBar: React.FC<StorageUsageBarProps>;
|
|
5866
5887
|
|
|
5867
|
-
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_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, 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, SelectionSwitcher, SequentialConnectingBranch, SessionDropdown, SessionManager, 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, 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 };
|
|
5888
|
+
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, 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, SelectionSwitcher, SequentialConnectingBranch, SessionDropdown, SessionManager, 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, 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 };
|
|
5868
5889
|
export type { RootNode$1 as RootNode, TreeNodeProps };
|