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
|
@@ -1,266 +1,99 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
//
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
//
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
//
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
//
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
// }
|
|
41
|
-
// const children = childMap.get(nodeKey) || [];
|
|
42
|
-
// let completelySelectedCount = 0;
|
|
43
|
-
// let hasPartialSelection = false;
|
|
44
|
-
// for (const child of children) {
|
|
45
|
-
// if (child.selectedStatus === 'completely') {
|
|
46
|
-
// completelySelectedCount++;
|
|
47
|
-
// } else if (child.selectedStatus === 'partially') {
|
|
48
|
-
// hasPartialSelection = true;
|
|
49
|
-
// }
|
|
50
|
-
// }
|
|
51
|
-
// if (completelySelectedCount === totalChildren) {
|
|
52
|
-
// return 'completely';
|
|
53
|
-
// } else if (hasPartialSelection || completelySelectedCount > 0) {
|
|
54
|
-
// return 'partially';
|
|
55
|
-
// } else {
|
|
56
|
-
// return 'none';
|
|
57
|
-
// }
|
|
58
|
-
// }
|
|
59
|
-
// // Helper to update child nodes recursively
|
|
60
|
-
// function updateChildren(nodeKey: string, status: 'completely' | 'none') {
|
|
61
|
-
// if (visited.has(nodeKey)) {
|
|
62
|
-
// throw new Error(`Cycle detected at node: ${nodeKey}`);
|
|
63
|
-
// }
|
|
64
|
-
// visited.add(nodeKey);
|
|
65
|
-
// const children = childMap.get(nodeKey) || [];
|
|
66
|
-
// children.forEach((child) => {
|
|
67
|
-
// child.selectedStatus = status;
|
|
68
|
-
// updateChildren(child.key, status);
|
|
69
|
-
// });
|
|
70
|
-
// visited.delete(nodeKey); // Clean up after recursion
|
|
71
|
-
// }
|
|
72
|
-
// // Helper to update parent nodes recursively
|
|
73
|
-
// function updateParents(nodeKey: string) {
|
|
74
|
-
// if (visited.has(nodeKey)) {
|
|
75
|
-
// throw new Error(`Cycle detected at node: ${nodeKey}`);
|
|
76
|
-
// }
|
|
77
|
-
// visited.add(nodeKey);
|
|
78
|
-
// const node = nodesMap.get(nodeKey);
|
|
79
|
-
// if (node && node.parentId) {
|
|
80
|
-
// const parentNode = nodesMap.get(node.parentId);
|
|
81
|
-
// if (parentNode) {
|
|
82
|
-
// parentNode.selectedStatus = calculateSelectedStatus(parentNode.key);
|
|
83
|
-
// updateParents(parentNode.key);
|
|
84
|
-
// }
|
|
85
|
-
// }
|
|
86
|
-
// visited.delete(nodeKey); // Clean up after recursion
|
|
87
|
-
// }
|
|
88
|
-
// // Main logic: update the target node and propagate changes
|
|
89
|
-
// const targetNode = nodesMap.get(key);
|
|
90
|
-
// if (targetNode) {
|
|
91
|
-
// targetNode.selectedStatus = isChecked ? 'completely' : 'none';
|
|
92
|
-
// updateChildren(key, targetNode.selectedStatus);
|
|
93
|
-
// updateParents(key);
|
|
94
|
-
// }
|
|
95
|
-
// if (!checkEmpty(rootNode)) {
|
|
96
|
-
// return {
|
|
97
|
-
// rootNode: list[0],
|
|
98
|
-
// data: list.slice(1),
|
|
99
|
-
// };
|
|
100
|
-
// }
|
|
101
|
-
// return { data: list };
|
|
102
|
-
// };
|
|
103
|
-
// export const handleTreeNodeSect = (
|
|
104
|
-
// data: TreeNode[],
|
|
105
|
-
// key: string | undefined,
|
|
106
|
-
// rootNode: TreeNode | null,
|
|
107
|
-
// isChecked: boolean
|
|
108
|
-
// ): { data: TreeNode[]; rootNode?: TreeNode | null } => {
|
|
109
|
-
// if (!key) {
|
|
110
|
-
// throw new Error('Key is required');
|
|
111
|
-
// }
|
|
112
|
-
// const nodesMap = new Map<string, TreeNode>();
|
|
113
|
-
// const childMap = new Map<string, TreeNode[]>();
|
|
114
|
-
// const visited = new Set<string>();
|
|
115
|
-
// let list = [...data];
|
|
116
|
-
// if (rootNode && !checkEmpty(rootNode)) {
|
|
117
|
-
// list = [rootNode, ...data];
|
|
118
|
-
// }
|
|
119
|
-
// list.forEach((node) => {
|
|
120
|
-
// nodesMap.set(node.key, node);
|
|
121
|
-
// // CHANGED: parentId → searchkey
|
|
122
|
-
// if (node.parentId) {
|
|
123
|
-
// if (!childMap.has(node.parentId)) {
|
|
124
|
-
// childMap.set(node.parentId, []);
|
|
125
|
-
// }
|
|
126
|
-
// childMap.get(node.parentId)!.push(node);
|
|
127
|
-
// }
|
|
128
|
-
// });
|
|
129
|
-
// function calculateSelectedStatus(
|
|
130
|
-
// nodeKey: string
|
|
131
|
-
// ): 'completely' | 'partially' | 'none' {
|
|
132
|
-
// const node = nodesMap.get(nodeKey);
|
|
133
|
-
// if (!node) return 'none';
|
|
134
|
-
// // chnaged count logic updated as per BE response
|
|
135
|
-
// const totalChildren =
|
|
136
|
-
// (node.totalResourceCount ?? 0) + (node.totalConditionCount ?? 0);
|
|
137
|
-
// console.log(totalChildren, 'totalchildren');
|
|
138
|
-
// if (totalChildren === 0) {
|
|
139
|
-
// return node.selectedStatus ?? 'none';
|
|
140
|
-
// }
|
|
141
|
-
// const children = childMap.get(nodeKey) || [];
|
|
142
|
-
// let completelySelectedCount = 0;
|
|
143
|
-
// let hasPartialSelection = false;
|
|
144
|
-
// for (const child of children) {
|
|
145
|
-
// if (child.selectedStatus === 'completely') {
|
|
146
|
-
// completelySelectedCount++;
|
|
147
|
-
// } else if (child.selectedStatus === 'partially') {
|
|
148
|
-
// hasPartialSelection = true;
|
|
149
|
-
// }
|
|
150
|
-
// }
|
|
151
|
-
// if (completelySelectedCount === totalChildren) {
|
|
152
|
-
// return 'completely';
|
|
153
|
-
// } else if (hasPartialSelection || completelySelectedCount > 0) {
|
|
154
|
-
// return 'partially';
|
|
155
|
-
// } else {
|
|
156
|
-
// return 'none';
|
|
157
|
-
// }
|
|
158
|
-
// }
|
|
159
|
-
// function updateChildren(nodeKey: string, status: 'completely' | 'none') {
|
|
160
|
-
// if (visited.has(nodeKey)) {
|
|
161
|
-
// throw new Error(`Cycle detected at node: ${nodeKey}`);
|
|
162
|
-
// }
|
|
163
|
-
// visited.add(nodeKey);
|
|
164
|
-
// const children = childMap.get(nodeKey) || [];
|
|
165
|
-
// children.forEach((child) => {
|
|
166
|
-
// child.selectedStatus = status;
|
|
167
|
-
// updateChildren(child.key, status);
|
|
168
|
-
// });
|
|
169
|
-
// visited.delete(nodeKey);
|
|
170
|
-
// }
|
|
171
|
-
// function updateParents(nodeKey: string) {
|
|
172
|
-
// if (visited.has(nodeKey)) {
|
|
173
|
-
// throw new Error(`Cycle detected at node: ${nodeKey}`);
|
|
174
|
-
// }
|
|
175
|
-
// visited.add(nodeKey);
|
|
176
|
-
// const node = nodesMap.get(nodeKey);
|
|
177
|
-
// //changed parentId → parentSearchKey
|
|
178
|
-
// if (node && node.parentId) {
|
|
179
|
-
// const parentNode = nodesMap.get(node.parentId);
|
|
180
|
-
// if (parentNode) {
|
|
181
|
-
// parentNode.selectedStatus = calculateSelectedStatus(parentNode.key);
|
|
182
|
-
// updateParents(parentNode.key);
|
|
183
|
-
// }
|
|
184
|
-
// }
|
|
185
|
-
// visited.delete(nodeKey);
|
|
186
|
-
// }
|
|
187
|
-
// const targetNode = nodesMap.get(key);
|
|
188
|
-
// if (targetNode) {
|
|
189
|
-
// targetNode.selectedStatus = isChecked ? 'completely' : 'none';
|
|
190
|
-
// updateChildren(key, targetNode.selectedStatus);
|
|
191
|
-
// updateParents(key);
|
|
192
|
-
// }
|
|
193
|
-
// if (!checkEmpty(rootNode)) {
|
|
194
|
-
// return {
|
|
195
|
-
// rootNode: list[0],
|
|
196
|
-
// data: list.slice(1),
|
|
197
|
-
// };
|
|
198
|
-
// }
|
|
199
|
-
// return { data: list };
|
|
200
|
-
// };
|
|
201
|
-
export const handleTreeNodeSect = (treeData, targetKey, rootNode, isInputChecked) => {
|
|
202
|
-
if (!targetKey)
|
|
203
|
-
return { data: treeData, rootNode };
|
|
204
|
-
const newStatus = isInputChecked ? 'completely' : 'none';
|
|
205
|
-
const allNodesList = rootNode ? [rootNode, ...treeData] : [...treeData];
|
|
206
|
-
const updatedNodesMap = new Map(allNodesList.map((node) => {
|
|
207
|
-
const pathArray = node.searchKey?.split('/').filter(Boolean) || [];
|
|
208
|
-
const isAffected = node.key === targetKey || pathArray.includes(targetKey);
|
|
209
|
-
return [
|
|
210
|
-
node.key,
|
|
211
|
-
{
|
|
212
|
-
...node,
|
|
213
|
-
selectedStatus: isAffected ? newStatus : node.selectedStatus,
|
|
214
|
-
},
|
|
215
|
-
];
|
|
216
|
-
}));
|
|
217
|
-
const selectionScore = new Map();
|
|
218
|
-
for (const node of updatedNodesMap.values()) {
|
|
219
|
-
const isScript = node.entityType === 'Script';
|
|
220
|
-
const isLeafModule = (node.totalResourceCount ?? 0) === 0 &&
|
|
221
|
-
(node.totalConditionCount ?? 0) === 0;
|
|
222
|
-
if (node.selectedStatus === 'completely') {
|
|
223
|
-
const pathIds = node.searchKey?.split('/').filter(Boolean) || [];
|
|
224
|
-
if (isScript || isLeafModule) {
|
|
225
|
-
for (const id of pathIds) {
|
|
226
|
-
if (id !== node.key)
|
|
227
|
-
selectionScore.set(id, (selectionScore.get(id) || 0) + 1);
|
|
228
|
-
}
|
|
1
|
+
import { checkEmpty } from '../checkEmpty/checkEmpty';
|
|
2
|
+
export const handleTreeNodeSect = (data, key, rootNode, isChecked) => {
|
|
3
|
+
if (!key) {
|
|
4
|
+
throw new Error('Key is required');
|
|
5
|
+
}
|
|
6
|
+
// Build a map for quick access to nodes by key
|
|
7
|
+
const nodesMap = new Map();
|
|
8
|
+
const childMap = new Map();
|
|
9
|
+
const visited = new Set(); // To detect cycles
|
|
10
|
+
let list = [...data];
|
|
11
|
+
if (rootNode && !checkEmpty(rootNode)) {
|
|
12
|
+
list = [rootNode, ...data];
|
|
13
|
+
}
|
|
14
|
+
// Initialize the maps
|
|
15
|
+
list.forEach((node) => {
|
|
16
|
+
nodesMap.set(node.key, node);
|
|
17
|
+
if (node.parentId) {
|
|
18
|
+
if (!childMap.has(node.parentId)) {
|
|
19
|
+
childMap.set(node.parentId, []);
|
|
20
|
+
}
|
|
21
|
+
childMap.get(node.parentId).push(node);
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
// Helper to calculate the selected status of a node
|
|
25
|
+
function calculateSelectedStatus(nodeKey) {
|
|
26
|
+
const node = nodesMap.get(nodeKey);
|
|
27
|
+
if (!node)
|
|
28
|
+
return 'none';
|
|
29
|
+
const totalChildren = (node.resourceCount ?? 0) + (node.subContainerCount ?? 0) + (node.conditionCount ?? 0);
|
|
30
|
+
if (totalChildren === 0) {
|
|
31
|
+
// Leaf node: use its own selected status
|
|
32
|
+
return node.selectedStatus ?? 'none';
|
|
33
|
+
}
|
|
34
|
+
const children = childMap.get(nodeKey) || [];
|
|
35
|
+
let completelySelectedCount = 0;
|
|
36
|
+
let hasPartialSelection = false;
|
|
37
|
+
for (const child of children) {
|
|
38
|
+
if (child.selectedStatus === 'completely') {
|
|
39
|
+
completelySelectedCount++;
|
|
229
40
|
}
|
|
230
|
-
else if (
|
|
231
|
-
|
|
232
|
-
for (const id of pathIds) {
|
|
233
|
-
if (id !== node.key)
|
|
234
|
-
selectionScore.set(id, (selectionScore.get(id) || 0) + beCount);
|
|
235
|
-
}
|
|
41
|
+
else if (child.selectedStatus === 'partially') {
|
|
42
|
+
hasPartialSelection = true;
|
|
236
43
|
}
|
|
237
44
|
}
|
|
45
|
+
if (completelySelectedCount === totalChildren) {
|
|
46
|
+
return 'completely';
|
|
47
|
+
}
|
|
48
|
+
else if (hasPartialSelection || completelySelectedCount > 0) {
|
|
49
|
+
return 'partially';
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
return 'none';
|
|
53
|
+
}
|
|
238
54
|
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
return node;
|
|
244
|
-
if (node.key === targetKey)
|
|
245
|
-
return { ...node, selectedStatus: newStatus };
|
|
246
|
-
const beTotal = (node.totalResourceCount ?? 0) + (node.totalConditionCount ?? 0);
|
|
247
|
-
const capacity = beTotal === 0 ? 1 : beTotal;
|
|
248
|
-
const currentScore = selectionScore.get(node.key) || 0;
|
|
249
|
-
if (node.key === rootNode?.key) {
|
|
250
|
-
console.log(`[Root Sync] Score: ${currentScore} / Capacity: ${capacity}`);
|
|
55
|
+
// Helper to update child nodes recursively
|
|
56
|
+
function updateChildren(nodeKey, status) {
|
|
57
|
+
if (visited.has(nodeKey)) {
|
|
58
|
+
throw new Error(`Cycle detected at node: ${nodeKey}`);
|
|
251
59
|
}
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
60
|
+
visited.add(nodeKey);
|
|
61
|
+
const children = childMap.get(nodeKey) || [];
|
|
62
|
+
children.forEach((child) => {
|
|
63
|
+
child.selectedStatus = status;
|
|
64
|
+
updateChildren(child.key, status);
|
|
65
|
+
});
|
|
66
|
+
visited.delete(nodeKey); // Clean up after recursion
|
|
67
|
+
}
|
|
68
|
+
// Helper to update parent nodes recursively
|
|
69
|
+
function updateParents(nodeKey) {
|
|
70
|
+
if (visited.has(nodeKey)) {
|
|
71
|
+
throw new Error(`Cycle detected at node: ${nodeKey}`);
|
|
255
72
|
}
|
|
256
|
-
|
|
257
|
-
|
|
73
|
+
visited.add(nodeKey);
|
|
74
|
+
const node = nodesMap.get(nodeKey);
|
|
75
|
+
if (node && node.parentId) {
|
|
76
|
+
const parentNode = nodesMap.get(node.parentId);
|
|
77
|
+
if (parentNode) {
|
|
78
|
+
parentNode.selectedStatus = calculateSelectedStatus(parentNode.key);
|
|
79
|
+
updateParents(parentNode.key);
|
|
80
|
+
}
|
|
258
81
|
}
|
|
259
|
-
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
82
|
+
visited.delete(nodeKey); // Clean up after recursion
|
|
83
|
+
}
|
|
84
|
+
// Main logic: update the target node and propagate changes
|
|
85
|
+
const targetNode = nodesMap.get(key);
|
|
86
|
+
if (targetNode) {
|
|
87
|
+
targetNode.selectedStatus = isChecked ? 'completely' : 'none';
|
|
88
|
+
updateChildren(key, targetNode.selectedStatus);
|
|
89
|
+
updateParents(key);
|
|
90
|
+
}
|
|
91
|
+
if (!checkEmpty(rootNode)) {
|
|
92
|
+
return {
|
|
93
|
+
rootNode: list[0],
|
|
94
|
+
data: list.slice(1),
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
return { data: list };
|
|
265
98
|
};
|
|
266
99
|
//# sourceMappingURL=handleTreeNodeSelect.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"handleTreeNodeSelect.js","sourceRoot":"","sources":["../../../src/utils/handleTreeNodeSelect/handleTreeNodeSelect.ts"],"names":[],"mappings":"AACA,
|
|
1
|
+
{"version":3,"file":"handleTreeNodeSelect.js","sourceRoot":"","sources":["../../../src/utils/handleTreeNodeSelect/handleTreeNodeSelect.ts"],"names":[],"mappings":"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"}
|
|
@@ -97,4 +97,6 @@ declare const VALID_NAME_PATTERN: RegExp;
|
|
|
97
97
|
declare const REMOVEROOT_MODULEID: RegExp;
|
|
98
98
|
declare const NO_LEADING_TRAILING_SPACE_REGEX: RegExp;
|
|
99
99
|
declare const SERVER_HOST_REGEX: RegExp;
|
|
100
|
-
|
|
100
|
+
declare const EMAIL_FORMAT_REGEX: RegExp;
|
|
101
|
+
declare const INVALID_EMAIL_REGEX: RegExp;
|
|
102
|
+
export { DYNAMIC_VALUE__PLACEHOLDER_REGEX, DYNAMIC_VALUE_PATTERN_REGEX, DYNAMIC_VALUE_TYPE_REGEX, DYNAMIC_VALUE_WITH_VALID_BRACKETS_REGEX, EMAIL_REGEX, URL_REGEX, PHONE_REGEX, POSTAL_CODE_REGEX, IPV4_REGEX, IPV6_REGEX, HEX_COLOR_REGEX, PASSWORD_SIMPLE_REGEX, PASSWORD_COMPLEX_REGEX, ALPHABET_ONLY_REGEX, NUMBERS_ONLY_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, DATE_REGEX, TIME_REGEX, FILE_EXTENSION_REGEX, MAC_ADDRESS_REGEX, CREDIT_CARD_REGEX, SSN_REGEX, UUID_REGEX, HTML_TAG_REGEX, WHITESPACE_REGEX, BIG_END_WHITESPACE, US_ZIP_CODE_REGEX, USERNAME_REGEX, INDIAN_PHONE_REGEX, INDIAN_PIN_CODE_REGEX, GSTIN_REGEX, PAN_CARD_REGEX, AADHAAR_REGEX, VEHICLE_REGISTRATION_REGEX, INDIAN_CURRENCY_REGEX, INTERNATIONAL_PHONE_REGEX, INDIAN_PASSPORT_REGEX, DRIVING_LICENSE_REGEX, USERNAME_SPECIAL_REGEX, DECIMAL_NUMBER_REGEX, HTML_ATTRIBUTE_REGEX, RGB_COLOR_REGEX, HSL_COLOR_REGEX, BASE64_REGEX, BINARY_NUMBER_REGEX, HEXADECIMAL_NUMBER_REGEX, ROMAN_NUMERALS_REGEX, CURRENCY_GENERIC_REGEX, LINKEDIN_PROFILE_REGEX, TWITTER_HANDLE_REGEX, UNIT_REGEX, NUMBER_REGEX, MEMORY_VALIDATION_REGEX, STEP_GROUP_NAME_REGEX, NLP_DESCRIPTION_REGEX, FILE_NAME_REGEX, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, PARAMETER_ALPHANUMERIC_REGEX, ALPHANUMERIC_PARENTHESIS_REGEX, UPPERCASE_REGEX, LOWERCASE_REGEX, PASSWORD_NUMBER_REGEX, SPECIAL_CHARACTER_REGEX, EMAIL_VALID_START, SCRIPT_REGEX, STRIP_NEW_LINES_REGEX, ENTER_NEW_LINE_REGEX, CAMEL_CASE_REGEX, SPECIAL_REGEX_CHARACTERS_PATTERN, YOUTUBE_URL_VALIDATION_REGEX, CERTIFICATES_NAME_REGEX, HTML_FILE_TYPE_VALIDATION, BODY_TAG_TYPE_VALIDATION, XML_FILE_TYPE_VALIDATION, JAVASCRIPT_FILE_TYPE_VALIDATION, CHECK_CAMEL_CASE, DETECT_AT_CHAR_IN_COMMENT, DETECT_AT_CHAR_BETWEEN_STRINGS_IN_COMMENT, DETECT_MENTIONED_USERNAME_AFTER_SPACE, DETECT_MENTIONED_USERNAME_AFTER_SPACE_SPECIAL_CHARS_ALLOWED, DETECT_MENTIONED_USERNAME_BEFORE_CARET, START_END_WHITESPACE_REGEX, ALPHA_NUM_REGEX, DETECT_AT_CHAR_AT_START, CHECK_AT_FOLLOWED_BY_WORD, DETECT_WORD_START_WITH_AT, EMAIL_VALIDATION_REGEX, LINK_VALIDATION_REGEX, ALPHA_NUM_EXTENDED_REGEX, ALPHANUMERIC_WITH_DOT_REGEX, EXCEL_SPACING_REGEX, ALPHABET_WITH_SPACES_ONLY_REGEX, FILENAME_VALIDATION_REGEX, VALID_NAME_PATTERN, REMOVEROOT_MODULEID, NO_LEADING_TRAILING_SPACE_REGEX, SERVER_HOST_REGEX, EMAIL_FORMAT_REGEX, INVALID_EMAIL_REGEX };
|
package/lib/validations/regex.js
CHANGED
|
@@ -183,5 +183,8 @@ const NO_LEADING_TRAILING_SPACE_REGEX = /^(?!\s)[\s\S]*?(?<!\s)$/;
|
|
|
183
183
|
// Optional http:// or https://
|
|
184
184
|
// Disallows: plain words without structure, invalid characters
|
|
185
185
|
const SERVER_HOST_REGEX = /^(https?:\/\/)?(((localhost)(:\d{1,5})?)|(((\d{1,3})\.){3}\d{1,3}(:\d{1,5})?)|(([a-zA-Z0-9-]+\.)+[a-zA-Z]{2,}(:\d{1,5})?))$/;
|
|
186
|
-
|
|
186
|
+
//used to validate email address format.
|
|
187
|
+
const EMAIL_FORMAT_REGEX = /^[a-zA-Z0-9]+(?:[._-][a-zA-Z0-9]+)*@[a-zA-Z0-9]+(?:[._-][a-zA-Z0-9]+)+$/;
|
|
188
|
+
const INVALID_EMAIL_REGEX = /^(?!.*\.(com\.in|in\.com)$)[a-zA-Z0-9](?:[a-zA-Z0-9._-]*[a-zA-Z0-9])?@[a-zA-Z0-9]+(?:[._-][a-zA-Z0-9]+)*\.(com|in)$/;
|
|
189
|
+
export { DYNAMIC_VALUE__PLACEHOLDER_REGEX, DYNAMIC_VALUE_PATTERN_REGEX, DYNAMIC_VALUE_TYPE_REGEX, DYNAMIC_VALUE_WITH_VALID_BRACKETS_REGEX, EMAIL_REGEX, URL_REGEX, PHONE_REGEX, POSTAL_CODE_REGEX, IPV4_REGEX, IPV6_REGEX, HEX_COLOR_REGEX, PASSWORD_SIMPLE_REGEX, PASSWORD_COMPLEX_REGEX, ALPHABET_ONLY_REGEX, NUMBERS_ONLY_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, DATE_REGEX, TIME_REGEX, FILE_EXTENSION_REGEX, MAC_ADDRESS_REGEX, CREDIT_CARD_REGEX, SSN_REGEX, UUID_REGEX, HTML_TAG_REGEX, WHITESPACE_REGEX, BIG_END_WHITESPACE, US_ZIP_CODE_REGEX, USERNAME_REGEX, INDIAN_PHONE_REGEX, INDIAN_PIN_CODE_REGEX, GSTIN_REGEX, PAN_CARD_REGEX, AADHAAR_REGEX, VEHICLE_REGISTRATION_REGEX, INDIAN_CURRENCY_REGEX, INTERNATIONAL_PHONE_REGEX, INDIAN_PASSPORT_REGEX, DRIVING_LICENSE_REGEX, USERNAME_SPECIAL_REGEX, DECIMAL_NUMBER_REGEX, HTML_ATTRIBUTE_REGEX, RGB_COLOR_REGEX, HSL_COLOR_REGEX, BASE64_REGEX, BINARY_NUMBER_REGEX, HEXADECIMAL_NUMBER_REGEX, ROMAN_NUMERALS_REGEX, CURRENCY_GENERIC_REGEX, LINKEDIN_PROFILE_REGEX, TWITTER_HANDLE_REGEX, UNIT_REGEX, NUMBER_REGEX, MEMORY_VALIDATION_REGEX, STEP_GROUP_NAME_REGEX, NLP_DESCRIPTION_REGEX, FILE_NAME_REGEX, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, PARAMETER_ALPHANUMERIC_REGEX, ALPHANUMERIC_PARENTHESIS_REGEX, UPPERCASE_REGEX, LOWERCASE_REGEX, PASSWORD_NUMBER_REGEX, SPECIAL_CHARACTER_REGEX, EMAIL_VALID_START, SCRIPT_REGEX, STRIP_NEW_LINES_REGEX, ENTER_NEW_LINE_REGEX, CAMEL_CASE_REGEX, SPECIAL_REGEX_CHARACTERS_PATTERN, YOUTUBE_URL_VALIDATION_REGEX, CERTIFICATES_NAME_REGEX, HTML_FILE_TYPE_VALIDATION, BODY_TAG_TYPE_VALIDATION, XML_FILE_TYPE_VALIDATION, JAVASCRIPT_FILE_TYPE_VALIDATION, CHECK_CAMEL_CASE, DETECT_AT_CHAR_IN_COMMENT, DETECT_AT_CHAR_BETWEEN_STRINGS_IN_COMMENT, DETECT_MENTIONED_USERNAME_AFTER_SPACE, DETECT_MENTIONED_USERNAME_AFTER_SPACE_SPECIAL_CHARS_ALLOWED, DETECT_MENTIONED_USERNAME_BEFORE_CARET, START_END_WHITESPACE_REGEX, ALPHA_NUM_REGEX, DETECT_AT_CHAR_AT_START, CHECK_AT_FOLLOWED_BY_WORD, DETECT_WORD_START_WITH_AT, EMAIL_VALIDATION_REGEX, LINK_VALIDATION_REGEX, ALPHA_NUM_EXTENDED_REGEX, ALPHANUMERIC_WITH_DOT_REGEX, EXCEL_SPACING_REGEX, ALPHABET_WITH_SPACES_ONLY_REGEX, FILENAME_VALIDATION_REGEX, VALID_NAME_PATTERN, REMOVEROOT_MODULEID, NO_LEADING_TRAILING_SPACE_REGEX, SERVER_HOST_REGEX, EMAIL_FORMAT_REGEX, INVALID_EMAIL_REGEX };
|
|
187
190
|
//# sourceMappingURL=regex.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"regex.js","sourceRoot":"","sources":["../../src/validations/regex.ts"],"names":[],"mappings":"AAAA,8BAA8B;AAE9B,mBAAmB;AACnB,MAAM,WAAW,GAAG,4BAA4B,CAAC;AAEjD,iBAAiB;AACjB,MAAM,SAAS,GAAG,4DAA4D,CAAC;AAE/E,0BAA0B;AAC1B,MAAM,WAAW,GAAG,uBAAuB,CAAC;AAE5C,mCAAmC;AACnC,MAAM,iBAAiB,GAAG,wBAAwB,CAAC;AAEnD,0BAA0B;AAC1B,MAAM,UAAU,GACd,uFAAuF,CAAC;AAE1F,0BAA0B;AAC1B,MAAM,UAAU,GAAG,4CAA4C,CAAC;AAEhE,oCAAoC;AACpC,MAAM,eAAe,GAAG,oCAAoC,CAAC;AAE7D,iEAAiE;AACjE,MAAM,qBAAqB,GAAG,wCAAwC,CAAC;AAEvE,0GAA0G;AAC1G,MAAM,sBAAsB,GAC1B,sEAAsE,CAAC;AAEzE,4BAA4B;AAC5B,MAAM,mBAAmB,GAAG,aAAa,CAAC;AAE1C,0BAA0B;AAC1B,MAAM,kBAAkB,GAAG,OAAO,CAAC;AAEnC,0BAA0B;AAC1B,MAAM,kBAAkB,GAAG,gBAAgB,CAAC;AAE5C,2HAA2H;AAC3H,MAAM,oCAAoC,GAAG,qBAAqB,CAAC;AAEnE,+BAA+B;AAC/B,MAAM,UAAU,GAAG,qBAAqB,CAAC;AAEzC,6BAA6B;AAC7B,MAAM,UAAU,GAAG,qBAAqB,CAAC;AAEzC,2DAA2D;AAC3D,MAAM,oBAAoB,GAAG,uBAAuB,CAAC;AAErD,yBAAyB;AACzB,MAAM,iBAAiB,GAAG,2CAA2C,CAAC;AAEtE,wCAAwC;AACxC,MAAM,iBAAiB,GAAG,8BAA8B,CAAC;AAEzD,sDAAsD;AACtD,MAAM,SAAS,GAAG,qBAAqB,CAAC;AAExC,kBAAkB;AAClB,MAAM,UAAU,GACd,4EAA4E,CAAC;AAE/E,uBAAuB;AACvB,MAAM,cAAc,GAAG,2BAA2B,CAAC;AAEnD,8CAA8C;AAC9C,MAAM,gBAAgB,GAAG,SAAS,CAAC;AAEnC,yCAAyC;AACzC,MAAM,iBAAiB,GAAG,kBAAkB,CAAC;AAE7C,yCAAyC;AACzC,MAAM,kBAAkB,GAAG,SAAS,CAAC;AAErC,mEAAmE;AACnE,MAAM,cAAc,GAAG,sBAAsB,CAAC;AAE9C,8BAA8B;AAE9B,iCAAiC;AACjC,MAAM,kBAAkB,GAAG,cAAc,CAAC;AAE1C,6BAA6B;AAC7B,MAAM,qBAAqB,GAAG,SAAS,CAAC;AAExC,mBAAmB;AACnB,MAAM,WAAW,GAAG,wDAAwD,CAAC;AAE7E,sBAAsB;AACtB,MAAM,cAAc,GAAG,yBAAyB,CAAC;AAEjD,4BAA4B;AAC5B,MAAM,aAAa,GAAG,UAAU,CAAC;AAEjC,kCAAkC;AAClC,MAAM,0BAA0B,GAAG,gCAAgC,CAAC;AAEpE,oCAAoC;AACpC,MAAM,qBAAqB,GAAG,0CAA0C,CAAC;AAEzE,8CAA8C;AAE9C,wCAAwC;AACxC,MAAM,yBAAyB,GAAG,oBAAoB,CAAC;AAEvD,qCAAqC;AACrC,MAAM,qBAAqB,GAAG,mBAAmB,CAAC;AAElD,qCAAqC;AACrC,MAAM,qBAAqB,GAAG,8BAA8B,CAAC;AAE7D,mCAAmC;AACnC,MAAM,sBAAsB,GAAG,wBAAwB,CAAC;AAExD,4BAA4B;AAC5B,MAAM,oBAAoB,GAAG,iBAAiB,CAAC;AAE/C,6BAA6B;AAC7B,MAAM,oBAAoB,GAAG,4CAA4C,CAAC;AAE1E,4BAA4B;AAC5B,MAAM,eAAe,GAAG,8CAA8C,CAAC;AAEvE,4BAA4B;AAC5B,MAAM,eAAe,GAAG,gDAAgD,CAAC;AAEzE,2BAA2B;AAC3B,MAAM,YAAY,GAChB,qEAAqE,CAAC;AAExE,2BAA2B;AAC3B,MAAM,mBAAmB,GAAG,SAAS,CAAC;AAEtC,gCAAgC;AAChC,MAAM,wBAAwB,GAAG,gBAAgB,CAAC;AAElD,4BAA4B;AAC5B,MAAM,oBAAoB,GACxB,mEAAmE,CAAC;AAEtE,gCAAgC;AAChC,MAAM,sBAAsB,GAAG,4CAA4C,CAAC;AAE5E,kCAAkC;AAClC,MAAM,sBAAsB,GAC1B,8DAA8D,CAAC;AAEjE,4BAA4B;AAC5B,MAAM,oBAAoB,GAAG,0BAA0B,CAAC;AAExD,mCAAmC;AACnC,MAAM,YAAY,GAAG,YAAY,CAAC;AAElC,kCAAkC;AAClC,MAAM,UAAU,GAAG,WAAW,CAAC;AAE/B,0BAA0B;AAC1B,MAAM,YAAY,GAAG,QAAQ,CAAC;AAE9B,4EAA4E;AAC5E,MAAM,uBAAuB,GAAG,8BAA8B,CAAC;AAC/D,MAAM,qBAAqB,GAAG,sBAAsB,CAAC;AAErD,MAAM,qBAAqB,GAAG,oBAAoB,CAAC;AAEnD,MAAM,eAAe,GAAG,aAAa,CAAC;AAEtC,MAAM,6BAA6B,GAAG,UAAU,CAAC;AAEjD,MAAM,0BAA0B,GAAG,QAAQ,CAAC;AAE5C,MAAM,4BAA4B,GAChC,6DAA6D,CAAC;AAEhE,MAAM,8BAA8B,GAClC,oEAAoE,CAAC;AAEvE,MAAM,eAAe,GAAG,OAAO,CAAC;AAEhC,MAAM,eAAe,GAAG,OAAO,CAAC;AAEhC,MAAM,qBAAqB,GAAG,IAAI,CAAC;AAEnC,MAAM,uBAAuB,GAAG,wBAAwB,CAAC;AAEzD,MAAM,iBAAiB,GACrB,gEAAgE,CAAC;AAEnE,MAAM,qBAAqB,GAAG,KAAK,CAAC;AACpC,MAAM,oBAAoB,GAAG,KAAK,CAAC;AAEnC,oEAAoE;AACpE,MAAM,gBAAgB,GAAG,yBAAyB,CAAC;AAEnD,MAAM,gCAAgC,GAAG,qBAAqB,CAAC;AAE/D,MAAM,4BAA4B,GAChC,sFAAsF,CAAC;AAEzF,MAAM,gCAAgC,GAAG,oBAAoB,CAAC;AAE9D,MAAM,2BAA2B,GAAG,wBAAwB,CAAC;AAE7D,MAAM,wBAAwB,GAAG,YAAY,CAAC;AAE9C,MAAM,uCAAuC,GAC3C,gCAAgC,CAAC;AAEnC,MAAM,uBAAuB,GAAG,2BAA2B,CAAC;AAE5D,8BAA8B;AAC9B,MAAM,yBAAyB,GAAG,+BAA+B,CAAC;AAElE,8BAA8B;AAC9B,MAAM,wBAAwB,GAAG,+BAA+B,CAAC;AAEjE,6BAA6B;AAC7B,MAAM,wBAAwB,GAC5B,mDAAmD,CAAC;AAEtD,oCAAoC;AACpC,MAAM,+BAA+B,GACnC,6EAA6E,CAAC;AAEhF,+BAA+B;AAC/B,MAAM,gBAAgB,GAAG,wBAAwB,CAAC;AAElD,sDAAsD;AACtD,MAAM,yBAAyB,GAAG,OAAO,CAAC;AAE1C,2CAA2C;AAC3C,MAAM,yCAAyC,GAAG,mBAAmB,CAAC;AAEtE,uFAAuF;AACvF,MAAM,qCAAqC,GAAG,mBAAmB,CAAC;AAElE,wHAAwH;AACxH,MAAM,2DAA2D,GAC/D,mBAAmB,CAAC;AAEtB,sDAAsD;AACtD,MAAM,sCAAsC,GAAG,iBAAiB,CAAC;AAEjE,kDAAkD;AAClD,MAAM,0BAA0B,GAAG,gBAAgB,CAAC;AAEpD,8CAA8C;AAC9C,MAAM,eAAe,GAAG,iBAAiB,CAAC;AAE1C,oFAAoF;AACpF,MAAM,uBAAuB,GAAG,mBAAmB,CAAC;AAEpD,uHAAuH;AACvH,MAAM,yBAAyB,GAAG,SAAS,CAAC;AAC5C,kCAAkC;AAClC,MAAM,yBAAyB,GAAG,SAAS,CAAC;AAC5C,4BAA4B;AAC5B,MAAM,sBAAsB,GAC1B,iIAAiI,CAAC;AAEpI,mGAAmG;AACnG,MAAM,qBAAqB,GACzB,yFAAyF,CAAC;AAE5F,4FAA4F;AAC5F,MAAM,wBAAwB,GAAG,sBAAsB,CAAC;AAExD,gEAAgE;AAChE,MAAM,2BAA2B,GAAG,kBAAkB,CAAC;AAEvD,gEAAgE;AAChE,MAAM,mBAAmB,GAAG,SAAS,CAAC;AAEtC,uCAAuC;AACvC,MAAM,+BAA+B,GAAG,cAAc,CAAC;AAEvD,gCAAgC;AAChC,0DAA0D;AAC1D,oCAAoC;AACpC,iCAAiC;AACjC,MAAM,yBAAyB,GAC7B,qFAAqF,CAAC;AAExF,+EAA+E;AAC/E,MAAM,kBAAkB,GAAG,kBAAkB,CAAC;AAE9C,6DAA6D;AAC7D,MAAM,mBAAmB,GAAG,kBAAkB,CAAC;AAC/C,MAAM,+BAA+B,GACnC,yBAAyB,CAAC;AAE5B,yBAAyB;AACzB,iCAAiC;AACjC,+BAA+B;AAC/B,+DAA+D;AAC/D,MAAM,iBAAiB,GACrB,6HAA6H,CAAC;AAEhI,OAAO,EACL,gCAAgC,EAChC,2BAA2B,EAC3B,wBAAwB,EACxB,uCAAuC,EACvC,WAAW,EACX,SAAS,EACT,WAAW,EACX,iBAAiB,EACjB,UAAU,EACV,UAAU,EACV,eAAe,EACf,qBAAqB,EACrB,sBAAsB,EACtB,mBAAmB,EACnB,kBAAkB,EAClB,kBAAkB,EAClB,oCAAoC,EACpC,UAAU,EACV,UAAU,EACV,oBAAoB,EACpB,iBAAiB,EACjB,iBAAiB,EACjB,SAAS,EACT,UAAU,EACV,cAAc,EACd,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,cAAc,EACd,kBAAkB,EAClB,qBAAqB,EACrB,WAAW,EACX,cAAc,EACd,aAAa,EACb,0BAA0B,EAC1B,qBAAqB,EACrB,yBAAyB,EACzB,qBAAqB,EACrB,qBAAqB,EACrB,sBAAsB,EACtB,oBAAoB,EACpB,oBAAoB,EACpB,eAAe,EACf,eAAe,EACf,YAAY,EACZ,mBAAmB,EACnB,wBAAwB,EACxB,oBAAoB,EACpB,sBAAsB,EACtB,sBAAsB,EACtB,oBAAoB,EACpB,UAAU,EACV,YAAY,EACZ,uBAAuB,EACvB,qBAAqB,EACrB,qBAAqB,EACrB,eAAe,EACf,6BAA6B,EAC7B,0BAA0B,EAC1B,4BAA4B,EAC5B,8BAA8B,EAC9B,eAAe,EACf,eAAe,EACf,qBAAqB,EACrB,uBAAuB,EACvB,iBAAiB,EACjB,YAAY,EACZ,qBAAqB,EACrB,oBAAoB,EACpB,gBAAgB,EAChB,gCAAgC,EAChC,4BAA4B,EAC5B,uBAAuB,EACvB,yBAAyB,EACzB,wBAAwB,EACxB,wBAAwB,EACxB,+BAA+B,EAC/B,gBAAgB,EAChB,yBAAyB,EACzB,yCAAyC,EACzC,qCAAqC,EACrC,2DAA2D,EAC3D,sCAAsC,EACtC,0BAA0B,EAC1B,eAAe,EACf,uBAAuB,EACvB,yBAAyB,EACzB,yBAAyB,EACzB,sBAAsB,EACtB,qBAAqB,EACrB,wBAAwB,EACxB,2BAA2B,EAC3B,mBAAmB,EACnB,+BAA+B,EAC/B,yBAAyB,EACzB,kBAAkB,EAClB,mBAAmB,EACnB,+BAA+B,EAC/B,iBAAiB,
|
|
1
|
+
{"version":3,"file":"regex.js","sourceRoot":"","sources":["../../src/validations/regex.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,25 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vaishu-react-comp",
|
|
3
3
|
"description": "Great for pixel-perfect, design-focused components in React",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.3",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
7
7
|
"types": "lib/index.d.ts",
|
|
8
8
|
"sideEffects": [
|
|
9
|
-
"lib/styles.css"
|
|
9
|
+
"lib/styles.css",
|
|
10
|
+
"**/*.css",
|
|
11
|
+
"**/*.scss"
|
|
10
12
|
],
|
|
11
13
|
"author": {
|
|
12
14
|
"name": "Vaishnavi K V"
|
|
13
15
|
},
|
|
14
16
|
"license": "MIT",
|
|
15
17
|
"devDependencies": {
|
|
16
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
17
18
|
"@babel/core": "^7.0.0",
|
|
18
19
|
"@babel/preset-react": "^7.26.3",
|
|
19
20
|
"@chromatic-com/storybook": "^3.2.2",
|
|
20
21
|
"@rollup/plugin-babel": "^6.0.4",
|
|
21
22
|
"@rollup/plugin-commonjs": "^28.0.2",
|
|
22
23
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
24
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
23
25
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
24
26
|
"@rollup/plugin-url": "^8.0.2",
|
|
25
27
|
"@storybook/addon-docs": "^8.4.5",
|
|
@@ -31,14 +33,15 @@
|
|
|
31
33
|
"@storybook/react": "^8.4.5",
|
|
32
34
|
"@storybook/react-vite": "^8.4.5",
|
|
33
35
|
"@storybook/test": "^8.4.5",
|
|
36
|
+
"@types/draft-js": "^0.11.19",
|
|
34
37
|
"@types/js-beautify": "^1.14.3",
|
|
35
38
|
"@types/node-forge": "^1.3.14",
|
|
36
39
|
"@types/react": "^18.3.12",
|
|
37
40
|
"@types/react-dom": "^18.3.1",
|
|
38
41
|
"@types/react-google-recaptcha": "^2.1.9",
|
|
39
|
-
"@types/draft-js": "^0.11.19",
|
|
40
42
|
"chromatic": "^11.16.5",
|
|
41
43
|
"cross-env": "^7.0.3",
|
|
44
|
+
"monaco-editor": "^0.55.1",
|
|
42
45
|
"react": ">=18.2.0 <19.0.0",
|
|
43
46
|
"react-dom": ">=18.2.0 <19.0.0",
|
|
44
47
|
"rimraf": "^6.0.1",
|
|
@@ -58,6 +61,7 @@
|
|
|
58
61
|
"react-dom": "^18.2.0"
|
|
59
62
|
},
|
|
60
63
|
"scripts": {
|
|
64
|
+
"audit": "pnpm audit",
|
|
61
65
|
"storybook": "storybook dev -p 6006",
|
|
62
66
|
"build-storybook": "storybook build",
|
|
63
67
|
"build": "rimraf lib && tsc -b && cross-env NODE_ENV=production rollup -c",
|
|
@@ -72,35 +76,43 @@
|
|
|
72
76
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
73
77
|
"@dnd-kit/sortable": "^8.0.0",
|
|
74
78
|
"@dnd-kit/utilities": "^3.2.2",
|
|
79
|
+
"@monaco-editor/react": "^4.6.0",
|
|
80
|
+
"@types/react-draft-wysiwyg": "^1.13.8",
|
|
81
|
+
"@types/react-window": "^1.8.8",
|
|
75
82
|
"@vitejs/plugin-react": "^4.3.0",
|
|
76
83
|
"classnames": "^2.5.1",
|
|
77
84
|
"date-fns": "^3.6.0",
|
|
78
85
|
"date-fns-tz": "^3.2.0",
|
|
79
86
|
"draft-js": "^0.11.7",
|
|
87
|
+
"janus-gateway": "^1.3.1",
|
|
88
|
+
"js-beautify": "^1.15.1",
|
|
80
89
|
"jsencrypt": "^3.3.2",
|
|
81
90
|
"node-forge": "^1.3.1",
|
|
82
91
|
"react-archer": "^4.4.0",
|
|
83
92
|
"react-day-picker": "^9.2.1",
|
|
93
|
+
"react-draft-wysiwyg": "^1.15.0",
|
|
84
94
|
"react-google-recaptcha": "^3.1.0",
|
|
85
95
|
"react-hook-form": "7.64.0",
|
|
86
|
-
"
|
|
96
|
+
"react-phone-input-2": "^2.15.1",
|
|
97
|
+
"react-phone-number-input": "^3.4.12",
|
|
98
|
+
"react-virtuoso": "^4.13.0",
|
|
87
99
|
"react-window": "^1.8.10",
|
|
88
100
|
"scss": "^0.2.4",
|
|
101
|
+
"tippy.js": "^6.3.7",
|
|
89
102
|
"use-context-selector": "^2.0.0",
|
|
90
103
|
"vite-plugin-svgr": "^4.3.0",
|
|
91
|
-
"
|
|
92
|
-
"webrtc-adapter": "^9.0.1",
|
|
93
|
-
"react-virtuoso": "^4.13.0",
|
|
94
|
-
"react-draft-wysiwyg": "^1.15.0",
|
|
95
|
-
"@types/react-draft-wysiwyg": "^1.13.8",
|
|
96
|
-
"@monaco-editor/react": "^4.6.0",
|
|
97
|
-
"js-beautify": "^1.15.1",
|
|
98
|
-
"react-phone-input-2": "^2.15.1",
|
|
99
|
-
"react-phone-number-input": "^3.4.12"
|
|
104
|
+
"webrtc-adapter": "^9.0.1"
|
|
100
105
|
},
|
|
101
106
|
"files": [
|
|
102
107
|
"lib",
|
|
103
108
|
"README.md",
|
|
104
109
|
"LICENSE"
|
|
105
|
-
]
|
|
110
|
+
],
|
|
111
|
+
"pnpm": {
|
|
112
|
+
"overrides": {
|
|
113
|
+
"minimatch": ">=10.2.1",
|
|
114
|
+
"esbuild": "0.25.0",
|
|
115
|
+
"glob": "^13.0.5"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
106
118
|
}
|