vaishu-react-comp 1.1.1 → 1.1.3
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/ComponentProps/TreeNodeProps.d.ts +2 -0
- package/lib/components/AddResourceButton/AddResourceButton.js +28 -15
- package/lib/components/AddResourceButton/AddResourceButton.js.map +1 -1
- package/lib/components/AppHeader/AppHeader.js +1 -1
- package/lib/components/AppHeader/AppHeader.js.map +1 -1
- package/lib/components/AppHeader/types.d.ts +1 -0
- package/lib/components/AttachmentButton/AttachmentButton.js +4 -1
- package/lib/components/AttachmentButton/AttachmentButton.js.map +1 -1
- package/lib/components/AttachmentButton/types.d.ts +1 -0
- 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/BrowserTabs/BrowserTabs.d.ts +1 -1
- package/lib/components/BrowserTabs/BrowserTabs.js +11 -7
- package/lib/components/BrowserTabs/BrowserTabs.js.map +1 -1
- package/lib/components/BrowserTabs/types.d.ts +7 -0
- package/lib/components/Button/types.d.ts +1 -1
- package/lib/components/Charts/DonutChart/DonutChart.js +24 -16
- package/lib/components/Charts/DonutChart/DonutChart.js.map +1 -1
- package/lib/components/Charts/DonutChart/type.d.ts +4 -1
- package/lib/components/ChatModalAi/ChatModalAi.js +11 -32
- package/lib/components/ChatModalAi/ChatModalAi.js.map +1 -1
- package/lib/components/ChatModalAi/types.d.ts +5 -0
- package/lib/components/ChipWithCount/ChipWithCount.js +4 -3
- package/lib/components/ChipWithCount/ChipWithCount.js.map +1 -1
- package/lib/components/ConditionalDropdown/ConditionalDropdown.js +2 -2
- package/lib/components/ConditionalDropdown/ConditionalDropdown.js.map +1 -1
- package/lib/components/ConnectingBranch/BranchComponents/MachineInstances.js +3 -2
- package/lib/components/ConnectingBranch/BranchComponents/MachineInstances.js.map +1 -1
- package/lib/components/ConnectingBranch/ConnectingBranch.js +6 -5
- package/lib/components/ConnectingBranch/ConnectingBranch.js.map +1 -1
- package/lib/components/ConnectingBranch/types.d.ts +2 -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/Drawer/Drawer.js +13 -4
- package/lib/components/Drawer/Drawer.js.map +1 -1
- package/lib/components/Drawer/Types.d.ts +5 -0
- package/lib/components/EditLabel/EditLabel.d.ts +1 -1
- package/lib/components/EditLabel/EditLabel.js +6 -4
- package/lib/components/EditLabel/EditLabel.js.map +1 -1
- package/lib/components/EditLabel/types.d.ts +2 -0
- package/lib/components/Editor/Editor.js +1 -1
- package/lib/components/Editor/Editor.js.map +1 -1
- package/lib/components/Editor/constants.js +121 -40
- package/lib/components/Editor/constants.js.map +1 -1
- package/lib/components/Excel/ColorBarSelector/ColorBarSelector.d.ts +1 -1
- package/lib/components/Excel/ColorBarSelector/ColorBarSelector.js +5 -3
- package/lib/components/Excel/ColorBarSelector/ColorBarSelector.js.map +1 -1
- package/lib/components/Excel/Data.d.ts +89 -17
- package/lib/components/Excel/Data.js +420 -56
- package/lib/components/Excel/Data.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFile.js +2 -2
- package/lib/components/Excel/ExcelFile/ExcelFile.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +96 -18
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Cell.js +5 -3
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Cell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.js +8 -8
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/DataEditor.js +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/DataEditor.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/EditableCell.js +20 -22
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/EditableCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.js +5 -4
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js +45 -5
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/actions.d.ts +16 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/actions.js +14 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/actions.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducer.js +157 -28
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducer.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.js +10 -3
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.js.map +1 -1
- package/lib/components/Excel/ExcelToolBar/ExcelToolBar.js +8 -2
- package/lib/components/Excel/ExcelToolBar/ExcelToolBar.js.map +1 -1
- package/lib/components/Excel/Types.d.ts +2 -0
- package/lib/components/Excel/dataConversion.d.ts +2 -2
- package/lib/components/Excel/dataConversion.js +6 -2
- package/lib/components/Excel/dataConversion.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/HOC/LayoutWithDrawer/LayoutWithDrawer.d.ts +11 -0
- package/lib/components/HOC/LayoutWithDrawer/LayoutWithDrawer.js +7 -0
- package/lib/components/HOC/LayoutWithDrawer/LayoutWithDrawer.js.map +1 -0
- package/lib/components/HOC/LayoutWithDrawer/index.d.ts +1 -0
- package/lib/components/HOC/LayoutWithDrawer/index.js +2 -0
- package/lib/components/HOC/LayoutWithDrawer/index.js.map +1 -0
- package/lib/components/Icon/iconList.js +106 -0
- package/lib/components/Icon/iconList.js.map +1 -1
- package/lib/components/Loader/Loader.d.ts +5 -0
- package/lib/components/Loader/Loader.js +8 -0
- package/lib/components/Loader/Loader.js.map +1 -0
- package/lib/components/Loader/index.d.ts +1 -0
- package/lib/components/Loader/index.js +2 -0
- package/lib/components/Loader/index.js.map +1 -0
- package/lib/components/MachineInputField/MachineInputField.d.ts +1 -1
- package/lib/components/MachineInputField/MachineInputField.js +4 -1
- package/lib/components/MachineInputField/MachineInputField.js.map +1 -1
- package/lib/components/MachineInputField/types.d.ts +1 -0
- package/lib/components/MediaPreview/MediaPreview.js +1 -1
- package/lib/components/MediaPreview/MediaPreview.js.map +1 -1
- package/lib/components/MediaViewerModal/MediaViewerModal.js +2 -3
- package/lib/components/MediaViewerModal/MediaViewerModal.js.map +1 -1
- package/lib/components/MediaViewerModal/type.d.ts +2 -1
- package/lib/components/MenuOption/MenuOption.js +19 -18
- package/lib/components/MenuOption/MenuOption.js.map +1 -1
- package/lib/components/MiniModal/MiniModal.js +44 -27
- package/lib/components/MiniModal/MiniModal.js.map +1 -1
- package/lib/components/MiniModal/types.d.ts +1 -1
- package/lib/components/MultiSelect/Dropdown.js +2 -1
- package/lib/components/MultiSelect/Dropdown.js.map +1 -1
- package/lib/components/NLPInput/components/ChipsFolder/ChipsAccordion.js +1 -1
- package/lib/components/NLPInput/components/ChipsFolder/ChipsAccordion.js.map +1 -1
- package/lib/components/NetworkErrorBoundary/NetworkErrorBoundary.d.ts +5 -0
- package/lib/components/NetworkErrorBoundary/NetworkErrorBoundary.js +19 -0
- package/lib/components/NetworkErrorBoundary/NetworkErrorBoundary.js.map +1 -0
- package/lib/components/NetworkErrorBoundary/index.d.ts +1 -0
- package/lib/components/NetworkErrorBoundary/index.js +2 -0
- package/lib/components/NetworkErrorBoundary/index.js.map +1 -0
- package/lib/components/NetworkErrorBoundary/types.d.ts +33 -0
- package/lib/components/NetworkErrorBoundary/types.js +2 -0
- package/lib/components/NetworkErrorBoundary/types.js.map +1 -0
- package/lib/components/NoDataAvailable/NoDataAvailable.d.ts +5 -0
- package/lib/components/NoDataAvailable/NoDataAvailable.js +11 -0
- package/lib/components/NoDataAvailable/NoDataAvailable.js.map +1 -0
- package/lib/components/NoDataAvailable/index.d.ts +1 -0
- package/lib/components/NoDataAvailable/index.js +2 -0
- package/lib/components/NoDataAvailable/index.js.map +1 -0
- package/lib/components/NoDataAvailable/type.d.ts +3 -0
- package/lib/components/NoDataAvailable/type.js +2 -0
- package/lib/components/NoDataAvailable/type.js.map +1 -0
- package/lib/components/NoResultFound/NoResultFound.d.ts +14 -0
- package/lib/components/NoResultFound/NoResultFound.js +7 -0
- package/lib/components/NoResultFound/NoResultFound.js.map +1 -0
- package/lib/components/NoResultFound/index.d.ts +1 -0
- package/lib/components/NoResultFound/index.js +2 -0
- package/lib/components/NoResultFound/index.js.map +1 -0
- package/lib/components/PopUpModal/PopUpModal.d.ts +1 -2
- package/lib/components/PopUpModal/PopUpModal.js +4 -3
- package/lib/components/PopUpModal/PopUpModal.js.map +1 -1
- package/lib/components/PrePostTable/components/DraggableTableRow.js +4 -1
- package/lib/components/PrePostTable/components/DraggableTableRow.js.map +1 -1
- package/lib/components/PrePostTable/components/PrePostStepAccordions.js +14 -3
- package/lib/components/PrePostTable/components/PrePostStepAccordions.js.map +1 -1
- package/lib/components/PromptContainer/PromptContainer.js +1 -1
- package/lib/components/PromptContainer/PromptContainer.js.map +1 -1
- package/lib/components/RadioButton/RadioButton.js +2 -2
- package/lib/components/RadioButton/RadioButton.js.map +1 -1
- package/lib/components/RadioButton/radioButtonTypes.d.ts +8 -0
- package/lib/components/RadioGroup/RadioGroup.js +2 -2
- package/lib/components/RadioGroup/RadioGroup.js.map +1 -1
- package/lib/components/RadioGroup/radioGroupTypes.d.ts +8 -0
- package/lib/components/ScriptCommentModal/ScriptCommentModal.d.ts +4 -0
- package/lib/components/ScriptCommentModal/ScriptCommentModal.js +47 -0
- package/lib/components/ScriptCommentModal/ScriptCommentModal.js.map +1 -0
- package/lib/components/ScriptCommentModal/components/ButtonActions.d.ts +5 -0
- package/lib/components/ScriptCommentModal/components/ButtonActions.js +8 -0
- package/lib/components/ScriptCommentModal/components/ButtonActions.js.map +1 -0
- package/lib/components/ScriptCommentModal/components/CommentCount.d.ts +4 -0
- package/lib/components/ScriptCommentModal/components/CommentCount.js +7 -0
- package/lib/components/ScriptCommentModal/components/CommentCount.js.map +1 -0
- package/lib/components/ScriptCommentModal/components/CommentDiscription.d.ts +5 -0
- package/lib/components/ScriptCommentModal/components/CommentDiscription.js +13 -0
- package/lib/components/ScriptCommentModal/components/CommentDiscription.js.map +1 -0
- package/lib/components/ScriptCommentModal/components/CommentFooter.d.ts +5 -0
- package/lib/components/ScriptCommentModal/components/CommentFooter.js +9 -0
- package/lib/components/ScriptCommentModal/components/CommentFooter.js.map +1 -0
- package/lib/components/ScriptCommentModal/components/CommentTitleText.d.ts +4 -0
- package/lib/components/ScriptCommentModal/components/CommentTitleText.js +7 -0
- package/lib/components/ScriptCommentModal/components/CommentTitleText.js.map +1 -0
- package/lib/components/ScriptCommentModal/components/CommentsTitle.d.ts +4 -0
- package/lib/components/ScriptCommentModal/components/CommentsTitle.js +12 -0
- package/lib/components/ScriptCommentModal/components/CommentsTitle.js.map +1 -0
- package/lib/components/ScriptCommentModal/components/DeleteComment.d.ts +3 -0
- package/lib/components/ScriptCommentModal/components/DeleteComment.js +15 -0
- package/lib/components/ScriptCommentModal/components/DeleteComment.js.map +1 -0
- package/lib/components/ScriptCommentModal/components/DeleteCommentIcon.d.ts +4 -0
- package/lib/components/ScriptCommentModal/components/DeleteCommentIcon.js +8 -0
- package/lib/components/ScriptCommentModal/components/DeleteCommentIcon.js.map +1 -0
- package/lib/components/ScriptCommentModal/components/DeleteCommentMessage.d.ts +3 -0
- package/lib/components/ScriptCommentModal/components/DeleteCommentMessage.js +7 -0
- package/lib/components/ScriptCommentModal/components/DeleteCommentMessage.js.map +1 -0
- package/lib/components/ScriptCommentModal/components/DeleteCommentPopup.d.ts +4 -0
- package/lib/components/ScriptCommentModal/components/DeleteCommentPopup.js +8 -0
- package/lib/components/ScriptCommentModal/components/DeleteCommentPopup.js.map +1 -0
- package/lib/components/ScriptCommentModal/components/FooterText.d.ts +5 -0
- package/lib/components/ScriptCommentModal/components/FooterText.js +8 -0
- package/lib/components/ScriptCommentModal/components/FooterText.js.map +1 -0
- package/lib/components/ScriptCommentModal/index.d.ts +1 -0
- package/lib/components/ScriptCommentModal/index.js +2 -0
- package/lib/components/ScriptCommentModal/index.js.map +1 -0
- package/lib/components/ScriptCommentModal/type.d.ts +59 -0
- package/lib/components/ScriptCommentModal/type.js +2 -0
- package/lib/components/ScriptCommentModal/type.js.map +1 -0
- package/lib/components/Select/Select.js +8 -7
- package/lib/components/Select/Select.js.map +1 -1
- package/lib/components/Select/components/Dropdown.js +107 -22
- package/lib/components/Select/components/Dropdown.js.map +1 -1
- package/lib/components/Select/components/types.d.ts +2 -0
- package/lib/components/Select/components/types.js.map +1 -1
- package/lib/components/Select/types.d.ts +9 -0
- package/lib/components/SelectionSwitcher/SelectionSwitcher.d.ts +5 -0
- package/lib/components/SelectionSwitcher/SelectionSwitcher.js +16 -0
- package/lib/components/SelectionSwitcher/SelectionSwitcher.js.map +1 -0
- package/lib/components/SelectionSwitcher/index.d.ts +1 -0
- package/lib/components/SelectionSwitcher/index.js +2 -0
- package/lib/components/SelectionSwitcher/index.js.map +1 -0
- package/lib/components/SelectionSwitcher/types.d.ts +13 -0
- package/lib/components/SelectionSwitcher/types.js +2 -0
- package/lib/components/SelectionSwitcher/types.js.map +1 -0
- package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.js +3 -3
- package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.js.map +1 -1
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.js +22 -13
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.js.map +1 -1
- package/lib/components/SequentialConnectingBranch/types.d.ts +2 -1
- package/lib/components/SessionDropdown/SessionDropdown.js +4 -4
- package/lib/components/SessionDropdown/SessionDropdown.js.map +1 -1
- package/lib/components/SessionDropdown/type.d.ts +2 -0
- package/lib/components/SessionManager/SessionManager.js +3 -3
- package/lib/components/SessionManager/SessionManager.js.map +1 -1
- package/lib/components/StatusBadge/StatusBadge.d.ts +2 -1
- package/lib/components/StatusBadge/StatusBadge.js +3 -3
- package/lib/components/StatusBadge/StatusBadge.js.map +1 -1
- package/lib/components/StatusButton/StatusButton.d.ts +1 -1
- package/lib/components/StatusButton/StatusButton.js +3 -2
- package/lib/components/StatusButton/StatusButton.js.map +1 -1
- package/lib/components/StatusButton/types.d.ts +2 -1
- package/lib/components/StepsLandingTable/Components/StepGroupAccordions.js +8 -5
- package/lib/components/StepsLandingTable/Components/StepGroupAccordions.js.map +1 -1
- package/lib/components/StepsLandingTable/Components/StepInnerTable.js.map +1 -1
- package/lib/components/StepsLandingTable/Components/StepResultStats.js +21 -2
- package/lib/components/StepsLandingTable/Components/StepResultStats.js.map +1 -1
- package/lib/components/StepsLandingTable/Components/StepTableMainRow.js +6 -4
- package/lib/components/StepsLandingTable/Components/StepTableMainRow.js.map +1 -1
- package/lib/components/StepsLandingTable/Components/StepsTitle.js +20 -3
- package/lib/components/StepsLandingTable/Components/StepsTitle.js.map +1 -1
- package/lib/components/StepsLandingTable/Components/Types.d.ts +11 -6
- package/lib/components/StepsLandingTable/StepLandingTable.js.map +1 -1
- package/lib/components/StepsLandingTable/types.d.ts +2 -0
- package/lib/components/StorageUsageBar/StorageUsageBar.d.ts +4 -0
- package/lib/components/StorageUsageBar/StorageUsageBar.js +47 -0
- package/lib/components/StorageUsageBar/StorageUsageBar.js.map +1 -0
- package/lib/components/StorageUsageBar/index.d.ts +1 -0
- package/lib/components/StorageUsageBar/index.js +2 -0
- package/lib/components/StorageUsageBar/index.js.map +1 -0
- package/lib/components/StorageUsageBar/types.d.ts +7 -0
- package/lib/components/StorageUsageBar/types.js +2 -0
- package/lib/components/StorageUsageBar/types.js.map +1 -0
- package/lib/components/Table/Table.js +2 -2
- package/lib/components/Table/Table.js.map +1 -1
- package/lib/components/Table/Types.d.ts +2 -0
- package/lib/components/Table/components/SortableRow.js +29 -16
- package/lib/components/Table/components/SortableRow.js.map +1 -1
- package/lib/components/Table/components/VirtualizedRows.d.ts +1 -1
- package/lib/components/Table/components/VirtualizedRows.js +6 -2
- package/lib/components/Table/components/VirtualizedRows.js.map +1 -1
- package/lib/components/TableTreeFn/Components/TableBody.d.ts +1 -1
- package/lib/components/TableTreeFn/Components/TableBody.js +12 -7
- package/lib/components/TableTreeFn/Components/TableBody.js.map +1 -1
- package/lib/components/TableTreeFn/Components/TableCell.d.ts +1 -1
- package/lib/components/TableTreeFn/Components/TableCell.js +24 -19
- package/lib/components/TableTreeFn/Components/TableCell.js.map +1 -1
- package/lib/components/TableTreeFn/Components/TableHead.d.ts +1 -1
- package/lib/components/TableTreeFn/Components/TableHead.js +23 -29
- package/lib/components/TableTreeFn/Components/TableHead.js.map +1 -1
- package/lib/components/TableTreeFn/Components/TableRow.d.ts +1 -1
- package/lib/components/TableTreeFn/Components/TableRow.js +7 -2
- package/lib/components/TableTreeFn/Components/TableRow.js.map +1 -1
- package/lib/components/TableTreeFn/TableTreeFn.d.ts +1 -1
- package/lib/components/TableTreeFn/TableTreeFn.js +726 -241
- package/lib/components/TableTreeFn/TableTreeFn.js.map +1 -1
- package/lib/components/TableTreeFn/Utils/TableCell.d.ts +1 -0
- package/lib/components/TableTreeFn/Utils/TableCell.js +24 -0
- package/lib/components/TableTreeFn/Utils/TableCell.js.map +1 -0
- package/lib/components/TableTreeFn/Utils/addLastChild.d.ts +1 -1
- package/lib/components/TableTreeFn/Utils/addLastChild.js +2 -2
- package/lib/components/TableTreeFn/Utils/addLastChild.js.map +1 -1
- package/lib/components/TableTreeFn/Utils/addNewRow.js +6 -5
- package/lib/components/TableTreeFn/Utils/addNewRow.js.map +1 -1
- package/lib/components/TableTreeFn/Utils/formatDataCell.js +1 -1
- package/lib/components/TableTreeFn/Utils/formatDataCell.js.map +1 -1
- package/lib/components/TableTreeFn/Utils/updateParentSibling.d.ts +1 -1
- package/lib/components/TableTreeFn/Utils/updateParentSibling.js +7 -7
- package/lib/components/TableTreeFn/Utils/updateParentSibling.js.map +1 -1
- package/lib/components/TableTreeFn/index.d.ts +2 -0
- package/lib/components/TableTreeFn/index.js +2 -0
- package/lib/components/TableTreeFn/index.js.map +1 -1
- package/lib/components/TableTreeFn/types.d.ts +32 -12
- package/lib/components/TextEditor/TextEditor.js +101 -26
- package/lib/components/TextEditor/TextEditor.js.map +1 -1
- package/lib/components/Tooltip/Tooltip.js +2 -2
- package/lib/components/Tooltip/Tooltip.js.map +1 -1
- package/lib/components/Tooltip/types.d.ts +1 -0
- package/lib/components/TooltipService/TooltipService.d.ts +4 -0
- package/lib/components/TooltipService/TooltipService.js +164 -0
- package/lib/components/TooltipService/TooltipService.js.map +1 -0
- package/lib/components/TooltipService/index.d.ts +1 -0
- package/lib/components/TooltipService/index.js +2 -0
- package/lib/components/TooltipService/index.js.map +1 -0
- package/lib/components/Typography/Typography.js +2 -2
- package/lib/components/Typography/Typography.js.map +1 -1
- package/lib/components/Typography/types.d.ts +1 -0
- package/lib/components/ZoomControl/ZoomControl.d.ts +5 -0
- package/lib/components/ZoomControl/ZoomControl.js +22 -0
- package/lib/components/ZoomControl/ZoomControl.js.map +1 -0
- package/lib/components/ZoomControl/index.d.ts +1 -0
- package/lib/components/ZoomControl/index.js +2 -0
- package/lib/components/ZoomControl/index.js.map +1 -0
- package/lib/components/ZoomControl/types.d.ts +8 -0
- package/lib/components/ZoomControl/types.js +2 -0
- package/lib/components/ZoomControl/types.js.map +1 -0
- package/lib/hooks/useClickOutside.d.ts +4 -1
- package/lib/hooks/useClickOutside.js +7 -5
- package/lib/hooks/useClickOutside.js.map +1 -1
- package/lib/index.d.ts +5893 -3
- package/lib/index.js +48 -2
- package/lib/index.js.map +1 -1
- package/lib/styles.css +1 -0
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/AddStepGroup/AddStepGroup.js +5 -2
- package/lib/utils/AddStepGroup/AddStepGroup.js.map +1 -1
- package/lib/utils/OnlineStatus/useOnlineStatus.d.ts +1 -0
- package/lib/utils/OnlineStatus/useOnlineStatus.js +20 -0
- package/lib/utils/OnlineStatus/useOnlineStatus.js.map +1 -0
- package/lib/utils/cleanAllTooltips/cleanAllTooltips.d.ts +1 -0
- package/lib/utils/cleanAllTooltips/cleanAllTooltips.js +8 -0
- package/lib/utils/cleanAllTooltips/cleanAllTooltips.js.map +1 -0
- package/lib/utils/converToCamelCase.d.ts +1 -0
- package/lib/utils/converToCamelCase.js +6 -0
- package/lib/utils/converToCamelCase.js.map +1 -0
- package/lib/utils/getTopVisibleNodeKey/getTopVisibleNodeKey.js +8 -9
- package/lib/utils/getTopVisibleNodeKey/getTopVisibleNodeKey.js.map +1 -1
- package/lib/utils/getTreeDetails/getTreeDetails.d.ts +1 -1
- package/lib/utils/getTreeDetails/getTreeDetails.js +37 -20
- package/lib/utils/getTreeDetails/getTreeDetails.js.map +1 -1
- package/lib/utils/handleTreeExpandAllCollapseAll/handleTreeExpandAllCollapseAll.js +1 -0
- package/lib/utils/handleTreeExpandAllCollapseAll/handleTreeExpandAllCollapseAll.js.map +1 -1
- package/lib/utils/handleTreeNodeSelect/handleTreeNodeSelect.d.ts +2 -2
- package/lib/utils/handleTreeNodeSelect/handleTreeNodeSelect.js +90 -257
- package/lib/utils/handleTreeNodeSelect/handleTreeNodeSelect.js.map +1 -1
- package/lib/validations/regex.d.ts +3 -1
- package/lib/validations/regex.js +4 -1
- package/lib/validations/regex.js.map +1 -1
- package/package.json +27 -15
|
@@ -6,6 +6,8 @@ export const Data = [
|
|
|
6
6
|
{
|
|
7
7
|
value: 'Test Steps',
|
|
8
8
|
style: {
|
|
9
|
+
width: 150,
|
|
10
|
+
height: 100,
|
|
9
11
|
name: 'Arial',
|
|
10
12
|
size: 10,
|
|
11
13
|
bold: false,
|
|
@@ -21,24 +23,21 @@ export const Data = [
|
|
|
21
23
|
left: 'THIN',
|
|
22
24
|
},
|
|
23
25
|
alignment: {
|
|
24
|
-
horizontal: '
|
|
25
|
-
vertical: '
|
|
26
|
+
horizontal: 'CENTER',
|
|
27
|
+
vertical: 'CENTER',
|
|
26
28
|
wrapText: false,
|
|
27
29
|
},
|
|
28
30
|
},
|
|
29
|
-
readOnly:
|
|
31
|
+
readOnly: true,
|
|
30
32
|
inputType: {
|
|
31
33
|
type: 'text',
|
|
32
34
|
},
|
|
33
|
-
contextDisable: {
|
|
34
|
-
'Delete Column': true,
|
|
35
|
-
'Delete Row': true,
|
|
36
|
-
'Add Row Top': true,
|
|
37
|
-
},
|
|
38
35
|
},
|
|
39
36
|
{
|
|
40
37
|
value: 'Input',
|
|
41
38
|
style: {
|
|
39
|
+
width: 250,
|
|
40
|
+
height: 100,
|
|
42
41
|
name: 'Arial',
|
|
43
42
|
size: 10,
|
|
44
43
|
bold: false,
|
|
@@ -54,24 +53,21 @@ export const Data = [
|
|
|
54
53
|
left: 'THIN',
|
|
55
54
|
},
|
|
56
55
|
alignment: {
|
|
57
|
-
horizontal: '
|
|
58
|
-
vertical: '
|
|
56
|
+
horizontal: 'CENTER',
|
|
57
|
+
vertical: 'CENTER',
|
|
59
58
|
wrapText: false,
|
|
60
59
|
},
|
|
61
60
|
},
|
|
62
|
-
readOnly:
|
|
61
|
+
readOnly: true,
|
|
63
62
|
inputType: {
|
|
64
63
|
type: 'text',
|
|
65
64
|
},
|
|
66
|
-
contextDisable: {
|
|
67
|
-
'Delete Column': true,
|
|
68
|
-
'Delete Row': true,
|
|
69
|
-
'Add Row Top': true,
|
|
70
|
-
},
|
|
71
65
|
},
|
|
72
66
|
{
|
|
73
67
|
value: 'Expected Result',
|
|
74
68
|
style: {
|
|
69
|
+
width: 250,
|
|
70
|
+
height: 100,
|
|
75
71
|
name: 'Arial',
|
|
76
72
|
size: 10,
|
|
77
73
|
bold: false,
|
|
@@ -87,8 +83,8 @@ export const Data = [
|
|
|
87
83
|
left: 'THIN',
|
|
88
84
|
},
|
|
89
85
|
alignment: {
|
|
90
|
-
horizontal: '
|
|
91
|
-
vertical: '
|
|
86
|
+
horizontal: 'CENTER',
|
|
87
|
+
vertical: 'CENTER',
|
|
92
88
|
wrapText: false,
|
|
93
89
|
},
|
|
94
90
|
},
|
|
@@ -99,6 +95,8 @@ export const Data = [
|
|
|
99
95
|
},
|
|
100
96
|
{
|
|
101
97
|
style: {
|
|
98
|
+
width: 250,
|
|
99
|
+
height: 100,
|
|
102
100
|
name: 'Arial',
|
|
103
101
|
size: 10,
|
|
104
102
|
bold: false,
|
|
@@ -114,8 +112,8 @@ export const Data = [
|
|
|
114
112
|
left: 'THIN',
|
|
115
113
|
},
|
|
116
114
|
alignment: {
|
|
117
|
-
horizontal: '
|
|
118
|
-
vertical: '
|
|
115
|
+
horizontal: 'CENTER',
|
|
116
|
+
vertical: 'CENTER',
|
|
119
117
|
wrapText: false,
|
|
120
118
|
},
|
|
121
119
|
},
|
|
@@ -127,6 +125,8 @@ export const Data = [
|
|
|
127
125
|
},
|
|
128
126
|
{
|
|
129
127
|
style: {
|
|
128
|
+
width: 250,
|
|
129
|
+
height: 100,
|
|
130
130
|
name: 'Arial',
|
|
131
131
|
size: 10,
|
|
132
132
|
bold: false,
|
|
@@ -155,6 +155,8 @@ export const Data = [
|
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
157
|
style: {
|
|
158
|
+
width: 250,
|
|
159
|
+
height: 100,
|
|
158
160
|
name: 'Arial',
|
|
159
161
|
size: 10,
|
|
160
162
|
bold: false,
|
|
@@ -170,8 +172,8 @@ export const Data = [
|
|
|
170
172
|
left: 'THIN',
|
|
171
173
|
},
|
|
172
174
|
alignment: {
|
|
173
|
-
horizontal: '
|
|
174
|
-
vertical: '
|
|
175
|
+
horizontal: 'CENTER',
|
|
176
|
+
vertical: 'CENTER',
|
|
175
177
|
wrapText: false,
|
|
176
178
|
},
|
|
177
179
|
},
|
|
@@ -183,6 +185,8 @@ export const Data = [
|
|
|
183
185
|
},
|
|
184
186
|
{
|
|
185
187
|
style: {
|
|
188
|
+
width: 250,
|
|
189
|
+
height: 100,
|
|
186
190
|
name: 'Arial',
|
|
187
191
|
size: 10,
|
|
188
192
|
bold: false,
|
|
@@ -198,8 +202,8 @@ export const Data = [
|
|
|
198
202
|
left: 'THIN',
|
|
199
203
|
},
|
|
200
204
|
alignment: {
|
|
201
|
-
horizontal: '
|
|
202
|
-
vertical: '
|
|
205
|
+
horizontal: 'CENTER',
|
|
206
|
+
vertical: 'CENTER',
|
|
203
207
|
wrapText: false,
|
|
204
208
|
},
|
|
205
209
|
},
|
|
@@ -214,36 +218,10 @@ export const Data = [
|
|
|
214
218
|
{
|
|
215
219
|
value: 'Times New Roman',
|
|
216
220
|
style: {
|
|
221
|
+
width: 150,
|
|
222
|
+
height: 32,
|
|
217
223
|
name: 'Times New Roman',
|
|
218
|
-
size:
|
|
219
|
-
bold: false,
|
|
220
|
-
italic: false,
|
|
221
|
-
underline: false,
|
|
222
|
-
color: '000000',
|
|
223
|
-
backgroundColor: 'ffffff',
|
|
224
|
-
borderColor: 'F2F2F2',
|
|
225
|
-
border: {
|
|
226
|
-
top: 'MEDIUM',
|
|
227
|
-
right: 'MEDIUM',
|
|
228
|
-
bottom: 'MEDIUM',
|
|
229
|
-
left: 'MEDIUM',
|
|
230
|
-
},
|
|
231
|
-
alignment: {
|
|
232
|
-
horizontal: 'LEFT',
|
|
233
|
-
vertical: 'BOTTOM',
|
|
234
|
-
wrapText: false,
|
|
235
|
-
},
|
|
236
|
-
},
|
|
237
|
-
readOnly: false,
|
|
238
|
-
inputType: {
|
|
239
|
-
type: 'text',
|
|
240
|
-
},
|
|
241
|
-
},
|
|
242
|
-
{
|
|
243
|
-
value: 'Trebuchet MS',
|
|
244
|
-
style: {
|
|
245
|
-
name: 'Trebuchet MS',
|
|
246
|
-
size: 9,
|
|
224
|
+
size: 54,
|
|
247
225
|
bold: false,
|
|
248
226
|
italic: false,
|
|
249
227
|
underline: false,
|
|
@@ -268,8 +246,38 @@ export const Data = [
|
|
|
268
246
|
},
|
|
269
247
|
},
|
|
270
248
|
{
|
|
271
|
-
value:
|
|
249
|
+
"value": "[{\"createdBy\":\"USR20149980\",\"modifiedBy\":\"USR20149980\",\"createdByUname\":\"Uma_Shankar\",\"modifiedByUname\":\"Uma_Shankar\",\"createdOn\":\"13 May 2026 05:23 PM\",\"modifiedOn\":\"13 May 2026 05:23 PM\",\"state\":\"APPROVED\",\"searchKey\":\"/FLDR1006/FLDR1009/FILE1068\",\"parentId\":\"FLDR1009\",\"sourceId\":\"FLDR1009\",\"inputAction\":\"add\",\"id\":\"FILE1068\",\"name\":\"dummy.mp4*6bbb7c8b-7373-4a17-a0c9-6fa81b7d13ab\",\"actualPath\":\"ManualSuite/Root/Manual_Suite_Folder/EXEC2178/dummy.mp4*6bbb7c8b-7373-4a17-a0c9-6fa81b7d13ab\",\"folder\":false,\"executionOrder\":0,\"imported\":false,\"fileSize\":\"0\",\"size\":\"374406\",\"status\":\"Processing\",\"storageType\":\"cloudS3\"}]",
|
|
250
|
+
"style": {
|
|
251
|
+
"name": "Arial",
|
|
252
|
+
"size": 10,
|
|
253
|
+
"bold": false,
|
|
254
|
+
"italic": false,
|
|
255
|
+
"underline": false,
|
|
256
|
+
"color": "000000",
|
|
257
|
+
"backgroundColor": "FFFFFF",
|
|
258
|
+
"borderColor": "F2F2F2",
|
|
259
|
+
"border": {
|
|
260
|
+
"top": "THIN",
|
|
261
|
+
"right": "THIN",
|
|
262
|
+
"bottom": "THIN",
|
|
263
|
+
"left": "THIN"
|
|
264
|
+
},
|
|
265
|
+
"alignment": {
|
|
266
|
+
"horizontal": "CENTER",
|
|
267
|
+
"vertical": "CENTER",
|
|
268
|
+
"wrapText": false
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
"readOnly": false,
|
|
272
|
+
"inputType": {
|
|
273
|
+
"type": "file"
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
value: 'Comic Sans MS',
|
|
272
278
|
style: {
|
|
279
|
+
width: 250,
|
|
280
|
+
height: 32,
|
|
273
281
|
name: 'Comic Sans MS',
|
|
274
282
|
size: 9,
|
|
275
283
|
bold: false,
|
|
@@ -297,6 +305,8 @@ export const Data = [
|
|
|
297
305
|
},
|
|
298
306
|
{
|
|
299
307
|
style: {
|
|
308
|
+
width: 250,
|
|
309
|
+
height: 32,
|
|
300
310
|
name: 'Arial Black',
|
|
301
311
|
size: 9,
|
|
302
312
|
bold: false,
|
|
@@ -325,6 +335,8 @@ export const Data = [
|
|
|
325
335
|
},
|
|
326
336
|
{
|
|
327
337
|
style: {
|
|
338
|
+
width: 250,
|
|
339
|
+
height: 32,
|
|
328
340
|
name: 'Poppins',
|
|
329
341
|
size: 9,
|
|
330
342
|
bold: false,
|
|
@@ -353,6 +365,8 @@ export const Data = [
|
|
|
353
365
|
},
|
|
354
366
|
{
|
|
355
367
|
style: {
|
|
368
|
+
width: 250,
|
|
369
|
+
height: 32,
|
|
356
370
|
name: 'Poppins',
|
|
357
371
|
size: 9,
|
|
358
372
|
bold: false,
|
|
@@ -395,6 +409,8 @@ export const Data = [
|
|
|
395
409
|
},
|
|
396
410
|
{
|
|
397
411
|
style: {
|
|
412
|
+
width: 250,
|
|
413
|
+
height: 32,
|
|
398
414
|
name: 'Lucida Console',
|
|
399
415
|
size: 9,
|
|
400
416
|
bold: false,
|
|
@@ -421,11 +437,43 @@ export const Data = [
|
|
|
421
437
|
},
|
|
422
438
|
value: 'Lucida Console',
|
|
423
439
|
},
|
|
440
|
+
{
|
|
441
|
+
value: 'Trebuchet MS',
|
|
442
|
+
style: {
|
|
443
|
+
width: 250,
|
|
444
|
+
height: 32,
|
|
445
|
+
name: 'Trebuchet MS',
|
|
446
|
+
size: 9,
|
|
447
|
+
bold: false,
|
|
448
|
+
italic: false,
|
|
449
|
+
underline: false,
|
|
450
|
+
color: '000000',
|
|
451
|
+
backgroundColor: 'ffffff',
|
|
452
|
+
borderColor: '000000',
|
|
453
|
+
border: {
|
|
454
|
+
top: 'THIN',
|
|
455
|
+
right: 'THIN',
|
|
456
|
+
bottom: 'THIN',
|
|
457
|
+
left: 'THIN',
|
|
458
|
+
},
|
|
459
|
+
alignment: {
|
|
460
|
+
horizontal: 'LEFT',
|
|
461
|
+
vertical: 'BOTTOM',
|
|
462
|
+
wrapText: false,
|
|
463
|
+
},
|
|
464
|
+
},
|
|
465
|
+
readOnly: false,
|
|
466
|
+
inputType: {
|
|
467
|
+
type: 'text',
|
|
468
|
+
},
|
|
469
|
+
},
|
|
424
470
|
],
|
|
425
471
|
[
|
|
426
472
|
{
|
|
427
473
|
value: 'Lucida Sans Unicode',
|
|
428
474
|
style: {
|
|
475
|
+
width: 150,
|
|
476
|
+
height: 200,
|
|
429
477
|
name: 'Lucida Sans Unicode',
|
|
430
478
|
size: 9,
|
|
431
479
|
bold: false,
|
|
@@ -454,6 +502,8 @@ export const Data = [
|
|
|
454
502
|
{
|
|
455
503
|
value: 'Arial Rounded MT Bold',
|
|
456
504
|
style: {
|
|
505
|
+
width: 250,
|
|
506
|
+
height: 200,
|
|
457
507
|
name: 'Arial Rounded MT Bold',
|
|
458
508
|
size: 9,
|
|
459
509
|
bold: false,
|
|
@@ -482,6 +532,8 @@ export const Data = [
|
|
|
482
532
|
{
|
|
483
533
|
value: '',
|
|
484
534
|
style: {
|
|
535
|
+
width: 250,
|
|
536
|
+
height: 200,
|
|
485
537
|
name: 'Poppins',
|
|
486
538
|
size: 9,
|
|
487
539
|
bold: false,
|
|
@@ -509,6 +561,8 @@ export const Data = [
|
|
|
509
561
|
},
|
|
510
562
|
{
|
|
511
563
|
style: {
|
|
564
|
+
width: 250,
|
|
565
|
+
height: 200,
|
|
512
566
|
name: 'Poppins',
|
|
513
567
|
size: 9,
|
|
514
568
|
bold: false,
|
|
@@ -537,6 +591,8 @@ export const Data = [
|
|
|
537
591
|
},
|
|
538
592
|
{
|
|
539
593
|
style: {
|
|
594
|
+
width: 250,
|
|
595
|
+
height: 200,
|
|
540
596
|
name: 'Poppins',
|
|
541
597
|
size: 9,
|
|
542
598
|
bold: false,
|
|
@@ -565,6 +621,8 @@ export const Data = [
|
|
|
565
621
|
},
|
|
566
622
|
{
|
|
567
623
|
style: {
|
|
624
|
+
width: 250,
|
|
625
|
+
height: 200,
|
|
568
626
|
name: 'Poppins',
|
|
569
627
|
size: 9,
|
|
570
628
|
bold: false,
|
|
@@ -580,8 +638,8 @@ export const Data = [
|
|
|
580
638
|
left: 'THIN',
|
|
581
639
|
},
|
|
582
640
|
alignment: {
|
|
583
|
-
horizontal: '
|
|
584
|
-
vertical: '
|
|
641
|
+
horizontal: 'CENTER',
|
|
642
|
+
vertical: 'CENTER',
|
|
585
643
|
wrapText: false,
|
|
586
644
|
},
|
|
587
645
|
},
|
|
@@ -623,6 +681,8 @@ export const Data = [
|
|
|
623
681
|
},
|
|
624
682
|
{
|
|
625
683
|
style: {
|
|
684
|
+
width: 250,
|
|
685
|
+
height: 200,
|
|
626
686
|
name: 'Poppins',
|
|
627
687
|
size: 9,
|
|
628
688
|
bold: false,
|
|
@@ -650,7 +710,311 @@ export const Data = [
|
|
|
650
710
|
value: '',
|
|
651
711
|
},
|
|
652
712
|
],
|
|
713
|
+
[{
|
|
714
|
+
value: 10000,
|
|
715
|
+
style: {
|
|
716
|
+
width: 150,
|
|
717
|
+
height: 100,
|
|
718
|
+
name: 'Poppins',
|
|
719
|
+
size: 9,
|
|
720
|
+
bold: false,
|
|
721
|
+
italic: false,
|
|
722
|
+
underline: false,
|
|
723
|
+
color: '000000',
|
|
724
|
+
backgroundColor: 'ffffff',
|
|
725
|
+
borderColor: 'c9c9c9',
|
|
726
|
+
border: {
|
|
727
|
+
top: 'THIN',
|
|
728
|
+
right: 'THIN',
|
|
729
|
+
bottom: 'THIN',
|
|
730
|
+
left: 'THIN',
|
|
731
|
+
},
|
|
732
|
+
alignment: {
|
|
733
|
+
horizontal: 'LEFT',
|
|
734
|
+
vertical: 'BOTTOM',
|
|
735
|
+
wrapText: false,
|
|
736
|
+
},
|
|
737
|
+
},
|
|
738
|
+
readOnly: false,
|
|
739
|
+
inputType: {
|
|
740
|
+
type: 'text',
|
|
741
|
+
},
|
|
742
|
+
},],
|
|
653
743
|
],
|
|
654
744
|
},
|
|
745
|
+
{
|
|
746
|
+
sheetName: 'Sheet2',
|
|
747
|
+
data: [[
|
|
748
|
+
{
|
|
749
|
+
value: 'Excel One2',
|
|
750
|
+
style: {
|
|
751
|
+
width: 250,
|
|
752
|
+
height: 200,
|
|
753
|
+
name: 'Times New Roman',
|
|
754
|
+
size: 24,
|
|
755
|
+
bold: false,
|
|
756
|
+
italic: false,
|
|
757
|
+
underline: false,
|
|
758
|
+
color: '000000',
|
|
759
|
+
backgroundColor: 'ffffff',
|
|
760
|
+
borderColor: 'F2F2F2',
|
|
761
|
+
border: {
|
|
762
|
+
top: 'MEDIUM',
|
|
763
|
+
right: 'MEDIUM',
|
|
764
|
+
bottom: 'MEDIUM',
|
|
765
|
+
left: 'MEDIUM',
|
|
766
|
+
},
|
|
767
|
+
alignment: {
|
|
768
|
+
horizontal: 'LEFT',
|
|
769
|
+
vertical: 'BOTTOM',
|
|
770
|
+
wrapText: false,
|
|
771
|
+
},
|
|
772
|
+
},
|
|
773
|
+
readOnly: false,
|
|
774
|
+
inputType: {
|
|
775
|
+
type: 'text',
|
|
776
|
+
},
|
|
777
|
+
},
|
|
778
|
+
]]
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
sheetName: 'Sheet3',
|
|
782
|
+
data: [[
|
|
783
|
+
{
|
|
784
|
+
value: 'Excel One3',
|
|
785
|
+
style: {
|
|
786
|
+
width: 250,
|
|
787
|
+
height: 200,
|
|
788
|
+
name: 'Times New Roman',
|
|
789
|
+
size: 24,
|
|
790
|
+
bold: false,
|
|
791
|
+
italic: false,
|
|
792
|
+
underline: false,
|
|
793
|
+
color: '000000',
|
|
794
|
+
backgroundColor: 'ffffff',
|
|
795
|
+
borderColor: 'F2F2F2',
|
|
796
|
+
border: {
|
|
797
|
+
top: 'MEDIUM',
|
|
798
|
+
right: 'MEDIUM',
|
|
799
|
+
bottom: 'MEDIUM',
|
|
800
|
+
left: 'MEDIUM',
|
|
801
|
+
},
|
|
802
|
+
alignment: {
|
|
803
|
+
horizontal: 'LEFT',
|
|
804
|
+
vertical: 'BOTTOM',
|
|
805
|
+
wrapText: false,
|
|
806
|
+
},
|
|
807
|
+
},
|
|
808
|
+
readOnly: false,
|
|
809
|
+
inputType: {
|
|
810
|
+
type: 'text',
|
|
811
|
+
},
|
|
812
|
+
},
|
|
813
|
+
]]
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
sheetName: 'Sheet4',
|
|
817
|
+
data: [[
|
|
818
|
+
{
|
|
819
|
+
value: 'Excel One4',
|
|
820
|
+
style: {
|
|
821
|
+
width: 250,
|
|
822
|
+
height: 200,
|
|
823
|
+
name: 'Times New Roman',
|
|
824
|
+
size: 24,
|
|
825
|
+
bold: false,
|
|
826
|
+
italic: false,
|
|
827
|
+
underline: false,
|
|
828
|
+
color: '000000',
|
|
829
|
+
backgroundColor: 'ffffff',
|
|
830
|
+
borderColor: 'F2F2F2',
|
|
831
|
+
border: {
|
|
832
|
+
top: 'MEDIUM',
|
|
833
|
+
right: 'MEDIUM',
|
|
834
|
+
bottom: 'MEDIUM',
|
|
835
|
+
left: 'MEDIUM',
|
|
836
|
+
},
|
|
837
|
+
alignment: {
|
|
838
|
+
horizontal: 'LEFT',
|
|
839
|
+
vertical: 'BOTTOM',
|
|
840
|
+
wrapText: false,
|
|
841
|
+
},
|
|
842
|
+
},
|
|
843
|
+
readOnly: false,
|
|
844
|
+
inputType: {
|
|
845
|
+
type: 'text',
|
|
846
|
+
},
|
|
847
|
+
},
|
|
848
|
+
]]
|
|
849
|
+
}
|
|
850
|
+
];
|
|
851
|
+
export const importData = [
|
|
852
|
+
{
|
|
853
|
+
sheetName: 'Sheet1',
|
|
854
|
+
data: [[
|
|
855
|
+
{
|
|
856
|
+
value: 'Excel Two1',
|
|
857
|
+
style: {
|
|
858
|
+
width: 250,
|
|
859
|
+
height: 200,
|
|
860
|
+
name: 'Times New Roman',
|
|
861
|
+
size: 24,
|
|
862
|
+
bold: false,
|
|
863
|
+
italic: false,
|
|
864
|
+
underline: false,
|
|
865
|
+
color: '000000',
|
|
866
|
+
backgroundColor: 'ffffff',
|
|
867
|
+
borderColor: 'F2F2F2',
|
|
868
|
+
border: {
|
|
869
|
+
top: 'MEDIUM',
|
|
870
|
+
right: 'MEDIUM',
|
|
871
|
+
bottom: 'MEDIUM',
|
|
872
|
+
left: 'MEDIUM',
|
|
873
|
+
},
|
|
874
|
+
alignment: {
|
|
875
|
+
horizontal: 'LEFT',
|
|
876
|
+
vertical: 'BOTTOM',
|
|
877
|
+
wrapText: false,
|
|
878
|
+
},
|
|
879
|
+
},
|
|
880
|
+
readOnly: false,
|
|
881
|
+
inputType: {
|
|
882
|
+
type: 'text',
|
|
883
|
+
},
|
|
884
|
+
},
|
|
885
|
+
], [{}, {
|
|
886
|
+
"value": "",
|
|
887
|
+
"style": {
|
|
888
|
+
"name": "Poppins",
|
|
889
|
+
"size": 9,
|
|
890
|
+
"bold": false,
|
|
891
|
+
"italic": false,
|
|
892
|
+
"underline": false,
|
|
893
|
+
"color": "000000",
|
|
894
|
+
"backgroundColor": "ffffff",
|
|
895
|
+
"borderColor": "F2F2F2",
|
|
896
|
+
"border": {
|
|
897
|
+
"top": "THIN",
|
|
898
|
+
"right": "THIN",
|
|
899
|
+
"bottom": "THIN",
|
|
900
|
+
"left": "THIN"
|
|
901
|
+
},
|
|
902
|
+
"alignment": {
|
|
903
|
+
"horizontal": "LEFT",
|
|
904
|
+
"vertical": "CENTER",
|
|
905
|
+
"wrapText": false
|
|
906
|
+
}
|
|
907
|
+
},
|
|
908
|
+
"readOnly": false,
|
|
909
|
+
"inputType": {
|
|
910
|
+
"type": "file"
|
|
911
|
+
}
|
|
912
|
+
}]]
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
sheetName: 'Sheet2',
|
|
916
|
+
data: [[
|
|
917
|
+
{
|
|
918
|
+
value: 'Excel Two2',
|
|
919
|
+
style: {
|
|
920
|
+
width: 250,
|
|
921
|
+
height: 200,
|
|
922
|
+
name: 'Times New Roman',
|
|
923
|
+
size: 24,
|
|
924
|
+
bold: false,
|
|
925
|
+
italic: false,
|
|
926
|
+
underline: false,
|
|
927
|
+
color: '000000',
|
|
928
|
+
backgroundColor: 'ffffff',
|
|
929
|
+
borderColor: 'F2F2F2',
|
|
930
|
+
border: {
|
|
931
|
+
top: 'MEDIUM',
|
|
932
|
+
right: 'MEDIUM',
|
|
933
|
+
bottom: 'MEDIUM',
|
|
934
|
+
left: 'MEDIUM',
|
|
935
|
+
},
|
|
936
|
+
alignment: {
|
|
937
|
+
horizontal: 'LEFT',
|
|
938
|
+
vertical: 'BOTTOM',
|
|
939
|
+
wrapText: false,
|
|
940
|
+
},
|
|
941
|
+
},
|
|
942
|
+
readOnly: false,
|
|
943
|
+
inputType: {
|
|
944
|
+
type: 'text',
|
|
945
|
+
},
|
|
946
|
+
},
|
|
947
|
+
]]
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
sheetName: 'Sheet3',
|
|
951
|
+
data: [[
|
|
952
|
+
{
|
|
953
|
+
value: 'Excel Two3',
|
|
954
|
+
style: {
|
|
955
|
+
width: 250,
|
|
956
|
+
height: 200,
|
|
957
|
+
name: 'Times New Roman',
|
|
958
|
+
size: 24,
|
|
959
|
+
bold: false,
|
|
960
|
+
italic: false,
|
|
961
|
+
underline: false,
|
|
962
|
+
color: '000000',
|
|
963
|
+
backgroundColor: 'ffffff',
|
|
964
|
+
borderColor: 'F2F2F2',
|
|
965
|
+
border: {
|
|
966
|
+
top: 'MEDIUM',
|
|
967
|
+
right: 'MEDIUM',
|
|
968
|
+
bottom: 'MEDIUM',
|
|
969
|
+
left: 'MEDIUM',
|
|
970
|
+
},
|
|
971
|
+
alignment: {
|
|
972
|
+
horizontal: 'LEFT',
|
|
973
|
+
vertical: 'BOTTOM',
|
|
974
|
+
wrapText: false,
|
|
975
|
+
},
|
|
976
|
+
},
|
|
977
|
+
readOnly: false,
|
|
978
|
+
inputType: {
|
|
979
|
+
type: 'text',
|
|
980
|
+
},
|
|
981
|
+
},
|
|
982
|
+
]]
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
sheetName: 'Sheet4',
|
|
986
|
+
data: [[
|
|
987
|
+
{
|
|
988
|
+
value: 'Excel Two4',
|
|
989
|
+
style: {
|
|
990
|
+
width: 250,
|
|
991
|
+
height: 200,
|
|
992
|
+
name: 'Times New Roman',
|
|
993
|
+
size: 24,
|
|
994
|
+
bold: false,
|
|
995
|
+
italic: false,
|
|
996
|
+
underline: false,
|
|
997
|
+
color: '000000',
|
|
998
|
+
backgroundColor: 'ffffff',
|
|
999
|
+
borderColor: 'F2F2F2',
|
|
1000
|
+
border: {
|
|
1001
|
+
top: 'MEDIUM',
|
|
1002
|
+
right: 'MEDIUM',
|
|
1003
|
+
bottom: 'MEDIUM',
|
|
1004
|
+
left: 'MEDIUM',
|
|
1005
|
+
},
|
|
1006
|
+
alignment: {
|
|
1007
|
+
horizontal: 'LEFT',
|
|
1008
|
+
vertical: 'BOTTOM',
|
|
1009
|
+
wrapText: false,
|
|
1010
|
+
},
|
|
1011
|
+
},
|
|
1012
|
+
readOnly: false,
|
|
1013
|
+
inputType: {
|
|
1014
|
+
type: 'text',
|
|
1015
|
+
},
|
|
1016
|
+
},
|
|
1017
|
+
]]
|
|
1018
|
+
}
|
|
655
1019
|
];
|
|
656
1020
|
//# sourceMappingURL=Data.js.map
|