pixel-react 1.13.83 → 1.13.85
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/colorPaletteList.js +32 -7
- package/lib/StyleGuide/ColorPalette/colorPaletteList.js.map +1 -1
- package/lib/assets/icons/add_new_file.svg.js +1 -1
- package/lib/assets/icons/add_new_file.svg.js.map +1 -1
- package/lib/assets/icons/optimize_stepgroup.svg.js +1 -3
- package/lib/assets/icons/optimize_stepgroup.svg.js.map +1 -1
- package/lib/assets/icons/screen_expand_icon.svg.js +6 -0
- package/lib/assets/icons/screen_expand_icon.svg.js.map +1 -0
- package/lib/assets/icons/screenshot_capture_icon.svg.js +6 -0
- package/lib/assets/icons/screenshot_capture_icon.svg.js.map +1 -0
- package/lib/assets/icons/upload_file.svg.js +1 -1
- package/lib/assets/icons/upload_file.svg.js.map +1 -1
- package/lib/components/Charts/MultiRadialChart/MultiRadialChart.js +2 -3
- package/lib/components/Charts/MultiRadialChart/MultiRadialChart.js.map +1 -1
- package/lib/components/Comments/Comments.js +22 -23
- package/lib/components/Comments/Comments.js.map +1 -1
- package/lib/components/Comments/childComment/ChildComment.js +25 -27
- package/lib/components/Comments/childComment/ChildComment.js.map +1 -1
- package/lib/components/Comments/mentionUser/MentionUser.js +3 -1
- package/lib/components/Comments/mentionUser/MentionUser.js.map +1 -1
- package/lib/components/Comments/type.d.ts +1 -0
- package/lib/components/ContentCard/ContentCard.js +10 -2
- package/lib/components/ContentCard/ContentCard.js.map +1 -1
- package/lib/components/ContentCard/types.d.ts +1 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +220 -45
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.js +1 -12
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.js.map +1 -1
- package/lib/components/Icon/iconList.js +4 -0
- package/lib/components/Icon/iconList.js.map +1 -1
- package/lib/components/Input/Input.js +0 -1
- package/lib/components/Input/Input.js.map +1 -1
- package/lib/components/InputWithDropdown/InputWithDropdown.js +4 -2
- package/lib/components/InputWithDropdown/InputWithDropdown.js.map +1 -1
- package/lib/components/InputWithDropdown/types.d.ts +4 -0
- package/lib/components/MediaViewerModal/MediaViewerModal.js +6 -2
- package/lib/components/MediaViewerModal/MediaViewerModal.js.map +1 -1
- package/lib/components/MediaViewerModal/type.d.ts +2 -0
- package/lib/components/MenuOption/MenuOption.js +2 -2
- package/lib/components/MenuOption/MenuOption.js.map +1 -1
- package/lib/components/NoDataContent/NoDataContent.js +5 -1
- package/lib/components/NoDataContent/NoDataContent.js.map +1 -1
- package/lib/components/NoDataContent/type.d.ts +1 -0
- package/lib/components/OverviewModal/overviewModal.js +3 -1
- package/lib/components/OverviewModal/overviewModal.js.map +1 -1
- package/lib/components/OverviewModal/types.d.ts +1 -0
- package/lib/components/ProgressBar/ProgressBar.js +8 -7
- package/lib/components/ProgressBar/ProgressBar.js.map +1 -1
- package/lib/components/ScriptGenerationLoader/ScriptGenerationLoader.js +47 -13
- package/lib/components/ScriptGenerationLoader/ScriptGenerationLoader.js.map +1 -1
- package/lib/components/ScriptGenerationLoader/types.d.ts +5 -1
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.d.ts +1 -1
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.js +0 -2
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.js.map +1 -1
- package/lib/components/SequentialConnectingBranch/components/Branches/types.d.ts +1 -1
- package/lib/components/TableTreeFn/Components/TableBody.d.ts +3 -0
- package/lib/components/TableTreeFn/Components/TableBody.js +68 -0
- package/lib/components/TableTreeFn/Components/TableBody.js.map +1 -0
- package/lib/components/TableTreeFn/Components/TableCell.d.ts +4 -0
- package/lib/components/TableTreeFn/Components/TableCell.js +160 -0
- package/lib/components/TableTreeFn/Components/TableCell.js.map +1 -0
- package/lib/components/TableTreeFn/Components/TableHead.d.ts +4 -0
- package/lib/components/TableTreeFn/Components/TableHead.js +79 -0
- package/lib/components/TableTreeFn/Components/TableHead.js.map +1 -0
- package/lib/components/TableTreeFn/Components/TableRow.d.ts +4 -0
- package/lib/components/TableTreeFn/Components/TableRow.js +54 -0
- package/lib/components/TableTreeFn/Components/TableRow.js.map +1 -0
- package/lib/components/TableTreeFn/TableTreeFn.d.ts +5 -0
- package/lib/components/TableTreeFn/TableTreeFn.js +256 -0
- package/lib/components/TableTreeFn/TableTreeFn.js.map +1 -0
- package/lib/components/TableTreeFn/Utils/addLastChild.d.ts +2 -0
- package/lib/components/TableTreeFn/Utils/addLastChild.js +28 -0
- package/lib/components/TableTreeFn/Utils/addLastChild.js.map +1 -0
- package/lib/components/TableTreeFn/Utils/addNewRow.d.ts +14 -0
- package/lib/components/TableTreeFn/Utils/addNewRow.js +77 -0
- package/lib/components/TableTreeFn/Utils/addNewRow.js.map +1 -0
- package/lib/components/TableTreeFn/Utils/formatDataCell.d.ts +2 -0
- package/lib/components/TableTreeFn/Utils/formatDataCell.js +18 -0
- package/lib/components/TableTreeFn/Utils/formatDataCell.js.map +1 -0
- package/lib/components/TableTreeFn/Utils/getAllChildIds.d.ts +2 -0
- package/lib/components/TableTreeFn/Utils/getAllChildIds.js +12 -0
- package/lib/components/TableTreeFn/Utils/getAllChildIds.js.map +1 -0
- package/lib/components/TableTreeFn/Utils/renderSpaces.d.ts +0 -0
- package/lib/components/TableTreeFn/Utils/renderSpaces.js +2 -0
- package/lib/components/TableTreeFn/Utils/renderSpaces.js.map +1 -0
- package/lib/components/TableTreeFn/data.d.ts +247 -0
- package/lib/components/TableTreeFn/data.js +528 -0
- package/lib/components/TableTreeFn/data.js.map +1 -0
- package/lib/components/TableTreeFn/index.d.ts +1 -0
- package/lib/components/TableTreeFn/index.js +2 -0
- package/lib/components/TableTreeFn/index.js.map +1 -0
- package/lib/components/TableTreeFn/types.d.ts +141 -0
- package/lib/components/TableTreeFn/types.js +2 -0
- package/lib/components/TableTreeFn/types.js.map +1 -0
- package/lib/index.cjs +1073 -168
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +129 -47
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib/node_modules/js-beautify/js/src/css/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/css/options.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/options.js +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 +1 -1
- package/lib/utils/getTreeDetails/getTreeDetails.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
@@ -451,24 +451,24 @@ interface AccordionProps {
|
|
451
451
|
*/
|
452
452
|
declare const Accordion: ({ highlightText, headerTitle, color, minHeight, accordionContent, disable, disableInfoMessage, accordionStateIconName, AccordionStateIconWidth, AccordionStateIconHeight, isExpand, onClick, className, iconColor, }: AccordionProps) => react_jsx_runtime.JSX.Element;
|
453
453
|
|
454
|
-
type OptionValue$
|
455
|
-
interface Option$
|
456
|
-
[key: string]: OptionValue$
|
454
|
+
type OptionValue$4 = any;
|
455
|
+
interface Option$6 {
|
456
|
+
[key: string]: OptionValue$4;
|
457
457
|
}
|
458
458
|
interface MultiSelectProps {
|
459
|
-
options: Option$
|
459
|
+
options: Option$6[];
|
460
460
|
type?: 'email' | 'text';
|
461
461
|
label: string;
|
462
|
-
selectedOptions?: Option$
|
462
|
+
selectedOptions?: Option$6[];
|
463
463
|
disabled?: boolean;
|
464
464
|
onSearch?: (searchedKeyword: string) => void;
|
465
|
-
onChange?: (selectedOptions: Option$
|
465
|
+
onChange?: (selectedOptions: Option$6[]) => void;
|
466
466
|
acceptNewOption?: boolean;
|
467
467
|
zIndex?: number;
|
468
468
|
required?: boolean;
|
469
469
|
errorMessage?: string;
|
470
470
|
withSelectButton?: boolean;
|
471
|
-
onSelectButtonClick?: (selectedOptions: Option$
|
471
|
+
onSelectButtonClick?: (selectedOptions: Option$6[]) => void;
|
472
472
|
displayCount?: boolean;
|
473
473
|
isAllSelected?: boolean;
|
474
474
|
onToggleAllSelect?: (checkedState: boolean) => void;
|
@@ -909,9 +909,9 @@ interface SelectProps$1 {
|
|
909
909
|
* Provide the boolean value if arrow icon is reuired or not
|
910
910
|
*/
|
911
911
|
showArrowIcon?: boolean;
|
912
|
-
optionsList: Option$
|
913
|
-
selectedOption: Option$
|
914
|
-
onChange: (option: Option$
|
912
|
+
optionsList: Option$5[];
|
913
|
+
selectedOption: Option$5;
|
914
|
+
onChange: (option: Option$5) => void;
|
915
915
|
errorMsg?: string;
|
916
916
|
className?: string;
|
917
917
|
optionZIndex?: number;
|
@@ -992,9 +992,9 @@ interface SelectProps$1 {
|
|
992
992
|
*/
|
993
993
|
dropDownRef?: RefObject<HTMLDivElement>;
|
994
994
|
}
|
995
|
-
type OptionValue$
|
996
|
-
interface Option$
|
997
|
-
[key: string]: OptionValue$
|
995
|
+
type OptionValue$3 = any;
|
996
|
+
interface Option$5 {
|
997
|
+
[key: string]: OptionValue$3;
|
998
998
|
}
|
999
999
|
|
1000
1000
|
declare const Select: FC<SelectProps$1>;
|
@@ -1753,7 +1753,7 @@ declare const ForwardedForms: <T extends Form.FieldValues>(props: FormProps<T> &
|
|
1753
1753
|
ref?: React__default.Ref<any>;
|
1754
1754
|
}) => JSX.Element;
|
1755
1755
|
|
1756
|
-
interface Option$
|
1756
|
+
interface Option$4 {
|
1757
1757
|
label: string | ReactNode;
|
1758
1758
|
value: string;
|
1759
1759
|
}
|
@@ -1802,11 +1802,11 @@ interface InputWithDropdownProps {
|
|
1802
1802
|
/**
|
1803
1803
|
* Options for the select dropdown
|
1804
1804
|
*/
|
1805
|
-
optionsList: Option$
|
1805
|
+
optionsList: Option$4[];
|
1806
1806
|
/**
|
1807
1807
|
* Selected option for the select dropdown
|
1808
1808
|
*/
|
1809
|
-
selectedOption?: Option$
|
1809
|
+
selectedOption?: Option$4;
|
1810
1810
|
/**
|
1811
1811
|
* onChange handler for input changes
|
1812
1812
|
*/
|
@@ -1847,6 +1847,10 @@ interface InputWithDropdownProps {
|
|
1847
1847
|
leftDropDownPositionZindex?: number;
|
1848
1848
|
rightDropDownPositionZindex?: number;
|
1849
1849
|
onKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
1850
|
+
/**
|
1851
|
+
* pattern for input component
|
1852
|
+
*/
|
1853
|
+
pattern?: string;
|
1850
1854
|
}
|
1851
1855
|
|
1852
1856
|
declare const InputWithDropdown: React$1.ForwardRefExoticComponent<InputWithDropdownProps & React$1.RefAttributes<HTMLInputElement>>;
|
@@ -2048,6 +2052,7 @@ interface OverviewModalProps {
|
|
2048
2052
|
overlay?: boolean;
|
2049
2053
|
downloadHandler: () => void;
|
2050
2054
|
zIndex?: number;
|
2055
|
+
customStyle?: React.CSSProperties;
|
2051
2056
|
multiData?: Array<{
|
2052
2057
|
machineName: string;
|
2053
2058
|
scriptName: string;
|
@@ -2158,7 +2163,7 @@ type TreeNodeProps = {
|
|
2158
2163
|
isScript?: boolean;
|
2159
2164
|
};
|
2160
2165
|
|
2161
|
-
interface NewNode {
|
2166
|
+
interface NewNode$1 {
|
2162
2167
|
sourceId?: string;
|
2163
2168
|
payloadSourceId?: string;
|
2164
2169
|
action?: 'addAbove' | 'addBelow' | 'addInside';
|
@@ -2171,27 +2176,27 @@ interface NewNode {
|
|
2171
2176
|
confirmIconTooltip?: string;
|
2172
2177
|
cancelIconTooltip?: string;
|
2173
2178
|
}
|
2174
|
-
declare type JSX$
|
2175
|
-
type RootNode = {
|
2179
|
+
declare type JSX$2 = ReactNode | JSX$2.Element[] | string | null;
|
2180
|
+
type RootNode$1 = {
|
2176
2181
|
node: any;
|
2177
2182
|
select: 'radio' | 'checkbox' | 'none';
|
2178
|
-
cell?: (row: any) => JSX$
|
2179
|
-
actions?: (row: any, treeRowRef?: React.RefObject<HTMLDivElement | null>) => JSX$
|
2183
|
+
cell?: (row: any) => JSX$2;
|
2184
|
+
actions?: (row: any, treeRowRef?: React.RefObject<HTMLDivElement | null>) => JSX$2;
|
2180
2185
|
};
|
2181
|
-
interface Column {
|
2182
|
-
name: string | JSX$
|
2186
|
+
interface Column$1 {
|
2187
|
+
name: string | JSX$2;
|
2183
2188
|
accessor: string;
|
2184
2189
|
width: string;
|
2185
2190
|
isClickable?: boolean;
|
2186
|
-
cell?: (row: any) => JSX$
|
2187
|
-
actions?: (row: any, treeRowRef?: React.RefObject<HTMLDivElement | null>) => JSX$
|
2191
|
+
cell?: (row: any) => JSX$2;
|
2192
|
+
actions?: (row: any, treeRowRef?: React.RefObject<HTMLDivElement | null>) => JSX$2;
|
2188
2193
|
isTree?: boolean;
|
2189
2194
|
defaultValue?: string;
|
2190
|
-
defaultActions?: () => JSX$
|
2195
|
+
defaultActions?: () => JSX$2;
|
2191
2196
|
}
|
2192
|
-
interface TreeTableProps {
|
2197
|
+
interface TreeTableProps$1 {
|
2193
2198
|
treeData: any;
|
2194
|
-
columnsData: Column[];
|
2199
|
+
columnsData: Column$1[];
|
2195
2200
|
selected?: string[];
|
2196
2201
|
select?: 'radio' | 'checkbox' | 'none';
|
2197
2202
|
onChange?: (e: any, node: string[] | any) => void;
|
@@ -2200,11 +2205,11 @@ interface TreeTableProps {
|
|
2200
2205
|
loadMore?: (_direction?: string) => void;
|
2201
2206
|
tableBorder?: string;
|
2202
2207
|
height?: number | string;
|
2203
|
-
newNode?: NewNode;
|
2204
|
-
onAddConfirm?: (_name: string, _type?: Option$
|
2208
|
+
newNode?: NewNode$1;
|
2209
|
+
onAddConfirm?: (_name: string, _type?: Option$3) => void;
|
2205
2210
|
onAddCancel?: () => void;
|
2206
2211
|
loading?: boolean;
|
2207
|
-
rootNode?: RootNode;
|
2212
|
+
rootNode?: RootNode$1;
|
2208
2213
|
getContentLength?: number;
|
2209
2214
|
handleEditFieldError?: (inputText: string) => string;
|
2210
2215
|
pagination?: boolean;
|
@@ -2219,12 +2224,12 @@ interface TreeTableProps {
|
|
2219
2224
|
disableEditLabelConfirmIcon?: boolean;
|
2220
2225
|
transparentHeader?: boolean;
|
2221
2226
|
}
|
2222
|
-
type OptionValue$
|
2223
|
-
interface Option$
|
2224
|
-
[key: string]: OptionValue$
|
2227
|
+
type OptionValue$2 = any;
|
2228
|
+
interface Option$3 {
|
2229
|
+
[key: string]: OptionValue$2;
|
2225
2230
|
}
|
2226
2231
|
|
2227
|
-
declare const TreeTable: React__default.ForwardRefExoticComponent<TreeTableProps & React__default.RefAttributes<HTMLDivElement>>;
|
2232
|
+
declare const TreeTable: React__default.ForwardRefExoticComponent<TreeTableProps$1 & React__default.RefAttributes<HTMLDivElement>>;
|
2228
2233
|
|
2229
2234
|
interface TabsProps$1 {
|
2230
2235
|
/**
|
@@ -2495,7 +2500,7 @@ interface StateDropdownProps {
|
|
2495
2500
|
value: string;
|
2496
2501
|
isReviewer: boolean;
|
2497
2502
|
isApprovePage: boolean;
|
2498
|
-
handleDropdownOptionsClick: (option: Option$
|
2503
|
+
handleDropdownOptionsClick: (option: Option$5) => void;
|
2499
2504
|
disabled: boolean;
|
2500
2505
|
isOnlyReviewer: boolean;
|
2501
2506
|
handleStateValueClick: () => void;
|
@@ -2929,9 +2934,9 @@ interface SequentialConnectingBranchProps {
|
|
2929
2934
|
machineInstances: ExecutionContext[] | {}[];
|
2930
2935
|
machineColumnWidth?: number;
|
2931
2936
|
machineColumnCount?: number;
|
2932
|
-
selectedMachine?: Option$
|
2933
|
-
machineOptionsList?: Option$
|
2934
|
-
onHandleSelect?: (option: Option$
|
2937
|
+
selectedMachine?: Option$5;
|
2938
|
+
machineOptionsList?: Option$5[];
|
2939
|
+
onHandleSelect?: (option: Option$5) => void;
|
2935
2940
|
onAddBrowserInstance?: (modalId: string) => void;
|
2936
2941
|
onUpdateAddBrowserInstance?: (modalId: string, machineInstance: ExecutionContext) => void;
|
2937
2942
|
onDeleteBrowserInstance?: (id: string, runCount: number) => void;
|
@@ -3091,6 +3096,7 @@ declare const LineLoader: React__default.FC<LineLoaderProps>;
|
|
3091
3096
|
interface ContentCardProps {
|
3092
3097
|
contentHeader: string;
|
3093
3098
|
data: Record<string | number, string | number>;
|
3099
|
+
maxHeight?: string;
|
3094
3100
|
}
|
3095
3101
|
|
3096
3102
|
declare const ContentCard: FC<ContentCardProps>;
|
@@ -4056,14 +4062,14 @@ interface ChipsWithCountProps {
|
|
4056
4062
|
declare const ChipWithCount: FC<ChipsWithCountProps>;
|
4057
4063
|
|
4058
4064
|
interface EditLabelProps {
|
4059
|
-
onConfirm?: (_text: string, _selectedOption?: Option$
|
4065
|
+
onConfirm?: (_text: string, _selectedOption?: Option$2) => void;
|
4060
4066
|
onCancel?: () => void;
|
4061
4067
|
onClick?: () => void;
|
4062
4068
|
handleCustomError?: (inputText: string) => string;
|
4063
4069
|
value?: string;
|
4064
4070
|
label?: string;
|
4065
|
-
optionsList?: Option$
|
4066
|
-
selectedOption?: Option$
|
4071
|
+
optionsList?: Option$2[];
|
4072
|
+
selectedOption?: Option$2;
|
4067
4073
|
withDropdown?: boolean;
|
4068
4074
|
inputFieldWidth?: number;
|
4069
4075
|
selectFieldWidth?: number;
|
@@ -4089,14 +4095,14 @@ interface EditLabelProps {
|
|
4089
4095
|
onChangeValidationError?: boolean;
|
4090
4096
|
truncatedType?: 'count' | 'pixel';
|
4091
4097
|
}
|
4092
|
-
type OptionValue = any;
|
4098
|
+
type OptionValue$1 = any;
|
4093
4099
|
type DisabledOptions = {
|
4094
4100
|
confirm?: boolean;
|
4095
4101
|
cancel?: boolean;
|
4096
4102
|
textField?: boolean;
|
4097
4103
|
};
|
4098
|
-
interface Option$
|
4099
|
-
[key: string]: OptionValue;
|
4104
|
+
interface Option$2 {
|
4105
|
+
[key: string]: OptionValue$1;
|
4100
4106
|
}
|
4101
4107
|
|
4102
4108
|
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, }: EditLabelProps) => react_jsx_runtime.JSX.Element;
|
@@ -4245,6 +4251,8 @@ interface MediaViewerModalProps {
|
|
4245
4251
|
width?: string;
|
4246
4252
|
height?: string;
|
4247
4253
|
showControls?: boolean;
|
4254
|
+
customStyle?: React.CSSProperties;
|
4255
|
+
overlay?: boolean;
|
4248
4256
|
}
|
4249
4257
|
|
4250
4258
|
declare const MediaViewerModal: React__default.FC<MediaViewerModalProps>;
|
@@ -4275,6 +4283,75 @@ interface SessionDropdownProps {
|
|
4275
4283
|
|
4276
4284
|
declare const SessionDropdown: React__default.FC<SessionDropdownProps>;
|
4277
4285
|
|
4286
|
+
interface NewNode {
|
4287
|
+
sourceId?: string;
|
4288
|
+
payloadSourceId?: string;
|
4289
|
+
action?: 'addAbove' | 'addBelow' | 'addInside';
|
4290
|
+
type?: 'input' | 'inputWithDropdown';
|
4291
|
+
options?: [];
|
4292
|
+
selectedOption?: string;
|
4293
|
+
value?: string;
|
4294
|
+
error?: string;
|
4295
|
+
label?: string;
|
4296
|
+
confirmIconTooltip?: string;
|
4297
|
+
cancelIconTooltip?: string;
|
4298
|
+
}
|
4299
|
+
declare type JSX$1 = ReactNode | JSX$1.Element[] | string | null;
|
4300
|
+
type RootNode = {
|
4301
|
+
node: any;
|
4302
|
+
select: 'radio' | 'checkbox' | 'none';
|
4303
|
+
cell?: (row: any) => JSX$1;
|
4304
|
+
actions?: (row: any, treeRowRef?: React.RefObject<HTMLDivElement | null>) => JSX$1;
|
4305
|
+
};
|
4306
|
+
interface Column {
|
4307
|
+
name: string | JSX$1;
|
4308
|
+
accessor: string;
|
4309
|
+
width: string;
|
4310
|
+
isClickable?: boolean;
|
4311
|
+
cell?: (row: any) => JSX$1;
|
4312
|
+
actions?: (row: any, treeRowRef?: React.RefObject<HTMLDivElement | null>) => JSX$1;
|
4313
|
+
isTree?: boolean;
|
4314
|
+
defaultValue?: string;
|
4315
|
+
defaultActions?: () => JSX$1;
|
4316
|
+
}
|
4317
|
+
interface TreeTableProps {
|
4318
|
+
treeData: any;
|
4319
|
+
columnsData: Column[];
|
4320
|
+
selected?: string[];
|
4321
|
+
select?: 'radio' | 'checkbox' | 'none';
|
4322
|
+
onChange?: (e: any, node: string[] | any) => void;
|
4323
|
+
onClick?: (e: React.MouseEvent<HTMLDivElement>, row: TreeNodeProps) => void;
|
4324
|
+
onExpand?: (node: TreeNodeProps) => void;
|
4325
|
+
loadMore?: (_direction?: string) => void;
|
4326
|
+
tableBorder?: string;
|
4327
|
+
height?: number | string;
|
4328
|
+
newNode?: NewNode;
|
4329
|
+
onAddConfirm?: (_name: string, _type?: Option$1) => void;
|
4330
|
+
onAddCancel?: () => void;
|
4331
|
+
loading?: boolean;
|
4332
|
+
rootNode?: RootNode;
|
4333
|
+
getContentLength?: number;
|
4334
|
+
handleEditFieldError?: (inputText: string) => string;
|
4335
|
+
pagination?: boolean;
|
4336
|
+
selectedNode?: string;
|
4337
|
+
tableHeaderBgColor?: string;
|
4338
|
+
hideOnDisable?: boolean;
|
4339
|
+
freezeColumns?: number;
|
4340
|
+
scriptLengthTruncate?: number;
|
4341
|
+
addModuleInputWidth?: number;
|
4342
|
+
addModuleSelectWidth?: number;
|
4343
|
+
onScroll?: () => void;
|
4344
|
+
disableEditLabelConfirmIcon?: boolean;
|
4345
|
+
transparentHeader?: boolean;
|
4346
|
+
navigateTreeNode?: string | null;
|
4347
|
+
}
|
4348
|
+
type OptionValue = any;
|
4349
|
+
interface Option$1 {
|
4350
|
+
[key: string]: OptionValue;
|
4351
|
+
}
|
4352
|
+
|
4353
|
+
declare const TableTreeFn: React__default.ForwardRefExoticComponent<TreeTableProps & React__default.RefAttributes<HTMLDivElement>>;
|
4354
|
+
|
4278
4355
|
type valueType$1 = any;
|
4279
4356
|
declare const checkEmpty: (value: valueType$1) => boolean;
|
4280
4357
|
|
@@ -5173,6 +5250,7 @@ interface NoDataFoundProps {
|
|
5173
5250
|
text?: string;
|
5174
5251
|
textFontSize?: string;
|
5175
5252
|
textDirectionRow?: boolean;
|
5253
|
+
gap?: string;
|
5176
5254
|
}
|
5177
5255
|
|
5178
5256
|
declare const NoDataContent: React__default.FC<NoDataFoundProps>;
|
@@ -5330,11 +5408,15 @@ declare const convertToBytes: (value: string) => number;
|
|
5330
5408
|
|
5331
5409
|
declare const StepResultStats: React__default.FC<any>;
|
5332
5410
|
|
5411
|
+
interface Action {
|
5412
|
+
text?: string;
|
5413
|
+
color?: string;
|
5414
|
+
}
|
5333
5415
|
interface ScriptGenerationLoaderProps {
|
5334
5416
|
/**
|
5335
5417
|
* array
|
5336
5418
|
*/
|
5337
|
-
actions?:
|
5419
|
+
actions?: Action[];
|
5338
5420
|
/**
|
5339
5421
|
* In percentage
|
5340
5422
|
*/
|
@@ -5348,4 +5430,4 @@ interface ScriptGenerationLoaderProps {
|
|
5348
5430
|
|
5349
5431
|
declare const ScriptGenerationLoader: React__default.FC<ScriptGenerationLoaderProps>;
|
5350
5432
|
|
5351
|
-
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, 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, 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, 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, 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, type RootNode, Row, SCRIPT_REGEX, SSN_REGEX, START_END_WHITESPACE_REGEX, STEP_GROUP_NAME_REGEX, ScriptGenerationLoader, ScriptSwitchButton, Search, Select, SequentialConnectingBranch, SessionDropdown, StateDropdown, StatusButton, StatusCard, StatusIndicator, StepLandingTable, StepResultStats, SwitchButton, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, TreeTable as TableTree, TableWithAccordion, Tabs, TabsWithSilder, Textarea as TextArea, TextEditor, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, type TreeNodeProps, 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, 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, togglePrePostConditions, truncateText, updateTreeState, useBeforeUnload, useClickOutside, useFileDropzone, useKeyboardActions, useTheme, useTriggerControl };
|
5433
|
+
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, 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, 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, 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, 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, type RootNode$1 as RootNode, Row, SCRIPT_REGEX, SSN_REGEX, START_END_WHITESPACE_REGEX, STEP_GROUP_NAME_REGEX, ScriptGenerationLoader, ScriptSwitchButton, Search, Select, SequentialConnectingBranch, SessionDropdown, StateDropdown, StatusButton, StatusCard, StatusIndicator, StepLandingTable, StepResultStats, SwitchButton, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, TreeTable as TableTree, TableTreeFn, TableWithAccordion, Tabs, TabsWithSilder, Textarea as TextArea, TextEditor, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, type TreeNodeProps, 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, 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, togglePrePostConditions, truncateText, updateTreeState, useBeforeUnload, useClickOutside, useFileDropzone, useKeyboardActions, useTheme, useTriggerControl };
|
package/lib/index.js
CHANGED
@@ -98,6 +98,7 @@ export { default as OsTree } from './components/OsTree/OsTree.js';
|
|
98
98
|
export { default as OtpVerification } from './components/OtpVerification/OtpVerification.js';
|
99
99
|
export { default as MediaViewerModel } from './components/MediaViewerModal/MediaViewerModal.js';
|
100
100
|
export { default as SessionDropdown } from './components/SessionDropdown/SessionDropdown.js';
|
101
|
+
export { default as TableTreeFn } from './components/TableTreeFn/TableTreeFn.js';
|
101
102
|
export { checkEmpty } from './utils/checkEmpty/checkEmpty.js';
|
102
103
|
export { getExtension, getExtensionWithPeriod } from './utils/getExtension/getExtension.js';
|
103
104
|
export { findAndInsert } from './utils/findAndInsert/findAndInsert.js';
|
package/lib/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __exports as beautifier } from '../../../../../_virtual/
|
1
|
+
import { __exports as beautifier } from '../../../../../_virtual/beautifier2.js';
|
2
2
|
import { __require as requireOptions } from './options.js';
|
3
3
|
import { __require as requireOutput } from '../core/output.js';
|
4
4
|
import { __require as requireInputscanner } from '../core/inputscanner.js';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __exports as beautifier } from '../../../../../_virtual/
|
1
|
+
import { __exports as beautifier } from '../../../../../_virtual/beautifier3.js';
|
2
2
|
import { __require as requireOptions } from './options.js';
|
3
3
|
import { __require as requireOutput } from '../core/output.js';
|
4
4
|
import { __require as requireTokenizer } from './tokenizer.js';
|