pixel-react 1.8.4 → 1.8.5
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/.prettierrc.js +13 -13
- package/.storybook/main.ts +26 -26
- package/.storybook/preview-head.html +2 -2
- package/.storybook/preview.ts +26 -26
- package/.yarnrc.yml +1 -1
- package/README.md +75 -75
- package/index.scss +4 -4
- package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
- package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
- package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
- package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
- package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
- package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
- package/lib/components/Avatar/Avatar.stories.d.ts +10 -0
- package/lib/components/Button/Button.stories.d.ts +13 -0
- package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
- package/lib/components/Charts/DashboardDonutChart/types.d.ts +3 -0
- package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
- package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
- package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +6 -0
- package/lib/components/Checkbox/Checkbox.stories.d.ts +8 -0
- package/lib/components/Chip/Chip.stories.d.ts +14 -0
- package/lib/components/DatePicker/DatePicker.stories.d.ts +9 -0
- package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
- package/lib/components/Drawer/Drawer.stories.d.ts +12 -0
- package/lib/components/Drawer/Types.d.ts +4 -0
- package/lib/components/Excel/ExcelContextMenu/ExcelContextMenu.d.ts +4 -0
- package/lib/components/Excel/ExcelFile/ExcelFile.d.ts +10 -4
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.d.ts +10 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.d.ts +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +9 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/types.d.ts +0 -2
- package/lib/components/Excel/Types.d.ts +14 -10
- package/lib/components/ExcelFile/ColorBarselector/ColorBarSelector.d.ts +8 -0
- package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +80 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +174 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +178 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +44 -0
- package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +19 -0
- package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
- package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +12 -0
- package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +15 -0
- package/lib/components/ExcelFile/Types.d.ts +129 -0
- package/lib/components/ExcelFile/index.d.ts +1 -0
- package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +7 -0
- package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
- package/lib/components/FileDropzone/FileDropzone.stories.d.ts +8 -0
- package/lib/components/Form/Form.stories.d.ts +7 -0
- package/lib/components/GridLayout/GridLayout.stories.d.ts +8 -0
- package/lib/components/HighlightText/HighlightText.stories.d.ts +6 -0
- package/lib/components/Icon/Icon.stories.d.ts +8 -0
- package/lib/components/IconButton/IconButton.stories.d.ts +7 -0
- package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
- package/lib/components/Input/Input.stories.d.ts +9 -0
- package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +9 -0
- package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +11 -0
- package/lib/components/LazyLoad/LazyLoad.stories.d.ts +6 -0
- package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
- package/lib/components/MenuOption/MenuOption.stories.d.ts +16 -0
- package/lib/components/MiniModal/MiniModal.stories.d.ts +10 -0
- package/lib/components/Modal/Modal.stories.d.ts +7 -0
- package/lib/components/ModulesChip/ModuleChip.stories.d.ts +6 -0
- package/lib/components/MultiSelect/MultiSelect.stories.d.ts +10 -0
- package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
- package/lib/components/Paper/Paper.stories.d.ts +11 -0
- package/lib/components/RadioButton/RadioButton.stories.d.ts +10 -0
- package/lib/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
- package/lib/components/Search/Search.stories.d.ts +6 -0
- package/lib/components/Select/Select.stories.d.ts +13 -0
- package/lib/components/Select/components/Dropdown/Dropdown.d.ts +4 -0
- package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +17 -0
- package/lib/components/Select/components/types.d.ts +1 -0
- package/lib/components/Select/types.d.ts +8 -0
- package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
- package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
- package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
- package/lib/components/Table/Table.stories.d.ts +13 -0
- package/lib/components/TableTree/TableTree.stories.d.ts +7 -0
- package/lib/components/Tabs/Tabs.stories.d.ts +9 -0
- package/lib/components/TextArea/Textarea.stories.d.ts +9 -0
- package/lib/components/Toast/Toast.stories.d.ts +6 -0
- package/lib/components/Toastify/Toastify.stories.d.ts +6 -0
- package/lib/components/Toggle/Toggle.stories.d.ts +12 -0
- package/lib/components/Tooltip/Tooltip.stories.d.ts +15 -0
- package/lib/components/Typography/Typography.stories.d.ts +10 -0
- package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
- package/lib/index.d.ts +42 -6
- package/lib/index.esm.js +4347 -1378
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +4356 -1377
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +6 -0
- package/lib/utils/compareArrays/compareArrays.stories.d.ts +6 -0
- package/lib/utils/compareObjects/compareObjects.stories.d.ts +6 -0
- package/lib/utils/debounce/debounce.stories.d.ts +6 -0
- package/lib/utils/ffID/ffID.stories.d.ts +6 -0
- package/lib/utils/find/findAndInsert.d.ts +7 -0
- package/lib/utils/find/findAndInsert.stories.d.ts +7 -0
- package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
- package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
- package/lib/utils/getExtension/getExtension.stories.d.ts +6 -0
- package/lib/utils/keyBoardActionUtil/UseKeyboardActions.d.ts +2 -0
- package/lib/utils/keyBoardActionUtil/types.d.ts +4 -0
- package/lib/utils/throttle/throttle.stories.d.ts +6 -0
- package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
- package/lib/validations/regex.d.ts +2 -1
- package/package.json +86 -81
- package/rollup.config.mjs +67 -67
- package/src/StyleGuide/ColorPalette/ColorPalette.scss +62 -62
- package/src/StyleGuide/ColorPalette/ColorPalette.stories.tsx +16 -16
- package/src/StyleGuide/ColorPalette/ColorPalette.tsx +67 -67
- package/src/StyleGuide/ColorPalette/colorPaletteList.ts +304 -304
- package/src/StyleGuide/ColorPalette/index.ts +1 -1
- package/src/StyleGuide/ColorPalette/types.ts +19 -19
- package/src/StyleGuide/Typography/Typography.scss +99 -99
- package/src/StyleGuide/Typography/Typography.stories.tsx +16 -16
- package/src/StyleGuide/Typography/Typography.tsx +60 -60
- package/src/StyleGuide/Typography/TypographyList.ts +3 -3
- package/src/StyleGuide/Typography/types.ts +9 -9
- package/src/assets/Themes/BaseTheme.scss +306 -306
- package/src/assets/Themes/BlueTheme.scss +279 -279
- package/src/assets/Themes/DarkTheme.scss +319 -319
- package/src/assets/Themes/Theme.scss +21 -21
- package/src/assets/icons/Arrow.svg +4 -4
- package/src/assets/icons/Header_preset.svg +18 -18
- package/src/assets/icons/accordion_header_icon.svg +10 -10
- package/src/assets/icons/active_license_icon.svg +3 -3
- package/src/assets/icons/add_archive.svg +9 -9
- package/src/assets/icons/add_file.svg +4 -4
- package/src/assets/icons/add_label_icon.svg +3 -3
- package/src/assets/icons/add_locator.svg +4 -4
- package/src/assets/icons/add_testcase.svg +3 -3
- package/src/assets/icons/add_user.svg +9 -9
- package/src/assets/icons/add_variable.svg +11 -11
- package/src/assets/icons/add_variable_icon.svg +4 -4
- package/src/assets/icons/ai_search.svg +9 -9
- package/src/assets/icons/alert.svg +17 -17
- package/src/assets/icons/all_borders.svg +3 -3
- package/src/assets/icons/all_projects.svg +3 -3
- package/src/assets/icons/android.svg +9 -9
- package/src/assets/icons/android_icon.svg +6 -6
- package/src/assets/icons/apk_file_type.svg +4 -4
- package/src/assets/icons/app_switch.svg +11 -11
- package/src/assets/icons/approval_pending.svg +8 -8
- package/src/assets/icons/arrow_down.svg +3 -3
- package/src/assets/icons/arrow_right.svg +4 -4
- package/src/assets/icons/arrow_up.svg +3 -3
- package/src/assets/icons/arrows_down_icon.svg +3 -3
- package/src/assets/icons/arrows_right_icon.svg +10 -10
- package/src/assets/icons/arrows_top_icon.svg +3 -3
- package/src/assets/icons/attachment_icon.svg +3 -3
- package/src/assets/icons/authorization.svg +4 -4
- package/src/assets/icons/authorization_icon.svg +4 -4
- package/src/assets/icons/auto_save_icon.svg +4 -4
- package/src/assets/icons/automation_testcase.svg +4 -4
- package/src/assets/icons/back_icon.svg +3 -3
- package/src/assets/icons/backward.svg +10 -10
- package/src/assets/icons/backward_icon.svg +3 -3
- package/src/assets/icons/beautify_icon.svg +3 -3
- package/src/assets/icons/bold.svg +3 -3
- package/src/assets/icons/border_bottom.svg +3 -3
- package/src/assets/icons/border_left.svg +3 -3
- package/src/assets/icons/border_right.svg +3 -3
- package/src/assets/icons/border_top.svg +3 -3
- package/src/assets/icons/browser_stack.svg +9 -9
- package/src/assets/icons/browserstack_icon.svg +24 -24
- package/src/assets/icons/calendar_icon.svg +9 -9
- package/src/assets/icons/capture_icon.svg +2 -2
- package/src/assets/icons/check_mark.svg +3 -3
- package/src/assets/icons/chrome.svg +12 -12
- package/src/assets/icons/client_profile.svg +4 -4
- package/src/assets/icons/clock_icon.svg +11 -11
- package/src/assets/icons/clone_icon.svg +3 -3
- package/src/assets/icons/close_pill.svg +3 -3
- package/src/assets/icons/cloud_server_host_icon.svg +3 -3
- package/src/assets/icons/collapse-icon.svg +6 -6
- package/src/assets/icons/compressed_file_type.svg +4 -4
- package/src/assets/icons/configuration.svg +3 -3
- package/src/assets/icons/continue_without_sign.svg +3 -3
- package/src/assets/icons/copy-icon.svg +3 -3
- package/src/assets/icons/csv_file_type.svg +4 -4
- package/src/assets/icons/dashboard_icon.svg +31 -31
- package/src/assets/icons/dashboard_mobile_icon.svg +47 -47
- package/src/assets/icons/dashboard_web_icon.svg +9 -9
- package/src/assets/icons/data_provider.svg +8 -8
- package/src/assets/icons/dataset_list.svg +3 -3
- package/src/assets/icons/defects.svg +8 -8
- package/src/assets/icons/delete.svg +3 -3
- package/src/assets/icons/delete_info.svg +17 -17
- package/src/assets/icons/depends_on_script.svg +7 -7
- package/src/assets/icons/details.svg +3 -3
- package/src/assets/icons/double_underline.svg +5 -5
- package/src/assets/icons/download-icon.svg +3 -3
- package/src/assets/icons/download_file_icon.svg +3 -3
- package/src/assets/icons/download_icon.svg +4 -4
- package/src/assets/icons/drag_icon.svg +4 -4
- package/src/assets/icons/drawer_maximize.svg +6 -6
- package/src/assets/icons/dropzone_icon.svg +18 -18
- package/src/assets/icons/edge.svg +30 -30
- package/src/assets/icons/edit_icon.svg +5 -5
- package/src/assets/icons/element.svg +4 -4
- package/src/assets/icons/email_group.svg +3 -3
- package/src/assets/icons/error.svg +17 -17
- package/src/assets/icons/excel_corner_menu.svg +3 -3
- package/src/assets/icons/executions_icon.svg +3 -3
- package/src/assets/icons/expand-icon.svg +6 -6
- package/src/assets/icons/export.svg +4 -4
- package/src/assets/icons/export_collection_icon.svg +13 -13
- package/src/assets/icons/external_user.svg +13 -13
- package/src/assets/icons/eye_closed.svg +3 -3
- package/src/assets/icons/eye_open_icon.svg +3 -3
- package/src/assets/icons/failed_status_icon.svg +12 -12
- package/src/assets/icons/file.svg +11 -11
- package/src/assets/icons/fill_color.svg +7 -7
- package/src/assets/icons/filter.svg +4 -4
- package/src/assets/icons/fire_fox.svg +106 -106
- package/src/assets/icons/fireflink_finder_logo.svg +7 -7
- package/src/assets/icons/fireflink_icon.svg +4 -4
- package/src/assets/icons/fireflink_logo.svg +13 -13
- package/src/assets/icons/fireflink_platform.svg +4 -4
- package/src/assets/icons/firefox.svg +84 -84
- package/src/assets/icons/flaky_status_icon.svg +12 -12
- package/src/assets/icons/formate_painter.svg +5 -5
- package/src/assets/icons/formula_icon.svg +3 -3
- package/src/assets/icons/forward.svg +3 -3
- package/src/assets/icons/forward_icon.svg +3 -3
- package/src/assets/icons/full_access_icon.svg +4 -4
- package/src/assets/icons/gif_file_type.svg +4 -4
- package/src/assets/icons/global_variable_icon.svg +4 -4
- package/src/assets/icons/group_user.svg +12 -12
- package/src/assets/icons/hamburger_menu.svg +3 -3
- package/src/assets/icons/help_icon.svg +10 -10
- package/src/assets/icons/hide_access_icon.svg +3 -3
- package/src/assets/icons/hide_icon.svg +9 -9
- package/src/assets/icons/history_icon.svg +19 -19
- package/src/assets/icons/html_file_type.svg +4 -4
- package/src/assets/icons/impact_list.svg +6 -6
- package/src/assets/icons/import.svg +4 -4
- package/src/assets/icons/import_icon.svg +4 -4
- package/src/assets/icons/info.svg +17 -17
- package/src/assets/icons/info_icon.svg +5 -5
- package/src/assets/icons/info_user.svg +5 -5
- package/src/assets/icons/internet_explorer.svg +3 -3
- package/src/assets/icons/ios_icon.svg +11 -11
- package/src/assets/icons/ipk_file_type.svg +4 -4
- package/src/assets/icons/italic.svg +3 -3
- package/src/assets/icons/jira.svg +3 -3
- package/src/assets/icons/jpg_file_type.svg +4 -4
- package/src/assets/icons/json_file_type.svg +4 -4
- package/src/assets/icons/label_icon.svg +8 -8
- package/src/assets/icons/label_plus.svg +3 -3
- package/src/assets/icons/labels.svg +8 -8
- package/src/assets/icons/lambda_icon.svg +3 -3
- package/src/assets/icons/left_arrow_icon.svg +3 -3
- package/src/assets/icons/license_expired.svg +20 -20
- package/src/assets/icons/license_info.svg +28 -28
- package/src/assets/icons/license_warning.svg +10 -10
- package/src/assets/icons/link_expired.svg +186 -186
- package/src/assets/icons/linked_defects.svg +11 -11
- package/src/assets/icons/linux.svg +42 -42
- package/src/assets/icons/local.svg +3 -3
- package/src/assets/icons/local_variable_icon.svg +4 -4
- package/src/assets/icons/logo.svg +17 -17
- package/src/assets/icons/mac.svg +9 -9
- package/src/assets/icons/machine_disable_icon.svg +18 -18
- package/src/assets/icons/machine_enable_icon.svg +10 -10
- package/src/assets/icons/manage_apps.svg +3 -3
- package/src/assets/icons/manual_locator.svg +7 -7
- package/src/assets/icons/manual_testcase.svg +3 -3
- package/src/assets/icons/maximize_icon.svg +5 -5
- package/src/assets/icons/maximize_script.svg +12 -12
- package/src/assets/icons/maximize_tree.svg +3 -3
- package/src/assets/icons/minimize_script.svg +5 -5
- package/src/assets/icons/mobile_icon.svg +3 -3
- package/src/assets/icons/moon_stars.svg +10 -10
- package/src/assets/icons/more.svg +10 -10
- package/src/assets/icons/move_icon.svg +5 -5
- package/src/assets/icons/ms_dynamic.svg +4 -4
- package/src/assets/icons/ms_dynamic_icon.svg +15 -15
- package/src/assets/icons/nlp_help_icon.svg +3 -3
- package/src/assets/icons/no_access_icon.svg +4 -4
- package/src/assets/icons/no_border.svg +3 -3
- package/src/assets/icons/no_data.svg +13 -13
- package/src/assets/icons/no_license_found.svg +22 -22
- package/src/assets/icons/notification_icon.svg +3 -3
- package/src/assets/icons/opera.svg +9 -9
- package/src/assets/icons/parameters.svg +3 -3
- package/src/assets/icons/passed_status_icon.svg +12 -12
- package/src/assets/icons/pdf_file_type.svg +4 -4
- package/src/assets/icons/plus_icon.svg +11 -11
- package/src/assets/icons/plus_round_icon.svg +38 -38
- package/src/assets/icons/plus_user_icon.svg +3 -3
- package/src/assets/icons/png_file_type.svg +4 -4
- package/src/assets/icons/pre_post_condition.svg +8 -8
- package/src/assets/icons/program_element.svg +8 -8
- package/src/assets/icons/project_element.svg +4 -4
- package/src/assets/icons/project_env_variable_icon.svg +4 -4
- package/src/assets/icons/project_status_icon.svg +10 -10
- package/src/assets/icons/quick_run_setting_icon.svg +5 -5
- package/src/assets/icons/refresh-icon.svg +4 -4
- package/src/assets/icons/refresh_icon.svg +4 -4
- package/src/assets/icons/reload.svg +3 -3
- package/src/assets/icons/remove.svg +11 -11
- package/src/assets/icons/remove_user.svg +3 -3
- package/src/assets/icons/replace.svg +11 -11
- package/src/assets/icons/replace_file.svg +13 -13
- package/src/assets/icons/replace_icon.svg +6 -6
- package/src/assets/icons/reset-link.svg +52 -52
- package/src/assets/icons/right_arrow_icon.svg +4 -4
- package/src/assets/icons/rotate_icon.svg +10 -10
- package/src/assets/icons/run_automation_scripts_icon.svg +33 -33
- package/src/assets/icons/run_icon.svg +26 -26
- package/src/assets/icons/run_manual_testcase_icon.svg +4 -4
- package/src/assets/icons/safari.svg +93 -93
- package/src/assets/icons/safari_icon.svg +12 -12
- package/src/assets/icons/sales_force.svg +7 -7
- package/src/assets/icons/salesforce_icon.svg +14 -14
- package/src/assets/icons/sample_template_first.svg +29 -29
- package/src/assets/icons/sample_template_second.svg +47 -47
- package/src/assets/icons/sause_lab.svg +3 -3
- package/src/assets/icons/save_as_step.svg +3 -3
- package/src/assets/icons/search.svg +3 -3
- package/src/assets/icons/send_step.svg +4 -4
- package/src/assets/icons/settings.svg +3 -3
- package/src/assets/icons/single_user.svg +12 -12
- package/src/assets/icons/skipped_status_icon.svg +12 -12
- package/src/assets/icons/standard_template.svg +30 -30
- package/src/assets/icons/step_group.svg +10 -10
- package/src/assets/icons/strike_through.svg +3 -3
- package/src/assets/icons/success.svg +17 -17
- package/src/assets/icons/suites_icon.svg +3 -3
- package/src/assets/icons/sun_icon.svg +10 -10
- package/src/assets/icons/swipe_icon.svg +9 -9
- package/src/assets/icons/switch_license_icon.svg +123 -123
- package/src/assets/icons/system_warning.svg +61 -61
- package/src/assets/icons/tap_icon.svg +3 -3
- package/src/assets/icons/test_data.svg +5 -5
- package/src/assets/icons/test_data_set.svg +7 -7
- package/src/assets/icons/test_freshers_logo.svg +8 -8
- package/src/assets/icons/text_align_center.svg +3 -3
- package/src/assets/icons/text_align_left.svg +3 -3
- package/src/assets/icons/text_align_right.svg +3 -3
- package/src/assets/icons/text_color.svg +3 -3
- package/src/assets/icons/tick_icon.svg +4 -4
- package/src/assets/icons/toast_close.svg +3 -3
- package/src/assets/icons/txt_file_type.svg +4 -4
- package/src/assets/icons/underline.svg +4 -4
- package/src/assets/icons/unfollow_icon.svg +3 -3
- package/src/assets/icons/update_icon.svg +3 -3
- package/src/assets/icons/user_password_lock.svg +220 -220
- package/src/assets/icons/user_profile.svg +3 -3
- package/src/assets/icons/user_warning.svg +235 -235
- package/src/assets/icons/user_with_system.svg +637 -637
- package/src/assets/icons/variable.svg +3 -3
- package/src/assets/icons/variable_icon.svg +4 -4
- package/src/assets/icons/variable_set.svg +5 -5
- package/src/assets/icons/vertical_separator.svg +3 -3
- package/src/assets/icons/view_access_icon.svg +4 -4
- package/src/assets/icons/view_icon.svg +3 -3
- package/src/assets/icons/warning.svg +17 -17
- package/src/assets/icons/warning_status_icon.svg +12 -12
- package/src/assets/icons/web&mobile_icon.svg +3 -3
- package/src/assets/icons/web_icon.svg +3 -3
- package/src/assets/icons/web_mobile_icon.svg +29 -29
- package/src/assets/icons/web_service_icon.svg +3 -3
- package/src/assets/icons/web_services_icon.svg +30 -30
- package/src/assets/icons/window_maximize.svg +3 -3
- package/src/assets/icons/window_minimize.svg +3 -3
- package/src/assets/icons/window_restore.svg +4 -4
- package/src/assets/icons/windows.svg +10 -10
- package/src/assets/icons/wrong_mark.svg +3 -3
- package/src/assets/icons/wswb_delete_icon.svg +3 -3
- package/src/assets/icons/wswb_plus_icon.svg +4 -4
- package/src/assets/icons/xls_file_type.svg +4 -4
- package/src/assets/icons/xlsx_file_type.svg +4 -4
- package/src/assets/icons/xml_file_type.svg +4 -4
- package/src/assets/styles/_colors.scss +150 -150
- package/src/assets/styles/_fonts.scss +45 -45
- package/src/assets/styles/_mixins.scss +21 -21
- package/src/assets/utils/functionUtils.ts +96 -96
- package/src/components/Accordion/Accordion.scss +46 -46
- package/src/components/Accordion/Accordion.stories.tsx +48 -48
- package/src/components/Accordion/Accordion.tsx +69 -69
- package/src/components/Accordion/index.ts +1 -1
- package/src/components/Accordion/types.ts +44 -44
- package/src/components/AddResourceButton/AddButton.scss +36 -36
- package/src/components/AddResourceButton/AddButton.stories.tsx +126 -126
- package/src/components/AddResourceButton/AddButton.tsx +121 -121
- package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.scss +161 -161
- package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.tsx +38 -38
- package/src/components/AddResourceButton/index.ts +1 -1
- package/src/components/AddResourceButton/type.ts +92 -92
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.scss +189 -189
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.stories.tsx +117 -117
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.tsx +152 -152
- package/src/components/AllProjectsDropdown/types.ts +14 -14
- package/src/components/AppHeader/AppHeader.scss +218 -218
- package/src/components/AppHeader/AppHeader.stories.tsx +553 -553
- package/src/components/AppHeader/AppHeader.tsx +199 -199
- package/src/components/AppHeader/index.ts +1 -1
- package/src/components/AppHeader/types.ts +54 -54
- package/src/components/AttachImage/AttachImage.scss +76 -76
- package/src/components/AttachImage/AttachImage.stories.tsx +24 -24
- package/src/components/AttachImage/AttachImage.tsx +60 -60
- package/src/components/AttachImage/index.ts +2 -2
- package/src/components/AttachImage/types.ts +26 -26
- package/src/components/AttachmentButton/AttachmentButton.scss +9 -9
- package/src/components/AttachmentButton/AttachmentButton.stories.tsx +81 -81
- package/src/components/AttachmentButton/AttachmentButton.tsx +129 -129
- package/src/components/AttachmentButton/types.ts +13 -13
- package/src/components/Avatar/Avatar.scss +27 -27
- package/src/components/Avatar/Avatar.stories.tsx +76 -76
- package/src/components/Avatar/Avatar.tsx +41 -41
- package/src/components/Avatar/types.ts +35 -35
- package/src/components/Button/Button.scss +166 -166
- package/src/components/Button/Button.stories.tsx +81 -81
- package/src/components/Button/Button.tsx +91 -91
- package/src/components/Button/index.ts +1 -1
- package/src/components/Button/types.ts +90 -90
- package/src/components/Charts/BarChart/BarChart.scss +69 -69
- package/src/components/Charts/BarChart/BarChart.stories.tsx +70 -70
- package/src/components/Charts/BarChart/BarChart.tsx +349 -349
- package/src/components/Charts/BarChart/types.ts +12 -12
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.scss +221 -221
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.tsx +90 -58
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +560 -554
- package/src/components/Charts/DashboardDonutChart/types.ts +63 -60
- package/src/components/Charts/DonutChart/DonutChart.scss +76 -76
- package/src/components/Charts/DonutChart/DonutChart.stories.tsx +30 -30
- package/src/components/Charts/DonutChart/DonutChart.tsx +246 -246
- package/src/components/Charts/DonutChart/index.ts +1 -1
- package/src/components/Charts/DonutChart/type.ts +23 -23
- package/src/components/Charts/IconRadialChart/IconRadialChart.scss +25 -25
- package/src/components/Charts/IconRadialChart/IconRadialChart.stories.tsx +51 -51
- package/src/components/Charts/IconRadialChart/IconRadialChart.tsx +173 -173
- package/src/components/Charts/IconRadialChart/types.ts +28 -28
- package/src/components/Charts/LineChart/LineChart.scss +92 -92
- package/src/components/Charts/LineChart/LineChart.stories.tsx +198 -198
- package/src/components/Charts/LineChart/LineChart.tsx +391 -391
- package/src/components/Charts/LineChart/index.ts +1 -1
- package/src/components/Charts/LineChart/types.ts +31 -31
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.scss +85 -85
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.stories.tsx +117 -117
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.tsx +310 -306
- package/src/components/Charts/MultiRadialChart/index.ts +1 -1
- package/src/components/Charts/MultiRadialChart/types.ts +28 -28
- package/src/components/Charts/PieChart/PieChart.scss +41 -41
- package/src/components/Charts/PieChart/PieChart.stories.tsx +46 -46
- package/src/components/Charts/PieChart/PieChart.tsx +192 -192
- package/src/components/Charts/PieChart/index.ts +1 -1
- package/src/components/Charts/PieChart/types.ts +28 -28
- package/src/components/Charts/RadialChart/RadialChart.scss +16 -16
- package/src/components/Charts/RadialChart/RadialChart.stories.tsx +36 -36
- package/src/components/Charts/RadialChart/RadialChart.tsx +180 -180
- package/src/components/Charts/RadialChart/index.ts +1 -1
- package/src/components/Charts/RadialChart/types.ts +32 -32
- package/src/components/Checkbox/Checkbox.scss +148 -148
- package/src/components/Checkbox/Checkbox.stories.tsx +78 -78
- package/src/components/Checkbox/Checkbox.tsx +57 -57
- package/src/components/Checkbox/types.ts +34 -34
- package/src/components/Chip/Chip.scss +95 -95
- package/src/components/Chip/Chip.stories.tsx +125 -125
- package/src/components/Chip/Chip.tsx +39 -39
- package/src/components/Chip/index.ts +1 -1
- package/src/components/Chip/types.ts +19 -19
- package/src/components/ChooseFile/ChooseFile.stories.tsx +190 -190
- package/src/components/ChooseFile/ChooseFile.tsx +46 -46
- package/src/components/ChooseFile/types.ts +78 -78
- package/src/components/Comment/Comments.scss +166 -166
- package/src/components/Comment/Comments.stories.tsx +212 -212
- package/src/components/Comment/Comments.tsx +51 -51
- package/src/components/Comment/comment/Comment.tsx +206 -206
- package/src/components/Comment/comment/useNode.ts +51 -51
- package/src/components/Comment/index.ts +1 -1
- package/src/components/Comment/type.ts +36 -36
- package/src/components/ConditionalDropdown/ConditionalDropdown.scss +17 -17
- package/src/components/ConditionalDropdown/ConditionalDropdown.stories.tsx +151 -151
- package/src/components/ConditionalDropdown/ConditionalDropdown.tsx +157 -157
- package/src/components/ConditionalDropdown/OptionsDropdown.tsx +43 -43
- package/src/components/ConditionalDropdown/index.ts +1 -1
- package/src/components/ConditionalDropdown/types.ts +163 -163
- package/src/components/ConnectingBranch/BranchComponents/MachineInstances.tsx +143 -143
- package/src/components/ConnectingBranch/ConnectingBranch.scss +221 -221
- package/src/components/ConnectingBranch/ConnectingBranch.stories.tsx +53 -53
- package/src/components/ConnectingBranch/ConnectingBranch.tsx +196 -196
- package/src/components/ConnectingBranch/data.tsx +226 -226
- package/src/components/ConnectingBranch/index.ts +1 -1
- package/src/components/ConnectingBranch/types.ts +42 -42
- package/src/components/CreateVariable/CreateVariableSlider.scss +18 -18
- package/src/components/CreateVariable/CreateVariableSlider.stories.tsx +66 -66
- package/src/components/CreateVariable/CreateVariableSlider.tsx +95 -95
- package/src/components/CreateVariable/index.ts +1 -1
- package/src/components/CreateVariable/types.ts +58 -58
- package/src/components/DatePicker/DatePicker.scss +723 -723
- package/src/components/DatePicker/DatePicker.stories.tsx +193 -193
- package/src/components/DatePicker/DatePicker.tsx +502 -502
- package/src/components/DatePicker/Timepicker.tsx +372 -372
- package/src/components/DatePicker/types.ts +105 -105
- package/src/components/DownloadClient/DownloadClient.scss +67 -67
- package/src/components/DownloadClient/DownloadClient.stories.tsx +26 -26
- package/src/components/DownloadClient/DownloadClient.tsx +90 -90
- package/src/components/DownloadClient/type.ts +33 -33
- package/src/components/DragAndDrop/DragAndDrop.d.ts +5 -5
- package/src/components/DragAndDrop/DragAndDrop.stories.tsx +25 -25
- package/src/components/DragAndDrop/DragAndDrop.ts +7 -7
- package/src/components/DragAndDrop/DragAndDropList.scss +69 -69
- package/src/components/DragAndDrop/DragAndDropList.tsx +151 -151
- package/src/components/Drawer/Drawer.scss +139 -139
- package/src/components/Drawer/Drawer.stories.tsx +157 -156
- package/src/components/Drawer/Drawer.tsx +237 -233
- package/src/components/Drawer/Types.ts +165 -161
- package/src/components/EditTextField/EditTextField.scss +97 -97
- package/src/components/EditTextField/EditTextField.stories.tsx +127 -127
- package/src/components/EditTextField/EditTextField.tsx +175 -175
- package/src/components/EditTextField/index.ts +1 -1
- package/src/components/EditTextField/types.ts +55 -55
- package/src/components/Editor/Editor.scss +61 -61
- package/src/components/Editor/Editor.stories.tsx +54 -54
- package/src/components/Editor/Editor.tsx +250 -250
- package/src/components/Editor/VariableDropdown.scss +28 -28
- package/src/components/Editor/VariableDropdown.tsx +57 -57
- package/src/components/Editor/constants.ts +180 -180
- package/src/components/Editor/types.ts +89 -89
- package/src/components/Excel/ColorBarSelector/ColorBarSelector.scss +15 -15
- package/src/components/Excel/ColorBarSelector/ColorBarSelector.tsx +43 -43
- package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.scss +27 -27
- package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.tsx +46 -42
- package/src/components/Excel/ExcelFile/ExcelFile.scss +60 -56
- package/src/components/Excel/ExcelFile/ExcelFile.tsx +534 -512
- package/src/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.tsx +183 -155
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Cell.tsx +170 -206
- package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +176 -176
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Copied.tsx +25 -25
- package/src/components/Excel/ExcelFile/ExcelFileComponents/CornerIndicator.tsx +56 -56
- package/src/components/Excel/ExcelFile/ExcelFileComponents/DataEditor.tsx +40 -40
- package/src/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.tsx +46 -85
- package/src/components/Excel/ExcelFile/ExcelFileComponents/FloatingRect.tsx +61 -61
- package/src/components/Excel/ExcelFile/ExcelFileComponents/HeaderRow.tsx +7 -7
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Row.tsx +5 -5
- package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +157 -157
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Selected.tsx +32 -32
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +201 -201
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +542 -531
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Table.tsx +19 -19
- package/src/components/Excel/ExcelFile/ExcelFileComponents/actions.ts +575 -575
- package/src/components/Excel/ExcelFile/ExcelFileComponents/areModelsEqual.ts +18 -18
- package/src/components/Excel/ExcelFile/ExcelFileComponents/context.ts +12 -12
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/engine.ts +153 -153
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/formula.ts +31 -31
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/index.ts +2 -2
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-graph.ts +152 -152
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-hash.ts +10 -10
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-set.ts +69 -69
- package/src/components/Excel/ExcelFile/ExcelFileComponents/index.ts +49 -49
- package/src/components/Excel/ExcelFile/ExcelFileComponents/matrix.ts +382 -382
- package/src/components/Excel/ExcelFile/ExcelFileComponents/point-range.ts +82 -82
- package/src/components/Excel/ExcelFile/ExcelFileComponents/point.ts +15 -15
- package/src/components/Excel/ExcelFile/ExcelFileComponents/reducer.ts +716 -716
- package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +887 -886
- package/src/components/Excel/ExcelFile/ExcelFileComponents/selection.ts +257 -257
- package/src/components/Excel/ExcelFile/ExcelFileComponents/types.ts +263 -266
- package/src/components/Excel/ExcelFile/ExcelFileComponents/typings/fast-formula-parser.d.ts +58 -58
- package/src/components/Excel/ExcelFile/ExcelFileComponents/use-dispatch.ts +8 -8
- package/src/components/Excel/ExcelFile/ExcelFileComponents/use-selector.ts +9 -9
- package/src/components/Excel/ExcelFile/ExcelFileComponents/util.ts +172 -172
- package/src/components/Excel/ExcelFile.stories.tsx +160 -168
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.scss +96 -96
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +434 -434
- package/src/components/Excel/Types.ts +198 -196
- package/src/components/Excel/dataConversion.ts +196 -196
- package/src/components/Excel/index.ts +1 -1
- package/src/components/ExpandableMenu/ExpandableMenu.scss +110 -110
- package/src/components/ExpandableMenu/ExpandableMenu.stories.tsx +67 -67
- package/src/components/ExpandableMenu/ExpandableMenu.tsx +101 -101
- package/src/components/ExpandableMenu/index.ts +1 -1
- package/src/components/ExpandableMenu/types.ts +34 -34
- package/src/components/FF_Captcha/Recaptcha.scss +10 -10
- package/src/components/FF_Captcha/Recaptcha.tsx +40 -40
- package/src/components/FF_Captcha/captcha.stories.tsx +40 -40
- package/src/components/FF_Captcha/types.ts +22 -22
- package/src/components/FieldSet/FieldSet.scss +10 -10
- package/src/components/FieldSet/FieldSet.stories.tsx +104 -104
- package/src/components/FieldSet/FieldSet.tsx +29 -29
- package/src/components/FieldSet/index.ts +1 -1
- package/src/components/FieldSet/types.ts +8 -8
- package/src/components/FileDropzone/Dropzone.tsx +108 -108
- package/src/components/FileDropzone/FileDropzone.scss +180 -180
- package/src/components/FileDropzone/FileDropzone.stories.tsx +273 -273
- package/src/components/FileDropzone/FileDropzone.tsx +166 -166
- package/src/components/FileDropzone/FilePreview.tsx +77 -77
- package/src/components/FileDropzone/RadioFilePreview.tsx +80 -80
- package/src/components/FileDropzone/index.ts +1 -1
- package/src/components/FileDropzone/types.ts +207 -207
- package/src/components/Form/Form.d.ts +2 -2
- package/src/components/Form/Form.scss +158 -158
- package/src/components/Form/Form.stories.tsx +508 -508
- package/src/components/Form/Form.ts +2 -2
- package/src/components/Form/Forms.tsx +39 -39
- package/src/components/Form/validation.json +29 -29
- package/src/components/GridLayout/GridLayout.scss +69 -69
- package/src/components/GridLayout/GridLayout.stories.tsx +90 -90
- package/src/components/GridLayout/GridLayout.tsx +39 -39
- package/src/components/GridLayout/GridLayoutStory.scss +25 -25
- package/src/components/GridLayout/types.ts +84 -84
- package/src/components/HighlightText/HighlightText.scss +3 -3
- package/src/components/HighlightText/HighlightText.stories.tsx +22 -22
- package/src/components/HighlightText/HighlightText.tsx +33 -33
- package/src/components/HighlightText/index.ts +1 -1
- package/src/components/HighlightText/types.ts +4 -4
- package/src/components/Icon/Icon.stories.tsx +112 -112
- package/src/components/Icon/Icon.tsx +88 -88
- package/src/components/Icon/Icons.scss +50 -50
- package/src/components/Icon/iconList.ts +515 -515
- package/src/components/Icon/index.ts +1 -1
- package/src/components/Icon/types.ts +14 -14
- package/src/components/IconButton/IconButton.scss +54 -54
- package/src/components/IconButton/IconButton.stories.tsx +34 -34
- package/src/components/IconButton/IconButton.tsx +32 -32
- package/src/components/IconButton/index.ts +1 -1
- package/src/components/IconButton/types.ts +5 -5
- package/src/components/IconRadioGroup/IconRadioGroup.scss +64 -64
- package/src/components/IconRadioGroup/IconRadioGroup.stories.tsx +108 -108
- package/src/components/IconRadioGroup/IconRadioGroup.tsx +73 -73
- package/src/components/IconRadioGroup/index.ts +1 -1
- package/src/components/IconRadioGroup/type.ts +49 -49
- package/src/components/Input/Input.scss +170 -170
- package/src/components/Input/Input.stories.tsx +153 -153
- package/src/components/Input/Input.tsx +122 -122
- package/src/components/Input/types.ts +89 -89
- package/src/components/InputWithDropdown/InputWithDropdown.scss +220 -220
- package/src/components/InputWithDropdown/InputWithDropdown.stories.tsx +169 -169
- package/src/components/InputWithDropdown/InputWithDropdown.tsx +129 -129
- package/src/components/InputWithDropdown/index.ts +1 -1
- package/src/components/InputWithDropdown/types.ts +113 -113
- package/src/components/LabelEditTextField/LabelEditTextField.scss +94 -94
- package/src/components/LabelEditTextField/LabelEditTextField.stories.tsx +198 -198
- package/src/components/LabelEditTextField/LabelEditTextField.tsx +267 -267
- package/src/components/LabelEditTextField/index.ts +1 -1
- package/src/components/LabelEditTextField/types.ts +51 -51
- package/src/components/LazyLoad/LazyLoad.d.ts +3 -3
- package/src/components/LazyLoad/LazyLoad.stories.tsx +33 -33
- package/src/components/LazyLoad/LazyLoad.ts +2 -2
- package/src/components/LazyLoad/LazyLoading.tsx +19 -19
- package/src/components/LazyLoad/index.ts +1 -1
- package/src/components/MachineInputField/MachineInputField.scss +59 -59
- package/src/components/MachineInputField/MachineInputField.stories.tsx +33 -33
- package/src/components/MachineInputField/MachineInputField.tsx +85 -85
- package/src/components/MachineInputField/index.ts +1 -1
- package/src/components/MachineInputField/types.ts +15 -15
- package/src/components/MenuOption/MenuOption.scss +97 -97
- package/src/components/MenuOption/MenuOption.stories.tsx +212 -212
- package/src/components/MenuOption/MenuOption.tsx +222 -222
- package/src/components/MenuOption/types.ts +231 -231
- package/src/components/MiniModal/MiniModal.scss +169 -169
- package/src/components/MiniModal/MiniModal.stories.tsx +740 -740
- package/src/components/MiniModal/MiniModal.tsx +346 -346
- package/src/components/MiniModal/index.ts +1 -1
- package/src/components/MiniModal/types.ts +124 -124
- package/src/components/Modal/Modal.stories.tsx +77 -70
- package/src/components/Modal/Modal.tsx +97 -100
- package/src/components/Modal/index.tsx +1 -1
- package/src/components/Modal/modal.scss +51 -51
- package/src/components/Modal/types.ts +43 -43
- package/src/components/ModulesChip/ModuleChip.scss +33 -33
- package/src/components/ModulesChip/ModuleChip.stories.tsx +41 -41
- package/src/components/ModulesChip/ModuleChip.tsx +28 -28
- package/src/components/ModulesChip/types.ts +14 -14
- package/src/components/MultiSelect/Dropdown.scss +77 -77
- package/src/components/MultiSelect/Dropdown.tsx +169 -169
- package/src/components/MultiSelect/MultiSelect.scss +247 -247
- package/src/components/MultiSelect/MultiSelect.stories.tsx +290 -290
- package/src/components/MultiSelect/MultiSelect.tsx +486 -486
- package/src/components/MultiSelect/MultiSelectTypes.ts +49 -49
- package/src/components/MultiSelect/dropdownTypes.ts +21 -21
- package/src/components/MultiSelect/index.ts +1 -1
- package/src/components/NLPInput/NLPInput.scss +302 -302
- package/src/components/NLPInput/NlpInput.stories.tsx +70 -70
- package/src/components/NLPInput/NlpInput.tsx +410 -410
- package/src/components/NLPInput/components/NlpDropDown/NlpDropDownType.ts +62 -62
- package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.scss +134 -134
- package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.tsx +320 -320
- package/src/components/NLPInput/index.ts +1 -1
- package/src/components/NLPInput/sampleData.ts +161 -161
- package/src/components/NLPInput/types.tsx +136 -136
- package/src/components/Paper/Paper.scss +13 -13
- package/src/components/Paper/Paper.stories.tsx +77 -77
- package/src/components/Paper/Paper.tsx +14 -14
- package/src/components/Paper/types.ts +19 -19
- package/src/components/PhoneInput/PhoneInput.d.ts +3 -3
- package/src/components/PhoneInput/PhoneInput.stories.tsx +70 -70
- package/src/components/PhoneInput/PhoneInput.tsx +98 -98
- package/src/components/PhoneInput/index.ts +1 -1
- package/src/components/PhoneInput/phoneInput.scss +901 -901
- package/src/components/PhoneInput/types.ts +16 -16
- package/src/components/PopUpModal/PopUpModal.scss +36 -36
- package/src/components/PopUpModal/PopUpModal.stories.tsx +67 -67
- package/src/components/PopUpModal/PopUpModal.tsx +87 -87
- package/src/components/PopUpModal/types.ts +17 -17
- package/src/components/ProgressBar/ProgressBar.scss +46 -46
- package/src/components/ProgressBar/ProgressBar.stories.tsx +22 -22
- package/src/components/ProgressBar/ProgressBar.tsx +61 -61
- package/src/components/ProgressBar/types.ts +12 -12
- package/src/components/RadioButton/RadioButton.scss +106 -106
- package/src/components/RadioButton/RadioButton.stories.tsx +43 -43
- package/src/components/RadioButton/RadioButton.tsx +41 -41
- package/src/components/RadioButton/index.ts +1 -1
- package/src/components/RadioButton/radioButtonTypes.tsx +62 -62
- package/src/components/RadioGroup/RadioGroup.scss +11 -11
- package/src/components/RadioGroup/RadioGroup.stories.tsx +150 -150
- package/src/components/RadioGroup/RadioGroup.tsx +49 -49
- package/src/components/RadioGroup/index.ts +1 -1
- package/src/components/RadioGroup/radioGroupTypes.tsx +96 -96
- package/src/components/ScriptSwitchButton/ScriptSwitchButton.scss +33 -33
- package/src/components/ScriptSwitchButton/ScriptSwitchButton.stories.tsx +48 -48
- package/src/components/ScriptSwitchButton/ScriptSwitchButton.tsx +65 -65
- package/src/components/ScriptSwitchButton/index.ts +1 -1
- package/src/components/Search/Search.scss +103 -103
- package/src/components/Search/Search.stories.tsx +44 -44
- package/src/components/Search/Search.tsx +138 -138
- package/src/components/Search/index.ts +1 -1
- package/src/components/Search/types.ts +19 -19
- package/src/components/Select/Select.scss +213 -213
- package/src/components/Select/Select.stories.tsx +440 -355
- package/src/components/Select/Select.tsx +286 -278
- package/src/components/Select/components/Dropdown.scss +61 -61
- package/src/components/Select/components/Dropdown.tsx +148 -140
- package/src/components/Select/components/types.ts +25 -24
- package/src/components/Select/index.ts +1 -1
- package/src/components/Select/types.ts +144 -134
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.scss +128 -128
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.tsx +67 -67
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.tsx +186 -186
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.scss +191 -191
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +326 -326
- package/src/components/SequentialConnectingBranch/components/Branches/types.ts +33 -33
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.scss +3 -3
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.tsx +78 -78
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/types.ts +25 -25
- package/src/components/SequentialConnectingBranch/index.ts +1 -1
- package/src/components/SequentialConnectingBranch/types.ts +66 -66
- package/src/components/StateDropdown/StateDropdown.stories.tsx +104 -104
- package/src/components/StateDropdown/StateDropdown.tsx +245 -245
- package/src/components/StateDropdown/StateDropdownTypes.tsx +27 -27
- package/src/components/StatusButton/StatusButton.scss +90 -90
- package/src/components/StatusButton/StatusButton.stories.tsx +91 -91
- package/src/components/StatusButton/StatusButton.tsx +46 -46
- package/src/components/StatusButton/index.ts +1 -1
- package/src/components/StatusButton/types.ts +45 -45
- package/src/components/StatusCard/StatusCard.scss +138 -138
- package/src/components/StatusCard/StatusCard.stories.tsx +117 -117
- package/src/components/StatusCard/StatusCard.tsx +80 -80
- package/src/components/StatusCard/index.ts +1 -1
- package/src/components/StatusCard/types.ts +18 -18
- package/src/components/Table/Table.scss +118 -118
- package/src/components/Table/Table.stories.tsx +373 -373
- package/src/components/Table/Table.tsx +178 -178
- package/src/components/Table/Types.ts +124 -124
- package/src/components/Table/index.ts +1 -1
- package/src/components/TableTree/Components/TableBody.tsx +41 -41
- package/src/components/TableTree/Components/TableCell.tsx +75 -75
- package/src/components/TableTree/Components/TableHead.tsx +39 -39
- package/src/components/TableTree/Components/TableRow.tsx +41 -41
- package/src/components/TableTree/TableTree.scss +210 -210
- package/src/components/TableTree/TableTree.stories.tsx +176 -176
- package/src/components/TableTree/TableTree.tsx +72 -72
- package/src/components/TableTree/TableTreeStories.scss +22 -22
- package/src/components/TableTree/Utils/getAllChildIds.ts +14 -14
- package/src/components/TableTree/data.ts +368 -368
- package/src/components/TableTree/index.ts +1 -1
- package/src/components/TableTree/types.ts +72 -72
- package/src/components/TableWithAccordion/TableWithAccordion.scss +54 -54
- package/src/components/TableWithAccordion/TableWithAccordion.stories.tsx +94 -94
- package/src/components/TableWithAccordion/TableWithAccordion.tsx +174 -174
- package/src/components/TableWithAccordion/data.ts +36 -36
- package/src/components/TableWithAccordion/types.ts +69 -69
- package/src/components/Tabs/Tabs.scss +132 -132
- package/src/components/Tabs/Tabs.stories.tsx +153 -153
- package/src/components/Tabs/Tabs.tsx +71 -71
- package/src/components/Tabs/index.ts +1 -1
- package/src/components/Tabs/types.ts +48 -48
- package/src/components/TextArea/Textarea.scss +144 -144
- package/src/components/TextArea/Textarea.stories.tsx +92 -92
- package/src/components/TextArea/Textarea.tsx +86 -86
- package/src/components/TextArea/Types.ts +85 -85
- package/src/components/TextArea/index.tsx +1 -1
- package/src/components/ThemeProvider/ThemeProvider.tsx +27 -27
- package/src/components/ThemeProvider/index.ts +1 -1
- package/src/components/ThemeProvider/types.ts +14 -14
- package/src/components/Toast/Toast.scss +121 -121
- package/src/components/Toast/Toast.stories.tsx +144 -144
- package/src/components/Toast/Toast.tsx +117 -117
- package/src/components/Toast/index.ts +1 -1
- package/src/components/Toast/types.ts +27 -27
- package/src/components/Toastify/Toastify.stories.tsx +71 -71
- package/src/components/Toastify/Toastify.tsx +95 -95
- package/src/components/Toastify/index.ts +1 -1
- package/src/components/Toastify/types.ts +9 -9
- package/src/components/Toggle/Toggle.scss +133 -133
- package/src/components/Toggle/Toggle.stories.tsx +132 -132
- package/src/components/Toggle/Toggle.tsx +96 -96
- package/src/components/Toggle/index.ts +1 -1
- package/src/components/Toggle/types.ts +43 -43
- package/src/components/ToggleSwitch/ToggleSwitch.scss +58 -58
- package/src/components/ToggleSwitch/ToggleSwitch.stories.tsx +52 -52
- package/src/components/ToggleSwitch/ToggleSwitch.tsx +30 -30
- package/src/components/ToggleSwitch/index.ts +1 -1
- package/src/components/Tooltip/Tooltip.scss +27 -27
- package/src/components/Tooltip/Tooltip.stories.tsx +98 -98
- package/src/components/Tooltip/Tooltip.tsx +194 -194
- package/src/components/Tooltip/index.ts +1 -1
- package/src/components/Tooltip/types.ts +66 -66
- package/src/components/Typography/Typography.scss +25 -25
- package/src/components/Typography/Typography.stories.tsx +59 -59
- package/src/components/Typography/Typography.tsx +41 -41
- package/src/components/Typography/index.ts +1 -1
- package/src/components/Typography/types.ts +57 -57
- package/src/components/VariableInput/VariableInput.scss +127 -127
- package/src/components/VariableInput/VariableInput.stories.tsx +32 -32
- package/src/components/VariableInput/VariableInput.tsx +352 -352
- package/src/components/VariableInput/types.ts +56 -56
- package/src/hooks/keyboardevents/useEscKeyEvent.tsx +30 -30
- package/src/hooks/useClickOutside.tsx +30 -30
- package/src/hooks/useFileDropzone.tsx +275 -275
- package/src/hooks/useIntersectionObserver.tsx +56 -56
- package/src/hooks/usePortalPosition.tsx +53 -53
- package/src/hooks/useTheme.tsx +13 -13
- package/src/index.ts +322 -302
- package/src/utils/FormatString/FormatString.stories.tsx +58 -58
- package/src/utils/FormatString/FormatString.tsx +41 -41
- package/src/utils/TableCell/TableCell.ts +16 -16
- package/src/utils/capitalize/capitalize.stories.tsx +44 -44
- package/src/utils/capitalize/capitalize.tsx +4 -4
- package/src/utils/checkDuplicates/CheckDuplicates.stories.tsx +40 -40
- package/src/utils/checkDuplicates/checkDuplicates.ts +13 -13
- package/src/utils/checkEmpty/checkEmpty.stories.tsx +34 -34
- package/src/utils/checkEmpty/checkEmpty.ts +24 -24
- package/src/utils/compareArrays/compareArrays.stories.tsx +62 -62
- package/src/utils/compareArrays/compareArrays.ts +31 -31
- package/src/utils/compareObjects/compareObjects.stories.tsx +51 -51
- package/src/utils/compareObjects/compareObjects.ts +53 -53
- package/src/utils/debounce/debounce.stories.tsx +81 -81
- package/src/utils/debounce/debounce.ts +28 -28
- package/src/utils/downloadFile/saveFileFromBlob.stories.tsx +62 -62
- package/src/utils/downloadFile/saveFileFromBlob.ts +40 -40
- package/src/utils/ffID/ffID.stories.tsx +35 -35
- package/src/utils/ffID/ffid.ts +7 -7
- package/src/utils/findAndInsert/findAndInsert.stories.tsx +119 -119
- package/src/utils/findAndInsert/findAndInsert.ts +49 -49
- package/src/utils/formData/ConvertFormDataToObject.stories.tsx +27 -27
- package/src/utils/formData/ConvertFormDataToObject.ts +14 -14
- package/src/utils/functionCheck/functionCheck.ts +8 -8
- package/src/utils/getEncryptedData/getEncryptedData.stories.tsx +55 -55
- package/src/utils/getEncryptedData/getEncryptedData.ts +8 -8
- package/src/utils/getExtension/getExtension.stories.tsx +24 -24
- package/src/utils/getExtension/getExtension.ts +28 -28
- package/src/utils/getSelectOptionValue/getSelectOptionValue.ts +31 -31
- package/src/utils/getSequentialPayload/getSequentialPayload.stories.tsx +72 -72
- package/src/utils/getSequentialPayload/getSequentialPayload.ts +16 -16
- package/src/utils/getSequentialPayload/types.ts +33 -33
- package/src/utils/keyBoardActionUtil/UseKeyboardAction.stories.tsx +53 -0
- package/src/utils/keyBoardActionUtil/UseKeyboardActions.tsx +20 -0
- package/src/utils/keyBoardActionUtil/types.ts +4 -0
- package/src/utils/throttle/throttle.stories.tsx +100 -100
- package/src/utils/throttle/throttle.ts +33 -33
- package/src/utils/truncateText/truncateText.stories.tsx +37 -37
- package/src/utils/truncateText/truncateText.ts +4 -4
- package/src/utils/validateFile/validateFile.stories.tsx +49 -49
- package/src/utils/validateFile/validateFile.ts +39 -39
- package/src/validations/regex.stories.tsx +425 -418
- package/src/validations/regex.ts +228 -224
- package/tsconfig.json +55 -55
- package/vite.config.js +14 -14
- package/lib/components/AddVariables/AddVariables.d.ts +0 -5
- package/lib/components/AddVariables/index.d.ts +0 -1
- package/lib/components/AddVariables/types.d.ts +0 -99
- package/lib/index.css +0 -1
- package/lib/index.esm.css +0 -1
@@ -1,151 +1,151 @@
|
|
1
|
-
import React, { useRef, useState } from 'react';
|
2
|
-
import { Meta, StoryFn, StoryObj } from '@storybook/react';
|
3
|
-
import ConditionalDropdown from './ConditionalDropdown';
|
4
|
-
import { ConditionalDropdownProps, dynamicObject } from './types';
|
5
|
-
import { variableList } from '../Editor/constants';
|
6
|
-
import CreateVariableSlider from '../CreateVariable/CreateVariableSlider';
|
7
|
-
|
8
|
-
export default {
|
9
|
-
title: 'Components/ConditionalDropdown',
|
10
|
-
component: ConditionalDropdown,
|
11
|
-
args: {
|
12
|
-
label: 'Add Variables',
|
13
|
-
placeholder: 'Enter text',
|
14
|
-
variableList,
|
15
|
-
dropdownWidth: '138px',
|
16
|
-
variant: 'primary',
|
17
|
-
},
|
18
|
-
parameters: {
|
19
|
-
layout: 'centered',
|
20
|
-
},
|
21
|
-
} as Meta<ConditionalDropdownProps>;
|
22
|
-
|
23
|
-
type Story = StoryObj<typeof ConditionalDropdown>;
|
24
|
-
|
25
|
-
const Template: StoryFn<ConditionalDropdownProps> = (args) => {
|
26
|
-
const inputRef = useRef<HTMLInputElement>(null);
|
27
|
-
const [inputValue, setInputValue] = useState<string>('');
|
28
|
-
const [openCreateVariable, setOpenCreateVariable] = useState<boolean>(false);
|
29
|
-
const [variableName, setVariableName] = useState<string>('');
|
30
|
-
const [variableValue, setVariableValue] = useState<string>('');
|
31
|
-
const [selectedVariable, setSelectedVariable] = useState<dynamicObject>({
|
32
|
-
label: 'Local Variable',
|
33
|
-
value: 'LOCAL',
|
34
|
-
});
|
35
|
-
const [hideValue, setHideValue] = useState<boolean>(false);
|
36
|
-
|
37
|
-
return (
|
38
|
-
<>
|
39
|
-
<ConditionalDropdown
|
40
|
-
{...args}
|
41
|
-
onChange={(event: React.ChangeEvent<HTMLInputElement>) =>
|
42
|
-
setInputValue(event.target.value)
|
43
|
-
}
|
44
|
-
value={inputValue}
|
45
|
-
onCreateVariableClick={() => setOpenCreateVariable(true)}
|
46
|
-
ref={inputRef}
|
47
|
-
showAddVariableIcon
|
48
|
-
/>
|
49
|
-
{openCreateVariable && (
|
50
|
-
<CreateVariableSlider
|
51
|
-
isOpen={openCreateVariable}
|
52
|
-
onClose={() => setOpenCreateVariable(false)}
|
53
|
-
variableName={variableName}
|
54
|
-
value={variableValue}
|
55
|
-
hideValue={hideValue}
|
56
|
-
handleSubmit={() => {
|
57
|
-
alert('Variable Created');
|
58
|
-
}}
|
59
|
-
onHideChange={(value) => {
|
60
|
-
setHideValue(value);
|
61
|
-
}}
|
62
|
-
onNameChange={(value) => {
|
63
|
-
setVariableName(value);
|
64
|
-
}}
|
65
|
-
onValueChange={(value) => setVariableValue(value)}
|
66
|
-
onVariableTypeChange={(option) => setSelectedVariable(option)}
|
67
|
-
selectedVariableType={selectedVariable}
|
68
|
-
variableTypesList={[
|
69
|
-
{ label: 'Local Variable', value: 'LOCAL' },
|
70
|
-
{ label: 'Global Variable', value: 'GLOBAL' },
|
71
|
-
]}
|
72
|
-
/>
|
73
|
-
)}
|
74
|
-
</>
|
75
|
-
);
|
76
|
-
};
|
77
|
-
|
78
|
-
export const Default = Template.bind({});
|
79
|
-
Default.args = {
|
80
|
-
onCreateVariableClick: () => alert('Create Variable clicked'),
|
81
|
-
};
|
82
|
-
|
83
|
-
export const WithInitialValue = Template.bind({});
|
84
|
-
WithInitialValue.args = {
|
85
|
-
inputValue: 'Initial Text with $',
|
86
|
-
onCreateVariableClick: () => alert('Create Variable clicked'),
|
87
|
-
};
|
88
|
-
|
89
|
-
export const DropdownOnHash: Story = {
|
90
|
-
render: () => {
|
91
|
-
const [hashInputValue, setHashInputValue] =
|
92
|
-
useState<dynamicObject | null>();
|
93
|
-
const testData = [
|
94
|
-
{
|
95
|
-
_id: '1',
|
96
|
-
name: 'File1.txt',
|
97
|
-
actualPath: '/documents/File1.txt',
|
98
|
-
searchKey: 'file1',
|
99
|
-
parentId: 'root',
|
100
|
-
},
|
101
|
-
{
|
102
|
-
_id: '2',
|
103
|
-
name: 'File2.doc',
|
104
|
-
actualPath: '/documents/File2.doc',
|
105
|
-
searchKey: 'file2',
|
106
|
-
parentId: 'root',
|
107
|
-
},
|
108
|
-
{
|
109
|
-
_id: '3',
|
110
|
-
name: 'Image1.png',
|
111
|
-
actualPath: '/images/Image1.png',
|
112
|
-
searchKey: 'image1',
|
113
|
-
parentId: 'folder1',
|
114
|
-
},
|
115
|
-
{
|
116
|
-
_id: '4',
|
117
|
-
name: 'Presentation.ppt',
|
118
|
-
actualPath: '/presentations/Presentation.ppt',
|
119
|
-
searchKey: 'presentation',
|
120
|
-
parentId: 'folder2',
|
121
|
-
},
|
122
|
-
{
|
123
|
-
_id: '5',
|
124
|
-
name: 'Spreadsheet.xlsx',
|
125
|
-
actualPath: '/spreadsheets/Spreadsheet.xlsx',
|
126
|
-
searchKey: 'spreadsheet',
|
127
|
-
parentId: 'folder3',
|
128
|
-
},
|
129
|
-
{
|
130
|
-
_id: '6',
|
131
|
-
name: 'Code.js',
|
132
|
-
actualPath: '/projects/Code.js',
|
133
|
-
searchKey: 'code',
|
134
|
-
parentId: 'folder4',
|
135
|
-
},
|
136
|
-
];
|
137
|
-
|
138
|
-
return (
|
139
|
-
<>
|
140
|
-
<ConditionalDropdown
|
141
|
-
label="Select Path Using #"
|
142
|
-
placeholder="Enter # to search files"
|
143
|
-
isHash
|
144
|
-
dataFiles={testData}
|
145
|
-
dropdownWidth="auto"
|
146
|
-
setHashInputValue={setHashInputValue}
|
147
|
-
/>
|
148
|
-
</>
|
149
|
-
);
|
150
|
-
},
|
151
|
-
};
|
1
|
+
import React, { useRef, useState } from 'react';
|
2
|
+
import { Meta, StoryFn, StoryObj } from '@storybook/react';
|
3
|
+
import ConditionalDropdown from './ConditionalDropdown';
|
4
|
+
import { ConditionalDropdownProps, dynamicObject } from './types';
|
5
|
+
import { variableList } from '../Editor/constants';
|
6
|
+
import CreateVariableSlider from '../CreateVariable/CreateVariableSlider';
|
7
|
+
|
8
|
+
export default {
|
9
|
+
title: 'Components/ConditionalDropdown',
|
10
|
+
component: ConditionalDropdown,
|
11
|
+
args: {
|
12
|
+
label: 'Add Variables',
|
13
|
+
placeholder: 'Enter text',
|
14
|
+
variableList,
|
15
|
+
dropdownWidth: '138px',
|
16
|
+
variant: 'primary',
|
17
|
+
},
|
18
|
+
parameters: {
|
19
|
+
layout: 'centered',
|
20
|
+
},
|
21
|
+
} as Meta<ConditionalDropdownProps>;
|
22
|
+
|
23
|
+
type Story = StoryObj<typeof ConditionalDropdown>;
|
24
|
+
|
25
|
+
const Template: StoryFn<ConditionalDropdownProps> = (args) => {
|
26
|
+
const inputRef = useRef<HTMLInputElement>(null);
|
27
|
+
const [inputValue, setInputValue] = useState<string>('');
|
28
|
+
const [openCreateVariable, setOpenCreateVariable] = useState<boolean>(false);
|
29
|
+
const [variableName, setVariableName] = useState<string>('');
|
30
|
+
const [variableValue, setVariableValue] = useState<string>('');
|
31
|
+
const [selectedVariable, setSelectedVariable] = useState<dynamicObject>({
|
32
|
+
label: 'Local Variable',
|
33
|
+
value: 'LOCAL',
|
34
|
+
});
|
35
|
+
const [hideValue, setHideValue] = useState<boolean>(false);
|
36
|
+
|
37
|
+
return (
|
38
|
+
<>
|
39
|
+
<ConditionalDropdown
|
40
|
+
{...args}
|
41
|
+
onChange={(event: React.ChangeEvent<HTMLInputElement>) =>
|
42
|
+
setInputValue(event.target.value)
|
43
|
+
}
|
44
|
+
value={inputValue}
|
45
|
+
onCreateVariableClick={() => setOpenCreateVariable(true)}
|
46
|
+
ref={inputRef}
|
47
|
+
showAddVariableIcon
|
48
|
+
/>
|
49
|
+
{openCreateVariable && (
|
50
|
+
<CreateVariableSlider
|
51
|
+
isOpen={openCreateVariable}
|
52
|
+
onClose={() => setOpenCreateVariable(false)}
|
53
|
+
variableName={variableName}
|
54
|
+
value={variableValue}
|
55
|
+
hideValue={hideValue}
|
56
|
+
handleSubmit={() => {
|
57
|
+
alert('Variable Created');
|
58
|
+
}}
|
59
|
+
onHideChange={(value) => {
|
60
|
+
setHideValue(value);
|
61
|
+
}}
|
62
|
+
onNameChange={(value) => {
|
63
|
+
setVariableName(value);
|
64
|
+
}}
|
65
|
+
onValueChange={(value) => setVariableValue(value)}
|
66
|
+
onVariableTypeChange={(option) => setSelectedVariable(option)}
|
67
|
+
selectedVariableType={selectedVariable}
|
68
|
+
variableTypesList={[
|
69
|
+
{ label: 'Local Variable', value: 'LOCAL' },
|
70
|
+
{ label: 'Global Variable', value: 'GLOBAL' },
|
71
|
+
]}
|
72
|
+
/>
|
73
|
+
)}
|
74
|
+
</>
|
75
|
+
);
|
76
|
+
};
|
77
|
+
|
78
|
+
export const Default = Template.bind({});
|
79
|
+
Default.args = {
|
80
|
+
onCreateVariableClick: () => alert('Create Variable clicked'),
|
81
|
+
};
|
82
|
+
|
83
|
+
export const WithInitialValue = Template.bind({});
|
84
|
+
WithInitialValue.args = {
|
85
|
+
inputValue: 'Initial Text with $',
|
86
|
+
onCreateVariableClick: () => alert('Create Variable clicked'),
|
87
|
+
};
|
88
|
+
|
89
|
+
export const DropdownOnHash: Story = {
|
90
|
+
render: () => {
|
91
|
+
const [hashInputValue, setHashInputValue] =
|
92
|
+
useState<dynamicObject | null>();
|
93
|
+
const testData = [
|
94
|
+
{
|
95
|
+
_id: '1',
|
96
|
+
name: 'File1.txt',
|
97
|
+
actualPath: '/documents/File1.txt',
|
98
|
+
searchKey: 'file1',
|
99
|
+
parentId: 'root',
|
100
|
+
},
|
101
|
+
{
|
102
|
+
_id: '2',
|
103
|
+
name: 'File2.doc',
|
104
|
+
actualPath: '/documents/File2.doc',
|
105
|
+
searchKey: 'file2',
|
106
|
+
parentId: 'root',
|
107
|
+
},
|
108
|
+
{
|
109
|
+
_id: '3',
|
110
|
+
name: 'Image1.png',
|
111
|
+
actualPath: '/images/Image1.png',
|
112
|
+
searchKey: 'image1',
|
113
|
+
parentId: 'folder1',
|
114
|
+
},
|
115
|
+
{
|
116
|
+
_id: '4',
|
117
|
+
name: 'Presentation.ppt',
|
118
|
+
actualPath: '/presentations/Presentation.ppt',
|
119
|
+
searchKey: 'presentation',
|
120
|
+
parentId: 'folder2',
|
121
|
+
},
|
122
|
+
{
|
123
|
+
_id: '5',
|
124
|
+
name: 'Spreadsheet.xlsx',
|
125
|
+
actualPath: '/spreadsheets/Spreadsheet.xlsx',
|
126
|
+
searchKey: 'spreadsheet',
|
127
|
+
parentId: 'folder3',
|
128
|
+
},
|
129
|
+
{
|
130
|
+
_id: '6',
|
131
|
+
name: 'Code.js',
|
132
|
+
actualPath: '/projects/Code.js',
|
133
|
+
searchKey: 'code',
|
134
|
+
parentId: 'folder4',
|
135
|
+
},
|
136
|
+
];
|
137
|
+
|
138
|
+
return (
|
139
|
+
<>
|
140
|
+
<ConditionalDropdown
|
141
|
+
label="Select Path Using #"
|
142
|
+
placeholder="Enter # to search files"
|
143
|
+
isHash
|
144
|
+
dataFiles={testData}
|
145
|
+
dropdownWidth="auto"
|
146
|
+
setHashInputValue={setHashInputValue}
|
147
|
+
/>
|
148
|
+
</>
|
149
|
+
);
|
150
|
+
},
|
151
|
+
};
|
@@ -1,157 +1,157 @@
|
|
1
|
-
import {
|
2
|
-
useState,
|
3
|
-
useEffect,
|
4
|
-
forwardRef,
|
5
|
-
useImperativeHandle,
|
6
|
-
useRef,
|
7
|
-
} from 'react';
|
8
|
-
import { checkEmpty } from '../../utils/checkEmpty/checkEmpty';
|
9
|
-
import VariableDropdown from '../Editor/VariableDropdown';
|
10
|
-
import Icon from '../Icon';
|
11
|
-
import Input from '../Input';
|
12
|
-
import { ConditionalDropdownProps, dynamicObject } from './types';
|
13
|
-
import './ConditionalDropdown.scss';
|
14
|
-
import OptionsDropdown from './OptionsDropdown';
|
15
|
-
|
16
|
-
const ConditionalDropdown = forwardRef<
|
17
|
-
HTMLInputElement,
|
18
|
-
ConditionalDropdownProps
|
19
|
-
>(
|
20
|
-
(
|
21
|
-
{
|
22
|
-
label = '',
|
23
|
-
hashInputValue = '',
|
24
|
-
setHashInputValue,
|
25
|
-
variableList = [],
|
26
|
-
placeholder = 'Enter text',
|
27
|
-
onChange,
|
28
|
-
onCreateVariableClick,
|
29
|
-
value = '',
|
30
|
-
dropdownWidth = 'inherit',
|
31
|
-
isHash = false,
|
32
|
-
dataFiles = [],
|
33
|
-
showAddVariableIcon = true,
|
34
|
-
...props
|
35
|
-
},
|
36
|
-
ref
|
37
|
-
) => {
|
38
|
-
const [showDropdown, setShowDropdown] = useState<boolean>(false);
|
39
|
-
const [cursorPosition, setCursorPosition] = useState<number | null>(null);
|
40
|
-
const [showCreateVariableIcon, setShowCreateVariableIcon] =
|
41
|
-
useState<boolean>(false);
|
42
|
-
const [filteredOptions, setFilteredOptions] = useState<dynamicObject[]>([]);
|
43
|
-
const inputRef = useRef<HTMLInputElement>(null);
|
44
|
-
|
45
|
-
// Expose the `inputRef` to the parent via `ref`
|
46
|
-
useImperativeHandle(ref, () => inputRef.current as HTMLInputElement);
|
47
|
-
|
48
|
-
useEffect(() => {
|
49
|
-
if (cursorPosition !== null && inputRef.current) {
|
50
|
-
inputRef.current.setSelectionRange(cursorPosition, cursorPosition);
|
51
|
-
inputRef.current.focus();
|
52
|
-
}
|
53
|
-
}, [cursorPosition]);
|
54
|
-
|
55
|
-
useEffect(() => {
|
56
|
-
const cursorPos = inputRef.current?.selectionStart || 0;
|
57
|
-
const isDollarTyped = value[cursorPos - 1] === '$';
|
58
|
-
if (isHash) {
|
59
|
-
setShowDropdown(value.startsWith('#'));
|
60
|
-
} else {
|
61
|
-
setShowDropdown(isDollarTyped);
|
62
|
-
setShowCreateVariableIcon(!value?.includes('$'));
|
63
|
-
}
|
64
|
-
if (value.startsWith('#') && isHash) {
|
65
|
-
const searchQuery = value.slice(1).toLowerCase();
|
66
|
-
const filtered = dataFiles.filter((file) =>
|
67
|
-
file.name.toLowerCase().includes(searchQuery)
|
68
|
-
);
|
69
|
-
setFilteredOptions(filtered);
|
70
|
-
setShowDropdown(filtered.length > 0);
|
71
|
-
}
|
72
|
-
}, [value]);
|
73
|
-
|
74
|
-
const handleDropdownClick = (item: dynamicObject) => {
|
75
|
-
if (inputRef.current) {
|
76
|
-
const { selectionStart, selectionEnd } = inputRef.current;
|
77
|
-
const dollarSyntax = `{${
|
78
|
-
item.type === 'LOCAL'
|
79
|
-
? 'LV'
|
80
|
-
: item.type === 'GLOBAL'
|
81
|
-
? 'GV'
|
82
|
-
: item.type === 'GROUP'
|
83
|
-
? 'SG'
|
84
|
-
: 'PEV'
|
85
|
-
}_${item.name}}`;
|
86
|
-
|
87
|
-
let newValue;
|
88
|
-
if (isHash && value[0] === '#') {
|
89
|
-
newValue = item.name + value.slice(selectionEnd || 1);
|
90
|
-
} else {
|
91
|
-
newValue =
|
92
|
-
value.slice(0, selectionStart || 0) +
|
93
|
-
dollarSyntax +
|
94
|
-
value.slice(selectionEnd || 0);
|
95
|
-
}
|
96
|
-
|
97
|
-
if (onChange) {
|
98
|
-
const event = {
|
99
|
-
target: {
|
100
|
-
value: newValue,
|
101
|
-
},
|
102
|
-
} as React.ChangeEvent<HTMLInputElement>;
|
103
|
-
onChange(event);
|
104
|
-
}
|
105
|
-
inputRef.current.value = newValue;
|
106
|
-
setHashInputValue?.(item);
|
107
|
-
setCursorPosition((selectionStart || 0) + dollarSyntax.length);
|
108
|
-
setShowDropdown(false);
|
109
|
-
}
|
110
|
-
};
|
111
|
-
|
112
|
-
return (
|
113
|
-
<div className="ff-add-variable-container">
|
114
|
-
<div className="ff-add-variable-input">
|
115
|
-
<Input
|
116
|
-
{...props}
|
117
|
-
name="add_variable"
|
118
|
-
ref={inputRef}
|
119
|
-
type="text"
|
120
|
-
value={value}
|
121
|
-
onChange={onChange}
|
122
|
-
variant="primary"
|
123
|
-
label={label}
|
124
|
-
placeholder={placeholder}
|
125
|
-
/>
|
126
|
-
{!checkEmpty(value) && !isHash && showCreateVariableIcon && showAddVariableIcon && (
|
127
|
-
<Icon
|
128
|
-
onClick={onCreateVariableClick}
|
129
|
-
name="add_variable"
|
130
|
-
width={24}
|
131
|
-
height={24}
|
132
|
-
hoverEffect
|
133
|
-
/>
|
134
|
-
)}
|
135
|
-
</div>
|
136
|
-
{showDropdown &&
|
137
|
-
(isHash ? (
|
138
|
-
<OptionsDropdown
|
139
|
-
position="relative"
|
140
|
-
width={dropdownWidth}
|
141
|
-
filteredOptions={filteredOptions}
|
142
|
-
onSelectVariable={handleDropdownClick}
|
143
|
-
/>
|
144
|
-
) : (
|
145
|
-
<VariableDropdown
|
146
|
-
position="absolute"
|
147
|
-
width={dropdownWidth}
|
148
|
-
optionsList={variableList}
|
149
|
-
onSelectVariable={handleDropdownClick}
|
150
|
-
/>
|
151
|
-
))}
|
152
|
-
</div>
|
153
|
-
);
|
154
|
-
}
|
155
|
-
);
|
156
|
-
|
157
|
-
export default ConditionalDropdown;
|
1
|
+
import {
|
2
|
+
useState,
|
3
|
+
useEffect,
|
4
|
+
forwardRef,
|
5
|
+
useImperativeHandle,
|
6
|
+
useRef,
|
7
|
+
} from 'react';
|
8
|
+
import { checkEmpty } from '../../utils/checkEmpty/checkEmpty';
|
9
|
+
import VariableDropdown from '../Editor/VariableDropdown';
|
10
|
+
import Icon from '../Icon';
|
11
|
+
import Input from '../Input';
|
12
|
+
import { ConditionalDropdownProps, dynamicObject } from './types';
|
13
|
+
import './ConditionalDropdown.scss';
|
14
|
+
import OptionsDropdown from './OptionsDropdown';
|
15
|
+
|
16
|
+
const ConditionalDropdown = forwardRef<
|
17
|
+
HTMLInputElement,
|
18
|
+
ConditionalDropdownProps
|
19
|
+
>(
|
20
|
+
(
|
21
|
+
{
|
22
|
+
label = '',
|
23
|
+
hashInputValue = '',
|
24
|
+
setHashInputValue,
|
25
|
+
variableList = [],
|
26
|
+
placeholder = 'Enter text',
|
27
|
+
onChange,
|
28
|
+
onCreateVariableClick,
|
29
|
+
value = '',
|
30
|
+
dropdownWidth = 'inherit',
|
31
|
+
isHash = false,
|
32
|
+
dataFiles = [],
|
33
|
+
showAddVariableIcon = true,
|
34
|
+
...props
|
35
|
+
},
|
36
|
+
ref
|
37
|
+
) => {
|
38
|
+
const [showDropdown, setShowDropdown] = useState<boolean>(false);
|
39
|
+
const [cursorPosition, setCursorPosition] = useState<number | null>(null);
|
40
|
+
const [showCreateVariableIcon, setShowCreateVariableIcon] =
|
41
|
+
useState<boolean>(false);
|
42
|
+
const [filteredOptions, setFilteredOptions] = useState<dynamicObject[]>([]);
|
43
|
+
const inputRef = useRef<HTMLInputElement>(null);
|
44
|
+
|
45
|
+
// Expose the `inputRef` to the parent via `ref`
|
46
|
+
useImperativeHandle(ref, () => inputRef.current as HTMLInputElement);
|
47
|
+
|
48
|
+
useEffect(() => {
|
49
|
+
if (cursorPosition !== null && inputRef.current) {
|
50
|
+
inputRef.current.setSelectionRange(cursorPosition, cursorPosition);
|
51
|
+
inputRef.current.focus();
|
52
|
+
}
|
53
|
+
}, [cursorPosition]);
|
54
|
+
|
55
|
+
useEffect(() => {
|
56
|
+
const cursorPos = inputRef.current?.selectionStart || 0;
|
57
|
+
const isDollarTyped = value[cursorPos - 1] === '$';
|
58
|
+
if (isHash) {
|
59
|
+
setShowDropdown(value.startsWith('#'));
|
60
|
+
} else {
|
61
|
+
setShowDropdown(isDollarTyped);
|
62
|
+
setShowCreateVariableIcon(!value?.includes('$'));
|
63
|
+
}
|
64
|
+
if (value.startsWith('#') && isHash) {
|
65
|
+
const searchQuery = value.slice(1).toLowerCase();
|
66
|
+
const filtered = dataFiles.filter((file) =>
|
67
|
+
file.name.toLowerCase().includes(searchQuery)
|
68
|
+
);
|
69
|
+
setFilteredOptions(filtered);
|
70
|
+
setShowDropdown(filtered.length > 0);
|
71
|
+
}
|
72
|
+
}, [value]);
|
73
|
+
|
74
|
+
const handleDropdownClick = (item: dynamicObject) => {
|
75
|
+
if (inputRef.current) {
|
76
|
+
const { selectionStart, selectionEnd } = inputRef.current;
|
77
|
+
const dollarSyntax = `{${
|
78
|
+
item.type === 'LOCAL'
|
79
|
+
? 'LV'
|
80
|
+
: item.type === 'GLOBAL'
|
81
|
+
? 'GV'
|
82
|
+
: item.type === 'GROUP'
|
83
|
+
? 'SG'
|
84
|
+
: 'PEV'
|
85
|
+
}_${item.name}}`;
|
86
|
+
|
87
|
+
let newValue;
|
88
|
+
if (isHash && value[0] === '#') {
|
89
|
+
newValue = item.name + value.slice(selectionEnd || 1);
|
90
|
+
} else {
|
91
|
+
newValue =
|
92
|
+
value.slice(0, selectionStart || 0) +
|
93
|
+
dollarSyntax +
|
94
|
+
value.slice(selectionEnd || 0);
|
95
|
+
}
|
96
|
+
|
97
|
+
if (onChange) {
|
98
|
+
const event = {
|
99
|
+
target: {
|
100
|
+
value: newValue,
|
101
|
+
},
|
102
|
+
} as React.ChangeEvent<HTMLInputElement>;
|
103
|
+
onChange(event);
|
104
|
+
}
|
105
|
+
inputRef.current.value = newValue;
|
106
|
+
setHashInputValue?.(item);
|
107
|
+
setCursorPosition((selectionStart || 0) + dollarSyntax.length);
|
108
|
+
setShowDropdown(false);
|
109
|
+
}
|
110
|
+
};
|
111
|
+
|
112
|
+
return (
|
113
|
+
<div className="ff-add-variable-container">
|
114
|
+
<div className="ff-add-variable-input">
|
115
|
+
<Input
|
116
|
+
{...props}
|
117
|
+
name="add_variable"
|
118
|
+
ref={inputRef}
|
119
|
+
type="text"
|
120
|
+
value={value}
|
121
|
+
onChange={onChange}
|
122
|
+
variant="primary"
|
123
|
+
label={label}
|
124
|
+
placeholder={placeholder}
|
125
|
+
/>
|
126
|
+
{!checkEmpty(value) && !isHash && showCreateVariableIcon && showAddVariableIcon && (
|
127
|
+
<Icon
|
128
|
+
onClick={onCreateVariableClick}
|
129
|
+
name="add_variable"
|
130
|
+
width={24}
|
131
|
+
height={24}
|
132
|
+
hoverEffect
|
133
|
+
/>
|
134
|
+
)}
|
135
|
+
</div>
|
136
|
+
{showDropdown &&
|
137
|
+
(isHash ? (
|
138
|
+
<OptionsDropdown
|
139
|
+
position="relative"
|
140
|
+
width={dropdownWidth}
|
141
|
+
filteredOptions={filteredOptions}
|
142
|
+
onSelectVariable={handleDropdownClick}
|
143
|
+
/>
|
144
|
+
) : (
|
145
|
+
<VariableDropdown
|
146
|
+
position="absolute"
|
147
|
+
width={dropdownWidth}
|
148
|
+
optionsList={variableList}
|
149
|
+
onSelectVariable={handleDropdownClick}
|
150
|
+
/>
|
151
|
+
))}
|
152
|
+
</div>
|
153
|
+
);
|
154
|
+
}
|
155
|
+
);
|
156
|
+
|
157
|
+
export default ConditionalDropdown;
|