pixel-react 1.21.19 → 1.21.21
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/StyleGuide/ColorPalette/ColorPalette.d.ts +1 -1
- package/lib/StyleGuide/ColorPalette/colorPaletteList.js +5 -0
- package/lib/StyleGuide/ColorPalette/colorPaletteList.js.map +1 -1
- package/lib/StyleGuide/Typography/Typography.d.ts +1 -1
- package/lib/components/Accordion/Accordion.d.ts +1 -1
- package/lib/components/AddResourceButton/AddResourceButton.d.ts +1 -1
- package/lib/components/AddResourceButton/ArrowsButton/ArrowsButton.d.ts +1 -1
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.d.ts +1 -1
- package/lib/components/AutoTruncateText/AutoTruncateText.d.ts +1 -1
- package/lib/components/BrowserTabs/BrowserTabs.d.ts +1 -1
- package/lib/components/Chip/Chip.d.ts +1 -1
- package/lib/components/Comments/Comments.d.ts +2 -1
- package/lib/components/Comments/childComment/ChildComment.d.ts +1 -1
- package/lib/components/DragAndDrop/DragAndDropList.d.ts +2 -2
- package/lib/components/EditLabel/EditLabel.d.ts +1 -1
- package/lib/components/Editor/DynamicWidthToolTip.d.ts +1 -1
- package/lib/components/HOC/LayoutWithDrawer/LayoutWithDrawer.d.ts +1 -1
- package/lib/components/HistoryCard/HistoryCard.d.ts +1 -1
- package/lib/components/LazyLoad/LazyLoading.d.ts +2 -1
- package/lib/components/Loader/Loader.d.ts +1 -1
- package/lib/components/MachineInputField/MachineInputField.d.ts +1 -1
- package/lib/components/MenuOption/MenuOption.d.ts +1 -1
- package/lib/components/MultiSelect/MultiSelect.d.ts +2 -1
- package/lib/components/NLPInput/NlpInput.d.ts +1 -1
- package/lib/components/NLPInput/components/NlpDropDown/NlpDropdown.d.ts +1 -1
- package/lib/components/OverviewModal/overviewModal.js +41 -28
- package/lib/components/OverviewModal/overviewModal.js.map +1 -1
- package/lib/components/Paper/Paper.d.ts +1 -1
- package/lib/components/Search/Search.d.ts +1 -1
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.d.ts +1 -1
- package/lib/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.d.ts +1 -1
- package/lib/components/StateDropdown/StateDropdown.d.ts +1 -1
- package/lib/components/StatusBadge/StatusBadge.d.ts +1 -1
- package/lib/components/StatusButton/StatusButton.d.ts +1 -1
- package/lib/components/StepsLandingTable/Components/EditComponent.d.ts +1 -1
- package/lib/components/StepsLandingTable/Components/RenderNlpInput.d.ts +1 -1
- package/lib/components/StepsLandingTable/Components/StepInnerTable.d.ts +1 -1
- package/lib/components/StepsLandingTable/Components/StepsTitle.d.ts +1 -1
- package/lib/components/StepsLandingTable/StepLandingTable.js +1 -1
- package/lib/components/StepsLandingTable/constant.d.ts +1 -1
- package/lib/components/Table/EditComponent.d.ts +1 -1
- package/lib/components/Table/components/SortableRow.d.ts +1 -1
- package/lib/components/Table/components/TableHeader.d.ts +1 -1
- package/lib/components/Table/components/VirtualizedRows.d.ts +1 -1
- package/lib/components/TableTree/Components/TableBody.d.ts +1 -1
- package/lib/components/TableTree/Components/TableCell.d.ts +1 -1
- package/lib/components/TableTree/Components/TableHead.d.ts +1 -1
- package/lib/components/TableTree/Components/TableRow.d.ts +1 -1
- package/lib/components/TableTreeFn/Components/TableBody.d.ts +1 -1
- package/lib/components/TableTreeFn/Components/TableCell.d.ts +1 -1
- package/lib/components/TableTreeFn/Components/TableHead.d.ts +1 -1
- package/lib/components/TableTreeFn/Components/TableRow.d.ts +1 -1
- package/lib/components/TableWithAccordion/TableWithAccordion.d.ts +1 -1
- package/lib/components/Tabs/Tabs.d.ts +1 -1
- package/lib/components/TabsWithSilder/TabsWithSilder.d.ts +1 -1
- package/lib/components/TextArea/Textarea.d.ts +1 -1
- package/lib/components/Toastify/Toastify.d.ts +1 -1
- package/lib/components/VariableInput/VariableInput.d.ts +2 -1
- package/lib/index.d.ts +26 -27
- package/lib/index.js +9 -17
- package/lib/styles.css +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TabsProps } from './types';
|
|
2
2
|
import './Tabs.scss';
|
|
3
3
|
import '../../assets/styles/_colors.scss';
|
|
4
|
-
declare const Tabs: ({ variant, tabsData, activeTabId, onTabClick, noBorder, noPadding, titleSize, isBorderBottomLine, isHoverBackground, isBorderRadius, tabFlexSpacing, }: TabsProps) => import("react
|
|
4
|
+
declare const Tabs: ({ variant, tabsData, activeTabId, onTabClick, noBorder, noPadding, titleSize, isBorderBottomLine, isHoverBackground, isBorderRadius, tabFlexSpacing, }: TabsProps) => import("react").JSX.Element;
|
|
5
5
|
export default Tabs;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TabsProps } from './types';
|
|
2
2
|
import './TabsWithSilder.scss';
|
|
3
3
|
import '../../assets/styles/_colors.scss';
|
|
4
|
-
declare const TabsWithSilder: ({ variant, tabsData, activeTabId, onTabClick, noBorder, noPadding, titleSize, }: TabsProps) => import("react
|
|
4
|
+
declare const TabsWithSilder: ({ variant, tabsData, activeTabId, onTabClick, noBorder, noPadding, titleSize, }: TabsProps) => import("react").JSX.Element;
|
|
5
5
|
export default TabsWithSilder;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import './Textarea.scss';
|
|
2
2
|
import { TextareaProps } from './Types';
|
|
3
|
-
declare const Textarea: ({ capacity, name, label, value, variant, error, helperText, disabled, required, placeholder, className, onChange, onBlur, onFocus, onPaste, rows, cols, resize, errorText, readOnly, displayCapacity, isLabelRequired, ...props }: TextareaProps) => import("react
|
|
3
|
+
declare const Textarea: ({ capacity, name, label, value, variant, error, helperText, disabled, required, placeholder, className, onChange, onBlur, onFocus, onPaste, rows, cols, resize, errorText, readOnly, displayCapacity, isLabelRequired, ...props }: TextareaProps) => import("react").JSX.Element;
|
|
4
4
|
export default Textarea;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AcceptedType } from './types';
|
|
2
|
-
export declare const Toastify: () => import("react
|
|
2
|
+
export declare const Toastify: () => import("react").JSX.Element;
|
|
3
3
|
export default Toastify;
|
|
4
4
|
export declare const toast: {
|
|
5
5
|
success: (arg1: AcceptedType, arg2?: AcceptedType) => void;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import './VariableInput.scss';
|
|
2
3
|
import { VariableInputProps } from './types';
|
|
3
|
-
declare const VariableInput: ({ type, name, label, disabled, required, placeholder, value, error, className, onChange, onKeyDown, onBlur, onFocus, list, ...props }: VariableInputProps) =>
|
|
4
|
+
declare const VariableInput: ({ type, name, label, disabled, required, placeholder, value, error, className, onChange, onKeyDown, onBlur, onFocus, list, ...props }: VariableInputProps) => React.JSX.Element;
|
|
4
5
|
export default VariableInput;
|
package/lib/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
2
|
import React__default, { ReactNode, FC, RefObject, LegacyRef, CSSProperties, ReactElement, Ref, ComponentProps, Component, ErrorInfo, Dispatch } from 'react';
|
|
3
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
3
|
import * as LazyLoad from 'react-window';
|
|
5
4
|
export { LazyLoad };
|
|
6
5
|
import * as Form from 'react-hook-form';
|
|
@@ -473,7 +472,7 @@ interface AccordionProps {
|
|
|
473
472
|
/**
|
|
474
473
|
* Accordion UI component
|
|
475
474
|
*/
|
|
476
|
-
declare const Accordion: ({ highlightText, headerTitle, color, minHeight, accordionContent, disable, disableInfoMessage, accordionStateIconName, AccordionStateIconWidth, AccordionStateIconHeight, isExpand, onClick, className, iconColor, accordionContentStyle, }: AccordionProps) =>
|
|
475
|
+
declare const Accordion: ({ highlightText, headerTitle, color, minHeight, accordionContent, disable, disableInfoMessage, accordionStateIconName, AccordionStateIconWidth, AccordionStateIconHeight, isExpand, onClick, className, iconColor, accordionContentStyle, }: AccordionProps) => React$1.JSX.Element;
|
|
477
476
|
|
|
478
477
|
type OptionValue$4 = any;
|
|
479
478
|
interface Option$6 {
|
|
@@ -523,7 +522,7 @@ interface MultiSelectProps {
|
|
|
523
522
|
isCloseIconToolTip?: boolean;
|
|
524
523
|
}
|
|
525
524
|
|
|
526
|
-
declare const MultiSelect: ({ options, type, selectedOptions, onChange, acceptNewOption, zIndex, label, onSearch, required, disabled, errorMessage, displayCount: initialDisplayCount, isAllSelected, onToggleAllSelect, displayAllSelectedAsText, isAllSelect, placeholderForSearching, variant, onLabelPlusIconClick, className, onSelectButtonClick, labelAccessor, valueAccessor, searchAccessor, withSelectButton, loadMoreOptions, onEnter, maxVisibleChips, onBlur, maxDropdownHeight, dropdownContainerRef, noResultsMessage, chipAccessor, isCloseIconToolTip, }: MultiSelectProps) =>
|
|
525
|
+
declare const MultiSelect: ({ options, type, selectedOptions, onChange, acceptNewOption, zIndex, label, onSearch, required, disabled, errorMessage, displayCount: initialDisplayCount, isAllSelected, onToggleAllSelect, displayAllSelectedAsText, isAllSelect, placeholderForSearching, variant, onLabelPlusIconClick, className, onSelectButtonClick, labelAccessor, valueAccessor, searchAccessor, withSelectButton, loadMoreOptions, onEnter, maxVisibleChips, onBlur, maxDropdownHeight, dropdownContainerRef, noResultsMessage, chipAccessor, isCloseIconToolTip, }: MultiSelectProps) => React__default.JSX.Element;
|
|
527
526
|
|
|
528
527
|
interface ToasterProps {
|
|
529
528
|
/**Boolean value to handle state of toaster. */
|
|
@@ -700,7 +699,7 @@ interface ChipsProps {
|
|
|
700
699
|
onClick?: () => void;
|
|
701
700
|
}
|
|
702
701
|
|
|
703
|
-
declare const Chip: ({ label, fullText, variant, labelWidth, fullTextWidth, onClick, }: ChipsProps) =>
|
|
702
|
+
declare const Chip: ({ label, fullText, variant, labelWidth, fullTextWidth, onClick, }: ChipsProps) => React$1.JSX.Element;
|
|
704
703
|
|
|
705
704
|
interface TooltipProps {
|
|
706
705
|
/**
|
|
@@ -1169,7 +1168,7 @@ interface TextareaProps {
|
|
|
1169
1168
|
isLabelRequired?: boolean;
|
|
1170
1169
|
}
|
|
1171
1170
|
|
|
1172
|
-
declare const Textarea: ({ capacity, name, label, value, variant, error, helperText, disabled, required, placeholder, className, onChange, onBlur, onFocus, onPaste, rows, cols, resize, errorText, readOnly, displayCapacity, isLabelRequired, ...props }: TextareaProps) =>
|
|
1171
|
+
declare const Textarea: ({ capacity, name, label, value, variant, error, helperText, disabled, required, placeholder, className, onChange, onBlur, onFocus, onPaste, rows, cols, resize, errorText, readOnly, displayCapacity, isLabelRequired, ...props }: TextareaProps) => React$1.JSX.Element;
|
|
1173
1172
|
|
|
1174
1173
|
interface StatusButtonProps {
|
|
1175
1174
|
/**
|
|
@@ -1208,7 +1207,7 @@ interface StatusButtonProps {
|
|
|
1208
1207
|
displayTooltip?: boolean;
|
|
1209
1208
|
}
|
|
1210
1209
|
|
|
1211
|
-
declare const StatusButton: ({ status, label, onClick, className, style, disabled, useDefaultCursor, displayTooltip, ...props }: StatusButtonProps) =>
|
|
1210
|
+
declare const StatusButton: ({ status, label, onClick, className, style, disabled, useDefaultCursor, displayTooltip, ...props }: StatusButtonProps) => React$1.JSX.Element;
|
|
1212
1211
|
|
|
1213
1212
|
interface OptionClick {
|
|
1214
1213
|
/**
|
|
@@ -1353,7 +1352,7 @@ interface MenuOptionProps {
|
|
|
1353
1352
|
selectedValue?: string;
|
|
1354
1353
|
}
|
|
1355
1354
|
|
|
1356
|
-
declare const MenuOption: ({ labelName, iconName, tooltipTitle, tooltipPlacement, options, onClick, onOptionClick, iconButtonSize, iconButtonBorderRadius, iconSize, variant, zIndex, dropdownPlacement, optionCardVariant, targetRef, treeRowRef, isAddResourceButton, disabled, alignOption, displayCard, didMouseEntered, tableMenu, dropdownHeight, selectedValue, }: MenuOptionProps) =>
|
|
1355
|
+
declare const MenuOption: ({ labelName, iconName, tooltipTitle, tooltipPlacement, options, onClick, onOptionClick, iconButtonSize, iconButtonBorderRadius, iconSize, variant, zIndex, dropdownPlacement, optionCardVariant, targetRef, treeRowRef, isAddResourceButton, disabled, alignOption, displayCard, didMouseEntered, tableMenu, dropdownHeight, selectedValue, }: MenuOptionProps) => React$1.JSX.Element;
|
|
1357
1356
|
|
|
1358
1357
|
interface DataProps$3 {
|
|
1359
1358
|
/**
|
|
@@ -1543,7 +1542,7 @@ interface AddResourceButtonProps {
|
|
|
1543
1542
|
isFromTree?: boolean;
|
|
1544
1543
|
}
|
|
1545
1544
|
|
|
1546
|
-
declare const AddResourceButton: ({ id, variant, directionalArrow, zIndex, menuOptionZIndex, treeRowRef, onMenuOptionClick, isFromTree, }: AddResourceButtonProps) =>
|
|
1545
|
+
declare const AddResourceButton: ({ id, variant, directionalArrow, zIndex, menuOptionZIndex, treeRowRef, onMenuOptionClick, isFromTree, }: AddResourceButtonProps) => React$1.JSX.Element;
|
|
1547
1546
|
|
|
1548
1547
|
type BaseStatus = 'Passed' | 'Failed' | 'Warning' | 'Skipped' | 'On Hold' | 'Descoped' | 'To be Validated' | 'To be Tested' | 'Terminated';
|
|
1549
1548
|
type CaseFlexible<StatusType extends string> = StatusType | Lowercase<StatusType> | Uppercase<StatusType> | Capitalize<Lowercase<StatusType>>;
|
|
@@ -2444,7 +2443,7 @@ interface TabsProps$1 {
|
|
|
2444
2443
|
tabFlexSpacing?: 'space-between' | 'space-around' | 'flex-start' | 'flex-end' | 'center';
|
|
2445
2444
|
}
|
|
2446
2445
|
|
|
2447
|
-
declare const Tabs: ({ variant, tabsData, activeTabId, onTabClick, noBorder, noPadding, titleSize, isBorderBottomLine, isHoverBackground, isBorderRadius, tabFlexSpacing, }: TabsProps$1) =>
|
|
2446
|
+
declare const Tabs: ({ variant, tabsData, activeTabId, onTabClick, noBorder, noPadding, titleSize, isBorderBottomLine, isHoverBackground, isBorderRadius, tabFlexSpacing, }: TabsProps$1) => React$1.JSX.Element;
|
|
2448
2447
|
|
|
2449
2448
|
/**
|
|
2450
2449
|
* Represents a single tab in the BrowserTabs component.
|
|
@@ -2522,7 +2521,7 @@ interface BrowserTabsProps {
|
|
|
2522
2521
|
maxTabs?: number;
|
|
2523
2522
|
}
|
|
2524
2523
|
|
|
2525
|
-
declare const BrowserTabs: ({ tabsData, activeTabId, onTabClick, onTabClose, onTabAdd, maxTabWidth, showCloseOnActive, maxTabs, enableOverflowTooltip, onTabMouseEnter, onTabMouseLeave, }: BrowserTabsProps) =>
|
|
2524
|
+
declare const BrowserTabs: ({ tabsData, activeTabId, onTabClick, onTabClose, onTabAdd, maxTabWidth, showCloseOnActive, maxTabs, enableOverflowTooltip, onTabMouseEnter, onTabMouseLeave, }: BrowserTabsProps) => React$1.JSX.Element;
|
|
2526
2525
|
|
|
2527
2526
|
interface HighlightTextProps {
|
|
2528
2527
|
text?: string;
|
|
@@ -2609,7 +2608,7 @@ interface SearchProps {
|
|
|
2609
2608
|
handleBlur?: () => void;
|
|
2610
2609
|
}
|
|
2611
2610
|
|
|
2612
|
-
declare const Search: ({ placeholder, onSearch, disabled, width, value, isExpand, onClose, onExpand, showClose, helperText, showToaster, minLength, isAISearch, isAISearchClicked, handleActiveAiSearch, isClear, handleIsClear, style, handleFocus, handleBlur, }: SearchProps) =>
|
|
2611
|
+
declare const Search: ({ placeholder, onSearch, disabled, width, value, isExpand, onClose, onExpand, showClose, helperText, showToaster, minLength, isAISearch, isAISearchClicked, handleActiveAiSearch, isClear, handleIsClear, style, handleFocus, handleBlur, }: SearchProps) => React$1.JSX.Element;
|
|
2613
2612
|
|
|
2614
2613
|
interface DatePickerProps {
|
|
2615
2614
|
/**
|
|
@@ -2699,7 +2698,7 @@ interface StateDropdownProps {
|
|
|
2699
2698
|
zIndex?: number;
|
|
2700
2699
|
}
|
|
2701
2700
|
|
|
2702
|
-
declare const StateDropdown: ({ value, isReviewer, isApprovePage, handleStateValueClick, handleDropdownOptionsClick, disabled, isOnlyReviewer, showBorder, zIndex, }: StateDropdownProps) =>
|
|
2701
|
+
declare const StateDropdown: ({ value, isReviewer, isApprovePage, handleStateValueClick, handleDropdownOptionsClick, disabled, isOnlyReviewer, showBorder, zIndex, }: StateDropdownProps) => React$1.JSX.Element;
|
|
2703
2702
|
|
|
2704
2703
|
interface IconButtonProps {
|
|
2705
2704
|
label: string;
|
|
@@ -2811,7 +2810,7 @@ interface VariableInputProps {
|
|
|
2811
2810
|
list?: string[];
|
|
2812
2811
|
}
|
|
2813
2812
|
|
|
2814
|
-
declare const VariableInput: ({ type, name, label, disabled, required, placeholder, value, error, className, onChange, onKeyDown, onBlur, onFocus, list, ...props }: VariableInputProps) =>
|
|
2813
|
+
declare const VariableInput: ({ type, name, label, disabled, required, placeholder, value, error, className, onChange, onKeyDown, onBlur, onFocus, list, ...props }: VariableInputProps) => React__default.JSX.Element;
|
|
2815
2814
|
|
|
2816
2815
|
interface optionsType$1 {
|
|
2817
2816
|
label: string;
|
|
@@ -2830,7 +2829,7 @@ interface AllProjectsDropdownProps {
|
|
|
2830
2829
|
disabled?: boolean;
|
|
2831
2830
|
}
|
|
2832
2831
|
|
|
2833
|
-
declare const AllProjectsDropdown: ({ onClick, onMenuClick, options, selectedOption, selected, placeholder, disabled, }: AllProjectsDropdownProps) =>
|
|
2832
|
+
declare const AllProjectsDropdown: ({ onClick, onMenuClick, options, selectedOption, selected, placeholder, disabled, }: AllProjectsDropdownProps) => React$1.JSX.Element;
|
|
2834
2833
|
|
|
2835
2834
|
interface PieChartProps {
|
|
2836
2835
|
radius: number;
|
|
@@ -2941,7 +2940,7 @@ interface PaperProps {
|
|
|
2941
2940
|
rounded?: boolean;
|
|
2942
2941
|
}
|
|
2943
2942
|
|
|
2944
|
-
declare const Paper: ({ children, className, rounded }: PaperProps) =>
|
|
2943
|
+
declare const Paper: ({ children, className, rounded }: PaperProps) => React$1.JSX.Element;
|
|
2945
2944
|
|
|
2946
2945
|
type ChartItem = {
|
|
2947
2946
|
key: string;
|
|
@@ -3067,7 +3066,7 @@ interface NlpRenderOption {
|
|
|
3067
3066
|
name?: string;
|
|
3068
3067
|
}
|
|
3069
3068
|
|
|
3070
|
-
declare const NlpInput: ({ label, leftIcon, rightIcon, rightIconColor, showLabel, onHelpIconClick, aiIconClick, webServiceClick, containerWidth, optionsList, selectedOption, onChange, errorMsg, className, optionZIndex, disabled, borderRadius, showBorder, required, value, onSelect, chipOptionList, selectedChips, loadMoreOptions, isWebservice, closeInputOnOutsideClick, tooltipText, ChipsAccordionWidth, dropDownMessage, }: SelectProps) =>
|
|
3069
|
+
declare const NlpInput: ({ label, leftIcon, rightIcon, rightIconColor, showLabel, onHelpIconClick, aiIconClick, webServiceClick, containerWidth, optionsList, selectedOption, onChange, errorMsg, className, optionZIndex, disabled, borderRadius, showBorder, required, value, onSelect, chipOptionList, selectedChips, loadMoreOptions, isWebservice, closeInputOnOutsideClick, tooltipText, ChipsAccordionWidth, dropDownMessage, }: SelectProps) => React$1.JSX.Element;
|
|
3071
3070
|
|
|
3072
3071
|
interface IconRadioItem {
|
|
3073
3072
|
/**
|
|
@@ -3133,7 +3132,7 @@ interface MachineInputFieldProps {
|
|
|
3133
3132
|
}
|
|
3134
3133
|
|
|
3135
3134
|
declare const MachineInputField: {
|
|
3136
|
-
({ width, options, runCount, className, contentReverse, onClick, modalId, scriptType, readOnly, isMissing, }: MachineInputFieldProps):
|
|
3135
|
+
({ width, options, runCount, className, contentReverse, onClick, modalId, scriptType, readOnly, isMissing, }: MachineInputFieldProps): React$1.JSX.Element;
|
|
3137
3136
|
displayName: string;
|
|
3138
3137
|
};
|
|
3139
3138
|
|
|
@@ -3246,7 +3245,7 @@ declare const AttachmentButton: React__default.FC<AttachmentUploaderProps>;
|
|
|
3246
3245
|
|
|
3247
3246
|
type AcceptedType = string | (() => void) | Record<string, unknown> | unknown[];
|
|
3248
3247
|
|
|
3249
|
-
declare const Toastify: () =>
|
|
3248
|
+
declare const Toastify: () => React$1.JSX.Element;
|
|
3250
3249
|
|
|
3251
3250
|
declare const toast: {
|
|
3252
3251
|
success: (arg1: AcceptedType, arg2?: AcceptedType) => void;
|
|
@@ -3893,7 +3892,7 @@ interface TableProps$1 {
|
|
|
3893
3892
|
highlightText?: string;
|
|
3894
3893
|
}
|
|
3895
3894
|
|
|
3896
|
-
declare const TableWithAccordion: ({ highlightText, tableMeta, tableData, accordionType, noDataContent, height, withFixedHeader, headerType, TableAccordionStateIconWidth, TableAccordionStateIconHeight, }: TableProps$1) =>
|
|
3895
|
+
declare const TableWithAccordion: ({ highlightText, tableMeta, tableData, accordionType, noDataContent, height, withFixedHeader, headerType, TableAccordionStateIconWidth, TableAccordionStateIconHeight, }: TableProps$1) => React$1.JSX.Element;
|
|
3897
3896
|
|
|
3898
3897
|
interface ProgressBarProps {
|
|
3899
3898
|
progressPercentage?: number;
|
|
@@ -4207,7 +4206,7 @@ interface HistoryCardProps {
|
|
|
4207
4206
|
*/
|
|
4208
4207
|
profileShortName: string;
|
|
4209
4208
|
}
|
|
4210
|
-
declare const HistoryCard: ({ variant, title, tabTitle, comment, profileShortName, }: HistoryCardProps) =>
|
|
4209
|
+
declare const HistoryCard: ({ variant, title, tabTitle, comment, profileShortName, }: HistoryCardProps) => React$1.JSX.Element;
|
|
4211
4210
|
|
|
4212
4211
|
interface ToggleAiIconProps {
|
|
4213
4212
|
onChange?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
@@ -4413,7 +4412,7 @@ interface Option$2 {
|
|
|
4413
4412
|
[key: string]: OptionValue$1;
|
|
4414
4413
|
}
|
|
4415
4414
|
|
|
4416
|
-
declare const EditLabel: ({ id, onConfirm, onCancel, handleCustomError, value, label, optionsList, selectedOption, withDropdown, inputFieldWidth, selectFieldWidth, textColor, tooltip, required, isDisable, onClick, highlightText, isEditable, setIsEditable, cursor, isOnBlurTrue, handleOnChange, handleTriggerDoubleClick, truncatedTextCount, truncatedType, confirmIconTooltip, cancelIconTooltip, inlineValidationError, onChangeValidationError, isTableTree, isAutoTruncate, }: EditLabelProps) =>
|
|
4415
|
+
declare const EditLabel: ({ id, onConfirm, onCancel, handleCustomError, value, label, optionsList, selectedOption, withDropdown, inputFieldWidth, selectFieldWidth, textColor, tooltip, required, isDisable, onClick, highlightText, isEditable, setIsEditable, cursor, isOnBlurTrue, handleOnChange, handleTriggerDoubleClick, truncatedTextCount, truncatedType, confirmIconTooltip, cancelIconTooltip, inlineValidationError, onChangeValidationError, isTableTree, isAutoTruncate, }: EditLabelProps) => React$1.JSX.Element;
|
|
4417
4416
|
|
|
4418
4417
|
interface ErrorBoundaryProps {
|
|
4419
4418
|
fallback: ReactNode;
|
|
@@ -4479,7 +4478,7 @@ interface TabsProps {
|
|
|
4479
4478
|
titleSize?: number | string;
|
|
4480
4479
|
}
|
|
4481
4480
|
|
|
4482
|
-
declare const TabsWithSilder: ({ variant, tabsData, activeTabId, onTabClick, noBorder, noPadding, titleSize, }: TabsProps) =>
|
|
4481
|
+
declare const TabsWithSilder: ({ variant, tabsData, activeTabId, onTabClick, noBorder, noPadding, titleSize, }: TabsProps) => React$1.JSX.Element;
|
|
4483
4482
|
|
|
4484
4483
|
interface StatusIndicatorProps {
|
|
4485
4484
|
label: string;
|
|
@@ -4689,7 +4688,7 @@ declare const TableTreeFn: React__default.ForwardRefExoticComponent<TreeTablePro
|
|
|
4689
4688
|
declare const Loader: (details: {
|
|
4690
4689
|
name: string;
|
|
4691
4690
|
loaderName: string;
|
|
4692
|
-
}) =>
|
|
4691
|
+
}) => React$1.JSX.Element;
|
|
4693
4692
|
|
|
4694
4693
|
interface NoDataMessageProps {
|
|
4695
4694
|
isVisible: boolean;
|
|
@@ -4717,7 +4716,7 @@ type LayoutWithDrawerProps = {
|
|
|
4717
4716
|
top?: string;
|
|
4718
4717
|
children?: React__default.ReactNode;
|
|
4719
4718
|
};
|
|
4720
|
-
declare const LayoutWithDrawer: ({ drawerProps, showDrawer, children, zIndex, top, }: LayoutWithDrawerProps) =>
|
|
4719
|
+
declare const LayoutWithDrawer: ({ drawerProps, showDrawer, children, zIndex, top, }: LayoutWithDrawerProps) => React__default.JSX.Element;
|
|
4721
4720
|
|
|
4722
4721
|
interface NetworkErrorBoundaryProps {
|
|
4723
4722
|
children: ReactNode;
|
|
@@ -5031,7 +5030,7 @@ interface CommentsProps {
|
|
|
5031
5030
|
autoFocus?: boolean;
|
|
5032
5031
|
}
|
|
5033
5032
|
|
|
5034
|
-
declare const Comments: ({ commentsData, handleAddComment, handleEditComment, handleDeleteComment, onCommentsDataChange, currentUser, isDisable, userDetails, createdByID, rowBreakCharCount, isVewMode, deleteEnable, showTextarea, autoFocus, }: CommentsProps) =>
|
|
5033
|
+
declare const Comments: ({ commentsData, handleAddComment, handleEditComment, handleDeleteComment, onCommentsDataChange, currentUser, isDisable, userDetails, createdByID, rowBreakCharCount, isVewMode, deleteEnable, showTextarea, autoFocus, }: CommentsProps) => React__default.JSX.Element;
|
|
5035
5034
|
|
|
5036
5035
|
declare const useFileDropzone: (options: DropzoneOptions) => DropzoneState;
|
|
5037
5036
|
|
|
@@ -5853,7 +5852,7 @@ declare const StatusBadge: ({ gap, fontSize, entityType, statusValues, }: {
|
|
|
5853
5852
|
value: number;
|
|
5854
5853
|
tooltipValue?: number;
|
|
5855
5854
|
}[];
|
|
5856
|
-
}) =>
|
|
5855
|
+
}) => React$1.JSX.Element;
|
|
5857
5856
|
|
|
5858
5857
|
interface ToggleOption {
|
|
5859
5858
|
label: string;
|
|
@@ -5892,7 +5891,7 @@ interface AutoTruncateTextComponentProps {
|
|
|
5892
5891
|
placement?: Props['placement'];
|
|
5893
5892
|
}
|
|
5894
5893
|
|
|
5895
|
-
declare const AutoTruncateText: React$1.MemoExoticComponent<({ children, className, lines, interactive, placement, }: AutoTruncateTextComponentProps) =>
|
|
5894
|
+
declare const AutoTruncateText: React$1.MemoExoticComponent<({ children, className, lines, interactive, placement, }: AutoTruncateTextComponentProps) => React$1.JSX.Element>;
|
|
5896
5895
|
|
|
5897
5896
|
declare const cleanAllTooltips: () => void;
|
|
5898
5897
|
|