pixel-react 1.10.10-2 → 1.10.10-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/1fb4472b34e4fe07.css +1 -0
- package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
- package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
- package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
- package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
- package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
- package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
- package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
- package/lib/components/AddButton/AddButton.d.ts +5 -0
- package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
- package/lib/components/AddButton/index.d.ts +1 -0
- package/lib/components/AddButton/types.d.ts +4 -0
- package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
- package/lib/components/AddVariables/AddVariables.d.ts +5 -0
- package/lib/components/AddVariables/index.d.ts +1 -0
- package/lib/components/AddVariables/types.d.ts +35 -0
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
- package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
- package/lib/components/AppHeader/types.d.ts +1 -0
- package/lib/components/AttachImage/AttachImage.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/BarChart/BarChart.stories.d.ts +6 -0
- package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
- package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
- package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
- package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
- package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -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/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
- package/lib/components/ConnectingBranch/types.d.ts +2 -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/EditTextField/EditTextField.stories.d.ts +10 -0
- package/lib/components/Editor/Editor.stories.d.ts +6 -0
- package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +4 -0
- package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
- package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
- 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/ImportExcelStyles.d.ts +24 -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 +13 -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 +11 -0
- package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
- package/lib/components/NLPInput/type.d.ts +70 -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 +14 -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/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
- package/lib/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.d.ts +4 -0
- package/lib/components/SequentialConnectingBranch/components/AddBrowserModal/types.d.ts +3 -0
- package/lib/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.d.ts +4 -0
- package/lib/components/SequentialConnectingBranch/components/DatasetListModal/types.d.ts +3 -0
- package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
- package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
- package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -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 +2 -0
- package/lib/index.esm.js +796 -572
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +796 -572
- 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/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
- package/lib/utils/throttle/throttle.stories.d.ts +6 -0
- package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
- package/package.json +1 -1
- package/src/assets/icons/approval_pending.svg +8 -8
- package/src/assets/icons/configuration.svg +3 -3
- package/src/assets/icons/defects.svg +8 -8
- package/src/assets/icons/element.svg +4 -4
- package/src/assets/icons/project_element.svg +4 -4
- package/src/assets/icons/step_group.svg +10 -10
- package/src/assets/icons/variable.svg +3 -3
- package/src/assets/icons/web_service_icon.svg +3 -3
- package/src/components/AppHeader/AppHeader.scss +7 -1
- package/src/components/AppHeader/AppHeader.stories.tsx +1 -0
- package/src/components/AppHeader/AppHeader.tsx +8 -1
- package/src/components/AppHeader/types.ts +1 -0
- package/src/components/Comment/Comments.stories.tsx +77 -3
- package/src/components/ConnectingBranch/BranchComponents/MachineInstances.tsx +36 -27
- package/src/components/ConnectingBranch/ConnectingBranch.stories.tsx +10 -0
- package/src/components/ConnectingBranch/ConnectingBranch.tsx +36 -23
- package/src/components/ConnectingBranch/types.ts +2 -0
- package/src/components/Select/Select.stories.tsx +34 -10
- package/src/components/Select/Select.tsx +1 -0
- package/src/components/Select/components/Dropdown.tsx +24 -21
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +19 -14
- package/src/components/TableTree/Components/AddModule/AddModule.scss +73 -1
- package/src/components/TableTree/Components/AddModule/AddModule.tsx +26 -2
- package/src/components/TableTree/Components/TableCell.tsx +121 -73
- package/src/components/TableTree/TableTree.scss +13 -2
- package/src/components/TableTree/TableTree.stories.tsx +5 -5
package/lib/tsconfig.tsbuildinfo
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"root":["../src/index.ts","../src/componentprops/treenodeprops.ts","../src/styleguide/colorpalette/colorpalette.tsx","../src/styleguide/colorpalette/colorpalettelist.ts","../src/styleguide/colorpalette/index.ts","../src/styleguide/colorpalette/types.ts","../src/styleguide/typography/typography.tsx","../src/styleguide/typography/typographylist.ts","../src/styleguide/typography/types.ts","../src/assets/utils/functionutils.ts","../src/components/accordion/accordion.tsx","../src/components/accordion/index.ts","../src/components/accordion/types.ts","../src/components/addresourcebutton/addresourcebutton.tsx","../src/components/addresourcebutton/index.ts","../src/components/addresourcebutton/type.ts","../src/components/addresourcebutton/arrowsbutton/arrowsbutton.tsx","../src/components/allprojectsdropdown/allprojectsdropdown.tsx","../src/components/allprojectsdropdown/index.ts","../src/components/allprojectsdropdown/types.ts","../src/components/appheader/appheader.tsx","../src/components/appheader/index.ts","../src/components/appheader/types.ts","../src/components/attachimage/attachimage.tsx","../src/components/attachimage/index.ts","../src/components/attachimage/types.ts","../src/components/attachmentbutton/attachmentbutton.tsx","../src/components/attachmentbutton/index.ts","../src/components/attachmentbutton/types.ts","../src/components/avatar/avatar.tsx","../src/components/avatar/index.ts","../src/components/avatar/types.ts","../src/components/browsertabs/browsertabs.tsx","../src/components/browsertabs/index.ts","../src/components/browsertabs/types.ts","../src/components/button/button.tsx","../src/components/button/index.ts","../src/components/button/types.ts","../src/components/charts/barchart/barchart.tsx","../src/components/charts/barchart/index.ts","../src/components/charts/barchart/types.ts","../src/components/charts/dashboarddonutchart/dashboarddonutchart.tsx","../src/components/charts/dashboarddonutchart/index.ts","../src/components/charts/dashboarddonutchart/types.ts","../src/components/charts/donutchart/donutchart.tsx","../src/components/charts/donutchart/index.ts","../src/components/charts/donutchart/type.ts","../src/components/charts/iconradialchart/iconradialchart.tsx","../src/components/charts/iconradialchart/index.ts","../src/components/charts/iconradialchart/types.ts","../src/components/charts/linechart/linechart.tsx","../src/components/charts/linechart/index.ts","../src/components/charts/linechart/types.ts","../src/components/charts/multiradialchart/multiradialchart.tsx","../src/components/charts/multiradialchart/index.ts","../src/components/charts/multiradialchart/types.ts","../src/components/charts/piechart/piechart.tsx","../src/components/charts/piechart/index.ts","../src/components/charts/piechart/types.ts","../src/components/charts/radialchart/radialchart.tsx","../src/components/charts/radialchart/index.ts","../src/components/charts/radialchart/types.ts","../src/components/checkbox/checkbox.tsx","../src/components/checkbox/index.ts","../src/components/checkbox/types.ts","../src/components/chip/chip.tsx","../src/components/chip/index.ts","../src/components/chip/types.ts","../src/components/choosefile/choosefile.tsx","../src/components/choosefile/types.ts","../src/components/comment/comments.tsx","../src/components/comment/index.ts","../src/components/comment/type.ts","../src/components/comment/comment/comment.tsx","../src/components/comment/comment/usenode.ts","../src/components/conditionaldropdown/conditionaldropdown.tsx","../src/components/conditionaldropdown/optionsdropdown.tsx","../src/components/conditionaldropdown/index.ts","../src/components/conditionaldropdown/types.ts","../src/components/connectingbranch/connectingbranch.tsx","../src/components/connectingbranch/data.tsx","../src/components/connectingbranch/index.ts","../src/components/connectingbranch/types.ts","../src/components/connectingbranch/branchcomponents/machineinstances.tsx","../src/components/createvariable/createvariableslider.tsx","../src/components/createvariable/index.ts","../src/components/createvariable/types.ts","../src/components/datepicker/datepicker.tsx","../src/components/datepicker/timepicker.tsx","../src/components/datepicker/index.ts","../src/components/datepicker/types.ts","../src/components/downloadclient/downloadclient.tsx","../src/components/downloadclient/index.ts","../src/components/downloadclient/type.ts","../src/components/draganddrop/draganddrop.ts","../src/components/draganddrop/draganddroplist.tsx","../src/components/draganddrop/index.ts","../src/components/drawer/drawer.tsx","../src/components/drawer/types.ts","../src/components/drawer/index.ts","../src/components/edittextfield/edittextfield.tsx","../src/components/edittextfield/index.ts","../src/components/edittextfield/types.ts","../src/components/editor/editor.tsx","../src/components/editor/variabledropdown.tsx","../src/components/editor/constants.ts","../src/components/editor/index.ts","../src/components/editor/types.ts","../src/components/excel/types.ts","../src/components/excel/dataconversion.ts","../src/components/excel/index.ts","../src/components/excel/colorbarselector/colorbarselector.tsx","../src/components/excel/excelcontextmenu/excelcontextmenu.tsx","../src/components/excel/excelfile/excelfile.tsx","../src/components/excel/excelfile/excelfilecomponents/activecell.tsx","../src/components/excel/excelfile/excelfilecomponents/cell.tsx","../src/components/excel/excelfile/excelfilecomponents/columnindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/copied.tsx","../src/components/excel/excelfile/excelfilecomponents/cornerindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/dataeditor.tsx","../src/components/excel/excelfile/excelfilecomponents/dataviewer.tsx","../src/components/excel/excelfile/excelfilecomponents/floatingrect.tsx","../src/components/excel/excelfile/excelfilecomponents/headerrow.tsx","../src/components/excel/excelfile/excelfilecomponents/row.tsx","../src/components/excel/excelfile/excelfilecomponents/rowindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/selected.tsx","../src/components/excel/excelfile/excelfilecomponents/spreadsheet.tsx","../src/components/excel/excelfile/excelfilecomponents/table.tsx","../src/components/excel/excelfile/excelfilecomponents/actions.ts","../src/components/excel/excelfile/excelfilecomponents/aremodelsequal.ts","../src/components/excel/excelfile/excelfilecomponents/context.ts","../src/components/excel/excelfile/excelfilecomponents/index.ts","../src/components/excel/excelfile/excelfilecomponents/matrix.ts","../src/components/excel/excelfile/excelfilecomponents/point-range.ts","../src/components/excel/excelfile/excelfilecomponents/point.ts","../src/components/excel/excelfile/excelfilecomponents/reducer.ts","../src/components/excel/excelfile/excelfilecomponents/reducerfunctions.ts","../src/components/excel/excelfile/excelfilecomponents/selection.ts","../src/components/excel/excelfile/excelfilecomponents/types.ts","../src/components/excel/excelfile/excelfilecomponents/use-dispatch.ts","../src/components/excel/excelfile/excelfilecomponents/use-selector.ts","../src/components/excel/excelfile/excelfilecomponents/util.ts","../src/components/excel/excelfile/excelfilecomponents/engine/engine.ts","../src/components/excel/excelfile/excelfilecomponents/engine/formula.ts","../src/components/excel/excelfile/excelfilecomponents/engine/index.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-graph.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-hash.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-set.ts","../src/components/excel/excelfile/excelfilecomponents/typings/fast-formula-parser.d.ts","../src/components/excel/exceltoolbar/exceltoolbar.tsx","../src/components/expandablemenu/expandablemenu.tsx","../src/components/expandablemenu/index.ts","../src/components/expandablemenu/types.ts","../src/components/ff_captcha/recaptcha.tsx","../src/components/ff_captcha/index.ts","../src/components/ff_captcha/types.ts","../src/components/fieldset/fieldset.tsx","../src/components/fieldset/index.ts","../src/components/fieldset/types.ts","../src/components/filedropzone/dropzone.tsx","../src/components/filedropzone/filedropzone.tsx","../src/components/filedropzone/filepreview.tsx","../src/components/filedropzone/radiofilepreview.tsx","../src/components/filedropzone/index.ts","../src/components/filedropzone/types.ts","../src/components/form/form.ts","../src/components/form/forms.tsx","../src/components/form/index.ts","../src/components/form/types.ts","../src/components/gridlayout/gridlayout.tsx","../src/components/gridlayout/index.ts","../src/components/gridlayout/types.ts","../src/components/highlighttext/highlighttext.tsx","../src/components/highlighttext/index.ts","../src/components/highlighttext/types.ts","../src/components/icon/icon.tsx","../src/components/icon/iconlist.ts","../src/components/icon/index.ts","../src/components/icon/types.ts","../src/components/iconbutton/iconbutton.tsx","../src/components/iconbutton/index.ts","../src/components/iconbutton/types.ts","../src/components/iconradiogroup/iconradiogroup.tsx","../src/components/iconradiogroup/index.ts","../src/components/iconradiogroup/type.ts","../src/components/input/input.tsx","../src/components/input/index.ts","../src/components/input/types.ts","../src/components/inputwithdropdown/inputwithdropdown.tsx","../src/components/inputwithdropdown/index.ts","../src/components/inputwithdropdown/types.ts","../src/components/labeledittextfield/labeledittextfield.tsx","../src/components/labeledittextfield/index.ts","../src/components/labeledittextfield/types.ts","../src/components/lazyload/lazyload.ts","../src/components/lazyload/lazyloading.tsx","../src/components/lazyload/index.ts","../src/components/machineinputfield/machineinputfield.tsx","../src/components/machineinputfield/index.ts","../src/components/machineinputfield/types.ts","../src/components/menuoption/menuoption.tsx","../src/components/menuoption/index.ts","../src/components/menuoption/types.ts","../src/components/minimodal/minimodal.tsx","../src/components/minimodal/index.ts","../src/components/minimodal/types.ts","../src/components/mobileskin/mobileskin.tsx","../src/components/mobileskin/mobileskininterface.ts","../src/components/mobileskin/index.ts","../src/components/mobileskin/types.ts","../src/components/modal/modal.tsx","../src/components/modal/index.tsx","../src/components/modal/types.ts","../src/components/moduleschip/modulechip.tsx","../src/components/moduleschip/index.ts","../src/components/moduleschip/types.ts","../src/components/multiselect/dropdown.tsx","../src/components/multiselect/multiselect.tsx","../src/components/multiselect/multiselecttypes.ts","../src/components/multiselect/dropdowntypes.ts","../src/components/multiselect/index.ts","../src/components/nlpinput/nlpinput.tsx","../src/components/nlpinput/index.ts","../src/components/nlpinput/sampledata.ts","../src/components/nlpinput/types.tsx","../src/components/nlpinput/components/nlpdropdown/nlpdropdowntype.ts","../src/components/nlpinput/components/nlpdropdown/nlpdropdown.tsx","../src/components/paper/paper.tsx","../src/components/paper/index.ts","../src/components/paper/types.ts","../src/components/phoneinput/phoneinput.tsx","../src/components/phoneinput/index.ts","../src/components/phoneinput/types.ts","../src/components/popupmodal/popupmodal.tsx","../src/components/popupmodal/types.ts","../src/components/progressbar/progressbar.tsx","../src/components/progressbar/index.ts","../src/components/progressbar/types.ts","../src/components/radiobutton/radiobutton.tsx","../src/components/radiobutton/index.ts","../src/components/radiobutton/radiobuttontypes.tsx","../src/components/radiogroup/radiogroup.tsx","../src/components/radiogroup/index.ts","../src/components/radiogroup/radiogrouptypes.tsx","../src/components/scriptswitchbutton/scriptswitchbutton.tsx","../src/components/scriptswitchbutton/index.ts","../src/components/search/search.tsx","../src/components/search/index.ts","../src/components/search/types.ts","../src/components/select/select.tsx","../src/components/select/index.ts","../src/components/select/types.ts","../src/components/select/components/dropdown.tsx","../src/components/select/components/types.ts","../src/components/sequentialconnectingbranch/sequentialconnectingbranch.tsx","../src/components/sequentialconnectingbranch/index.ts","../src/components/sequentialconnectingbranch/types.ts","../src/components/sequentialconnectingbranch/components/branches/branches.tsx","../src/components/sequentialconnectingbranch/components/branches/types.ts","../src/components/sequentialconnectingbranch/components/connectingbranches/connectingbranches.tsx","../src/components/sequentialconnectingbranch/components/connectingbranches/types.ts","../src/components/sequentialconnectingbranch/components/datasettooltip/datasettooltip.tsx","../src/components/sequentialconnectingbranch/components/datasettooltip/types.ts","../src/components/statedropdown/statedropdown.tsx","../src/components/statedropdown/statedropdowntypes.tsx","../src/components/statedropdown/index.ts","../src/components/statusbutton/statusbutton.tsx","../src/components/statusbutton/index.ts","../src/components/statusbutton/types.ts","../src/components/statuscard/statuscard.tsx","../src/components/statuscard/index.ts","../src/components/statuscard/types.ts","../src/components/table/table.tsx","../src/components/table/types.ts","../src/components/table/index.ts","../src/components/tabletree/tabletree.tsx","../src/components/tabletree/data.ts","../src/components/tabletree/index.ts","../src/components/tabletree/types.ts","../src/components/tabletree/components/tablebody.tsx","../src/components/tabletree/components/tablecell.tsx","../src/components/tabletree/components/tablehead.tsx","../src/components/tabletree/components/tablerow.tsx","../src/components/tabletree/components/addmodule/addmodule.tsx","../src/components/tabletree/utils/addnewrow.ts","../src/components/tabletree/utils/getallchildids.ts","../src/components/tabletree/utils/renderspaces.ts","../src/components/tablewithaccordion/tablewithaccordion.tsx","../src/components/tablewithaccordion/data.ts","../src/components/tablewithaccordion/index.ts","../src/components/tablewithaccordion/types.ts","../src/components/tabs/tabs.tsx","../src/components/tabs/index.ts","../src/components/tabs/types.ts","../src/components/textarea/textarea.tsx","../src/components/textarea/types.ts","../src/components/textarea/index.tsx","../src/components/themeprovider/themeprovider.tsx","../src/components/themeprovider/index.ts","../src/components/themeprovider/types.ts","../src/components/toast/toast.tsx","../src/components/toast/index.ts","../src/components/toast/types.ts","../src/components/toastify/toastify.tsx","../src/components/toastify/index.ts","../src/components/toastify/types.ts","../src/components/toggle/toggle.tsx","../src/components/toggle/index.ts","../src/components/toggle/types.ts","../src/components/toggleswitch/toggleswitch.tsx","../src/components/toggleswitch/index.ts","../src/components/tooltip/tooltip.tsx","../src/components/tooltip/index.ts","../src/components/tooltip/types.ts","../src/components/typography/typography.tsx","../src/components/typography/index.ts","../src/components/typography/types.ts","../src/components/variableinput/variableinput.tsx","../src/components/variableinput/index.ts","../src/components/variableinput/types.ts","../src/components/variablesuggestioninputdropdown/optionsdropdown.tsx","../src/components/variablesuggestioninputdropdown/variablesuggestioninputdropdown.tsx","../src/components/variablesuggestioninputdropdown/index.ts","../src/components/variablesuggestioninputdropdown/types.ts","../src/hooks/useclickoutside.tsx","../src/hooks/usefiledropzone.tsx","../src/hooks/useintersectionobserver.tsx","../src/hooks/useportalposition.tsx","../src/hooks/usetheme.tsx","../src/hooks/keyboardevents/useesckeyevent.tsx","../src/utils/formatstring/formatstring.tsx","../src/utils/tablecell/tablecell.ts","../src/utils/capitalize/capitalize.tsx","../src/utils/checkduplicates/checkduplicates.ts","../src/utils/checkempty/checkempty.ts","../src/utils/comparearrays/comparearrays.ts","../src/utils/compareobjects/compareobjects.ts","../src/utils/debounce/debounce.ts","../src/utils/downloadfile/savefilefromblob.ts","../src/utils/ffid/ffid.ts","../src/utils/findandinsert/findandinsert.ts","../src/utils/formdata/convertformdatatoobject.ts","../src/utils/functioncheck/functioncheck.ts","../src/utils/getanchorelement/getanchorelement.ts","../src/utils/getencrypteddata/getencrypteddata.ts","../src/utils/getextension/getextension.ts","../src/utils/getselectoptionvalue/getselectoptionvalue.ts","../src/utils/getsequentialpayload/getsequentialpayload.ts","../src/utils/getsequentialpayload/types.ts","../src/utils/gettreedetails/gettreedetails.ts","../src/utils/handletreenodeselect/handletreenodeselect.ts","../src/utils/indexdbstore/indexdb.ts","../src/utils/keyboardactionutil/usekeyboardactions.tsx","../src/utils/keyboardactionutil/types.ts","../src/utils/swaparrayitem/draganddroputils.ts","../src/utils/throttle/throttle.ts","../src/utils/truncatetext/truncatetext.ts","../src/utils/validatefile/validatefile.ts","../src/validations/regex.ts"],"version":"5.7.2"}
|
1
|
+
{"root":["../src/index.ts","../src/componentprops/treenodeprops.ts","../src/styleguide/colorpalette/colorpalette.tsx","../src/styleguide/colorpalette/colorpalettelist.ts","../src/styleguide/colorpalette/index.ts","../src/styleguide/colorpalette/types.ts","../src/styleguide/typography/typography.tsx","../src/styleguide/typography/typographylist.ts","../src/styleguide/typography/types.ts","../src/assets/utils/functionutils.ts","../src/components/accordion/accordion.tsx","../src/components/accordion/index.ts","../src/components/accordion/types.ts","../src/components/addresourcebutton/addresourcebutton.tsx","../src/components/addresourcebutton/index.ts","../src/components/addresourcebutton/type.ts","../src/components/addresourcebutton/arrowsbutton/arrowsbutton.tsx","../src/components/allprojectsdropdown/allprojectsdropdown.tsx","../src/components/allprojectsdropdown/index.ts","../src/components/allprojectsdropdown/types.ts","../src/components/appheader/appheader.tsx","../src/components/appheader/index.ts","../src/components/appheader/types.ts","../src/components/attachimage/attachimage.tsx","../src/components/attachimage/index.ts","../src/components/attachimage/types.ts","../src/components/attachmentbutton/attachmentbutton.tsx","../src/components/attachmentbutton/index.ts","../src/components/attachmentbutton/types.ts","../src/components/avatar/avatar.tsx","../src/components/avatar/index.ts","../src/components/avatar/types.ts","../src/components/browsertabs/browsertabs.tsx","../src/components/browsertabs/index.ts","../src/components/browsertabs/types.ts","../src/components/button/button.tsx","../src/components/button/index.ts","../src/components/button/types.ts","../src/components/charts/barchart/barchart.tsx","../src/components/charts/barchart/index.ts","../src/components/charts/barchart/types.ts","../src/components/charts/dashboarddonutchart/dashboarddonutchart.tsx","../src/components/charts/dashboarddonutchart/index.ts","../src/components/charts/dashboarddonutchart/types.ts","../src/components/charts/donutchart/donutchart.tsx","../src/components/charts/donutchart/index.ts","../src/components/charts/donutchart/type.ts","../src/components/charts/iconradialchart/iconradialchart.tsx","../src/components/charts/iconradialchart/index.ts","../src/components/charts/iconradialchart/types.ts","../src/components/charts/linechart/linechart.tsx","../src/components/charts/linechart/index.ts","../src/components/charts/linechart/types.ts","../src/components/charts/multiradialchart/multiradialchart.tsx","../src/components/charts/multiradialchart/index.ts","../src/components/charts/multiradialchart/types.ts","../src/components/charts/piechart/piechart.tsx","../src/components/charts/piechart/index.ts","../src/components/charts/piechart/types.ts","../src/components/charts/radialchart/radialchart.tsx","../src/components/charts/radialchart/index.ts","../src/components/charts/radialchart/types.ts","../src/components/checkbox/checkbox.tsx","../src/components/checkbox/index.ts","../src/components/checkbox/types.ts","../src/components/chip/chip.tsx","../src/components/chip/index.ts","../src/components/chip/types.ts","../src/components/choosefile/choosefile.tsx","../src/components/choosefile/types.ts","../src/components/comment/comments.tsx","../src/components/comment/index.ts","../src/components/comment/type.ts","../src/components/comment/comment/comment.tsx","../src/components/comment/comment/usenode.ts","../src/components/conditionaldropdown/conditionaldropdown.tsx","../src/components/conditionaldropdown/optionsdropdown.tsx","../src/components/conditionaldropdown/index.ts","../src/components/conditionaldropdown/types.ts","../src/components/connectingbranch/connectingbranch.tsx","../src/components/connectingbranch/data.tsx","../src/components/connectingbranch/index.ts","../src/components/connectingbranch/types.ts","../src/components/connectingbranch/branchcomponents/machineinstances.tsx","../src/components/createvariable/createvariableslider.tsx","../src/components/createvariable/index.ts","../src/components/createvariable/types.ts","../src/components/datepicker/datepicker.tsx","../src/components/datepicker/timepicker.tsx","../src/components/datepicker/index.ts","../src/components/datepicker/types.ts","../src/components/downloadclient/downloadclient.tsx","../src/components/downloadclient/index.ts","../src/components/downloadclient/type.ts","../src/components/draganddrop/draganddrop.ts","../src/components/draganddrop/draganddroplist.tsx","../src/components/draganddrop/index.ts","../src/components/drawer/drawer.tsx","../src/components/drawer/types.ts","../src/components/drawer/index.ts","../src/components/edittextfield/edittextfield.tsx","../src/components/edittextfield/index.ts","../src/components/edittextfield/types.ts","../src/components/editor/editor.tsx","../src/components/editor/variabledropdown.tsx","../src/components/editor/constants.ts","../src/components/editor/index.ts","../src/components/editor/types.ts","../src/components/excel/types.ts","../src/components/excel/dataconversion.ts","../src/components/excel/index.ts","../src/components/excel/colorbarselector/colorbarselector.tsx","../src/components/excel/excelcontextmenu/excelcontextmenu.tsx","../src/components/excel/excelfile/excelfile.tsx","../src/components/excel/excelfile/excelfilecomponents/activecell.tsx","../src/components/excel/excelfile/excelfilecomponents/cell.tsx","../src/components/excel/excelfile/excelfilecomponents/columnindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/copied.tsx","../src/components/excel/excelfile/excelfilecomponents/cornerindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/dataeditor.tsx","../src/components/excel/excelfile/excelfilecomponents/dataviewer.tsx","../src/components/excel/excelfile/excelfilecomponents/floatingrect.tsx","../src/components/excel/excelfile/excelfilecomponents/headerrow.tsx","../src/components/excel/excelfile/excelfilecomponents/row.tsx","../src/components/excel/excelfile/excelfilecomponents/rowindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/selected.tsx","../src/components/excel/excelfile/excelfilecomponents/spreadsheet.tsx","../src/components/excel/excelfile/excelfilecomponents/table.tsx","../src/components/excel/excelfile/excelfilecomponents/actions.ts","../src/components/excel/excelfile/excelfilecomponents/aremodelsequal.ts","../src/components/excel/excelfile/excelfilecomponents/context.ts","../src/components/excel/excelfile/excelfilecomponents/index.ts","../src/components/excel/excelfile/excelfilecomponents/matrix.ts","../src/components/excel/excelfile/excelfilecomponents/point-range.ts","../src/components/excel/excelfile/excelfilecomponents/point.ts","../src/components/excel/excelfile/excelfilecomponents/reducer.ts","../src/components/excel/excelfile/excelfilecomponents/reducerfunctions.ts","../src/components/excel/excelfile/excelfilecomponents/selection.ts","../src/components/excel/excelfile/excelfilecomponents/types.ts","../src/components/excel/excelfile/excelfilecomponents/use-dispatch.ts","../src/components/excel/excelfile/excelfilecomponents/use-selector.ts","../src/components/excel/excelfile/excelfilecomponents/util.ts","../src/components/excel/excelfile/excelfilecomponents/engine/engine.ts","../src/components/excel/excelfile/excelfilecomponents/engine/formula.ts","../src/components/excel/excelfile/excelfilecomponents/engine/index.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-graph.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-hash.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-set.ts","../src/components/excel/excelfile/excelfilecomponents/typings/fast-formula-parser.d.ts","../src/components/excel/exceltoolbar/exceltoolbar.tsx","../src/components/expandablemenu/expandablemenu.tsx","../src/components/expandablemenu/index.ts","../src/components/expandablemenu/types.ts","../src/components/ff_captcha/recaptcha.tsx","../src/components/ff_captcha/index.ts","../src/components/ff_captcha/types.ts","../src/components/fieldset/fieldset.tsx","../src/components/fieldset/index.ts","../src/components/fieldset/types.ts","../src/components/filedropzone/dropzone.tsx","../src/components/filedropzone/filedropzone.tsx","../src/components/filedropzone/filepreview.tsx","../src/components/filedropzone/radiofilepreview.tsx","../src/components/filedropzone/index.ts","../src/components/filedropzone/types.ts","../src/components/form/form.ts","../src/components/form/forms.tsx","../src/components/form/index.ts","../src/components/form/types.ts","../src/components/gridlayout/gridlayout.tsx","../src/components/gridlayout/index.ts","../src/components/gridlayout/types.ts","../src/components/highlighttext/highlighttext.tsx","../src/components/highlighttext/index.ts","../src/components/highlighttext/types.ts","../src/components/icon/icon.tsx","../src/components/icon/iconlist.ts","../src/components/icon/index.ts","../src/components/icon/types.ts","../src/components/iconbutton/iconbutton.tsx","../src/components/iconbutton/index.ts","../src/components/iconbutton/types.ts","../src/components/iconradiogroup/iconradiogroup.tsx","../src/components/iconradiogroup/index.ts","../src/components/iconradiogroup/type.ts","../src/components/input/input.tsx","../src/components/input/index.ts","../src/components/input/types.ts","../src/components/inputwithdropdown/inputwithdropdown.tsx","../src/components/inputwithdropdown/index.ts","../src/components/inputwithdropdown/types.ts","../src/components/labeledittextfield/labeledittextfield.tsx","../src/components/labeledittextfield/index.ts","../src/components/labeledittextfield/types.ts","../src/components/lazyload/lazyload.ts","../src/components/lazyload/lazyloading.tsx","../src/components/lazyload/index.ts","../src/components/machineinputfield/machineinputfield.tsx","../src/components/machineinputfield/index.ts","../src/components/machineinputfield/types.ts","../src/components/menuoption/menuoption.tsx","../src/components/menuoption/index.ts","../src/components/menuoption/types.ts","../src/components/minimodal/minimodal.tsx","../src/components/minimodal/index.ts","../src/components/minimodal/types.ts","../src/components/mobileskin/mobileskin.tsx","../src/components/mobileskin/mobileskininterface.ts","../src/components/mobileskin/index.ts","../src/components/mobileskin/types.ts","../src/components/modal/modal.tsx","../src/components/modal/index.tsx","../src/components/modal/types.ts","../src/components/moduleschip/modulechip.tsx","../src/components/moduleschip/index.ts","../src/components/moduleschip/types.ts","../src/components/multiselect/dropdown.tsx","../src/components/multiselect/multiselect.tsx","../src/components/multiselect/multiselecttypes.ts","../src/components/multiselect/dropdowntypes.ts","../src/components/multiselect/index.ts","../src/components/nlpinput/nlpinput.tsx","../src/components/nlpinput/index.ts","../src/components/nlpinput/sampledata.ts","../src/components/nlpinput/types.tsx","../src/components/nlpinput/components/nlpdropdown/nlpdropdowntype.ts","../src/components/nlpinput/components/nlpdropdown/nlpdropdown.tsx","../src/components/paper/paper.tsx","../src/components/paper/index.ts","../src/components/paper/types.ts","../src/components/phoneinput/phoneinput.tsx","../src/components/phoneinput/index.ts","../src/components/phoneinput/types.ts","../src/components/popupmodal/popupmodal.tsx","../src/components/popupmodal/types.ts","../src/components/progressbar/progressbar.tsx","../src/components/progressbar/index.ts","../src/components/progressbar/types.ts","../src/components/radiobutton/radiobutton.tsx","../src/components/radiobutton/index.ts","../src/components/radiobutton/radiobuttontypes.tsx","../src/components/radiogroup/radiogroup.tsx","../src/components/radiogroup/index.ts","../src/components/radiogroup/radiogrouptypes.tsx","../src/components/scriptswitchbutton/scriptswitchbutton.tsx","../src/components/scriptswitchbutton/index.ts","../src/components/search/search.tsx","../src/components/search/index.ts","../src/components/search/types.ts","../src/components/select/select.tsx","../src/components/select/index.ts","../src/components/select/types.ts","../src/components/select/components/dropdown.tsx","../src/components/select/components/types.ts","../src/components/sequentialconnectingbranch/sequentialconnectingbranch.tsx","../src/components/sequentialconnectingbranch/index.ts","../src/components/sequentialconnectingbranch/types.ts","../src/components/sequentialconnectingbranch/components/branches/branches.tsx","../src/components/sequentialconnectingbranch/components/branches/types.ts","../src/components/sequentialconnectingbranch/components/connectingbranches/connectingbranches.tsx","../src/components/sequentialconnectingbranch/components/connectingbranches/types.ts","../src/components/sequentialconnectingbranch/components/datasettooltip/datasettooltip.tsx","../src/components/sequentialconnectingbranch/components/datasettooltip/types.ts","../src/components/statedropdown/statedropdown.tsx","../src/components/statedropdown/statedropdowntypes.tsx","../src/components/statedropdown/index.ts","../src/components/statusbutton/statusbutton.tsx","../src/components/statusbutton/index.ts","../src/components/statusbutton/types.ts","../src/components/statuscard/statuscard.tsx","../src/components/statuscard/index.ts","../src/components/statuscard/types.ts","../src/components/table/table.tsx","../src/components/table/types.ts","../src/components/table/index.ts","../src/components/tabletree/tabletree.tsx","../src/components/tabletree/data.ts","../src/components/tabletree/index.ts","../src/components/tabletree/types.ts","../src/components/tabletree/components/tablebody.tsx","../src/components/tabletree/components/tablecell.tsx","../src/components/tabletree/components/tablehead.tsx","../src/components/tabletree/components/tablerow.tsx","../src/components/tabletree/components/addmodule/addmodule.tsx","../src/components/tabletree/utils/addnewrow.ts","../src/components/tabletree/utils/getallchildids.ts","../src/components/tabletree/utils/renderspaces.ts","../src/components/tablewithaccordion/tablewithaccordion.tsx","../src/components/tablewithaccordion/data.ts","../src/components/tablewithaccordion/index.ts","../src/components/tablewithaccordion/types.ts","../src/components/tabs/tabs.tsx","../src/components/tabs/index.ts","../src/components/tabs/types.ts","../src/components/textarea/textarea.tsx","../src/components/textarea/types.ts","../src/components/textarea/index.tsx","../src/components/themeprovider/themeprovider.tsx","../src/components/themeprovider/index.ts","../src/components/themeprovider/types.ts","../src/components/toast/toast.tsx","../src/components/toast/index.ts","../src/components/toast/types.ts","../src/components/toastify/toastify.tsx","../src/components/toastify/index.ts","../src/components/toastify/types.ts","../src/components/toggle/toggle.tsx","../src/components/toggle/index.ts","../src/components/toggle/types.ts","../src/components/toggleswitch/toggleswitch.tsx","../src/components/toggleswitch/index.ts","../src/components/tooltip/tooltip.tsx","../src/components/tooltip/index.ts","../src/components/tooltip/types.ts","../src/components/typography/typography.tsx","../src/components/typography/index.ts","../src/components/typography/types.ts","../src/components/variableinput/variableinput.tsx","../src/components/variableinput/index.ts","../src/components/variableinput/types.ts","../src/components/variablesuggestioninputdropdown/optionsdropdown.tsx","../src/components/variablesuggestioninputdropdown/variablesuggestioninputdropdown.tsx","../src/components/variablesuggestioninputdropdown/index.ts","../src/components/variablesuggestioninputdropdown/types.ts","../src/hooks/useclickoutside.tsx","../src/hooks/usefiledropzone.tsx","../src/hooks/useintersectionobserver.tsx","../src/hooks/useportalposition.tsx","../src/hooks/usetheme.tsx","../src/hooks/keyboardevents/useesckeyevent.tsx","../src/utils/formatstring/formatstring.tsx","../src/utils/tablecell/tablecell.ts","../src/utils/capitalize/capitalize.tsx","../src/utils/checkduplicates/checkduplicates.ts","../src/utils/checkempty/checkempty.ts","../src/utils/comparearrays/comparearrays.ts","../src/utils/compareobjects/compareobjects.ts","../src/utils/debounce/debounce.ts","../src/utils/downloadfile/savefilefromblob.ts","../src/utils/ffid/ffid.ts","../src/utils/findandinsert/findandinsert.ts","../src/utils/formdata/convertformdatatoobject.ts","../src/utils/functioncheck/functioncheck.ts","../src/utils/getanchorelement/getanchorelement.ts","../src/utils/getencrypteddata/getencrypteddata.ts","../src/utils/getextension/getextension.ts","../src/utils/getselectoptionvalue/getselectoptionvalue.ts","../src/utils/getsequentialpayload/getsequentialpayload.ts","../src/utils/getsequentialpayload/types.ts","../src/utils/gettreedetails/gettreedetails.ts","../src/utils/handletreenodeselect/handletreenodeselect.ts","../src/utils/indexdbstore/indexdb.ts","../src/utils/keyboardactionutil/usekeyboardactions.tsx","../src/utils/keyboardactionutil/types.ts","../src/utils/swaparrayitem/draganddroputils.ts","../src/utils/throttle/throttle.ts","../src/utils/truncatetext/truncatetext.ts","../src/utils/validatefile/validatefile.ts","../src/validations/regex.ts"],"version":"5.6.3"}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
title: string;
|
3
|
+
component: (obj1: import("./compareObjects").AnyObject | null, obj2: import("./compareObjects").AnyObject | null) => boolean;
|
4
|
+
};
|
5
|
+
export default _default;
|
6
|
+
export declare const Default: () => import("react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
export type AnyObject = {
|
2
|
+
id: number;
|
3
|
+
[key: string]: any;
|
4
|
+
};
|
5
|
+
export declare function findAndInsert<T extends AnyObject>(data: T[], key: keyof T, targetId: number, newEntry: T, insertPosition: 'above' | 'below' | 'replace', childrenKey?: string): {
|
6
|
+
updatedArray: T[];
|
7
|
+
} | null;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
3
|
+
import { MachineExecutionInstanceDataSet } from './types';
|
4
|
+
declare const SequentialPayloadComponent: React.FC<{
|
5
|
+
machineInstances: MachineExecutionInstanceDataSet[];
|
6
|
+
}>;
|
7
|
+
declare const meta: Meta<typeof SequentialPayloadComponent>;
|
8
|
+
type Story = StoryObj<typeof SequentialPayloadComponent>;
|
9
|
+
export declare const Primary: Story;
|
10
|
+
export default meta;
|
package/package.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<mask id="path-1-outside-1_2947_11608" maskUnits="userSpaceOnUse" x="0" y="-0.000976562" width="18" height="18" fill="currentColor">
|
3
|
-
<rect fill="white" y="-0.000976562" width="18" height="18"/>
|
4
|
-
<path d="M14.5007 11.447C15.4768 10.707 16.1477 9.39715 16.2107 8.13752H16.2608C16.6684 8.13752 17 7.80593 17 7.39837V6.90921C17 6.77115 16.888 6.65921 16.75 6.65921H12.3431V4.45674C12.3431 4.39227 12.3182 4.33034 12.2736 4.2838L9.20034 1.07609C9.15319 1.02687 9.08797 0.999023 9.01984 0.999023H1.25C1.11194 0.999023 1 1.11096 1 1.24902V16.7491C1 16.8871 1.11194 16.9991 1.25 16.9991H9.21725H16.75C16.8881 16.9991 17 16.8871 17 16.7491V16.2599C17 15.8524 16.6684 15.5208 16.2608 15.5208H16.2107C16.1477 14.2612 15.4769 12.9514 14.5008 12.2114C14.382 12.1213 14.3139 11.982 14.3139 11.8292C14.3139 11.6763 14.382 11.537 14.5007 11.447ZM16.5 7.39834C16.5 7.53021 16.3927 7.63749 16.2608 7.63749H9.70641C9.57453 7.63749 9.46725 7.53018 9.46725 7.39834V7.15918H16.5V7.39834ZM11.5073 4.20674H9.13538V1.73096L11.5073 4.20674ZM1.5 1.49902H8.63538V4.45671C8.63538 4.59477 8.74731 4.70671 8.88538 4.70671H11.8431V6.65918H9.21725C9.07919 6.65918 8.96725 6.77112 8.96725 6.90918V7.39834C8.96725 7.8059 9.29884 8.13749 9.70641 8.13749H9.75656C9.8195 9.39712 10.4904 10.7069 11.4665 11.4469C11.5852 11.5369 11.6533 11.6762 11.6533 11.8291C11.6533 11.982 11.5852 12.1213 11.4665 12.2113C10.4904 12.9512 9.8195 14.2611 9.75656 15.5207H9.70641C9.29884 15.5207 8.96725 15.8523 8.96725 16.2598V16.499H1.5V1.49902ZM16.5 16.2599V16.4991H9.46725V16.2599C9.46725 16.1281 9.57456 16.0208 9.70641 16.0208H16.2608C16.3927 16.0207 16.5 16.1281 16.5 16.2599ZM12.7925 14.816C12.8586 14.7884 12.9224 14.7562 12.9836 14.7198C13.0448 14.7562 13.1087 14.7883 13.1748 14.816C13.4904 14.9477 13.7873 15.1922 14.036 15.5208H11.9313C12.18 15.1922 12.4769 14.9477 12.7925 14.816ZM14.1987 12.6098C15.0425 13.2495 15.6456 14.4234 15.71 15.5207H14.6387C14.3055 14.9709 13.8583 14.5594 13.3674 14.3546C13.3209 14.3351 13.2763 14.3121 13.2336 14.2862V13.5991C13.2336 13.4611 13.1217 13.3491 12.9836 13.3491C12.8455 13.3491 12.7336 13.4611 12.7336 13.5991V14.2863C12.6908 14.3121 12.6463 14.3352 12.5999 14.3546C12.109 14.5594 11.6618 14.9709 11.3286 15.5207H10.2572C10.3216 14.4234 10.9247 13.2495 11.7685 12.6098C12.0131 12.4244 12.1533 12.1399 12.1533 11.8292C12.1533 11.5184 12.0131 11.2339 11.7685 11.0485C10.9247 10.4088 10.3216 9.2349 10.2572 8.13756H15.71C15.6456 9.2349 15.0425 10.4088 14.1987 11.0486C13.9542 11.2339 13.8139 11.5184 13.8139 11.8291C13.8139 12.1398 13.9542 12.4244 14.1987 12.6098ZM13.2336 12.1133V12.3289C13.2336 12.4669 13.1217 12.5789 12.9836 12.5789C12.8456 12.5789 12.7336 12.4669 12.7336 12.3289V12.1133C12.7336 11.9753 12.8456 11.8633 12.9836 11.8633C13.1217 11.8633 13.2336 11.9753 13.2336 12.1133ZM14.8461 9.3459C14.8952 9.23802 14.8618 9.11052 14.7661 9.04056C13.972 8.45977 13.3647 8.75105 12.8288 9.00805C12.427 9.20077 12.0475 9.38277 11.5434 9.28396C11.4474 9.26515 11.3493 9.30402 11.2923 9.38343C11.2353 9.4628 11.2298 9.56818 11.2782 9.65315C11.6158 10.2452 12.0852 10.6896 12.5998 10.9044C12.6463 10.9238 12.6908 10.9468 12.7336 10.9727V11.3204C12.7336 11.4585 12.8455 11.5704 12.9836 11.5704C13.1217 11.5704 13.2336 11.4585 13.2336 11.3204V10.9728C13.2764 10.9469 13.3209 10.9238 13.3673 10.9045C13.9711 10.6525 14.51 10.0844 14.8461 9.3459ZM13.1748 10.443C13.1088 10.4706 13.0449 10.5027 12.9837 10.5391C12.9225 10.5027 12.8586 10.4706 12.7925 10.443C12.4997 10.3208 12.2218 10.1002 11.984 9.80543C12.3946 9.77087 12.7346 9.60781 13.0451 9.4589C13.4966 9.2423 13.8365 9.07934 14.2957 9.33159C14.0125 9.86109 13.6117 10.2606 13.1748 10.443ZM2.97287 4.94155C2.97287 4.80349 3.08481 4.69155 3.22288 4.69155H7.23537C7.37344 4.69155 7.48537 4.80349 7.48537 4.94155C7.48537 5.07962 7.37344 5.19156 7.23537 5.19156H3.22288C3.08481 5.19156 2.97287 5.07962 2.97287 4.94155ZM2.97287 7.64659C2.97287 7.50852 3.08481 7.39659 3.22288 7.39659H7.23537C7.37344 7.39659 7.48537 7.50852 7.48537 7.64659C7.48537 7.78465 7.37344 7.89659 7.23537 7.89659H3.22288C3.08481 7.89659 2.97287 7.78465 2.97287 7.64659ZM2.97287 10.3516C2.97287 10.2135 3.08481 10.1016 3.22288 10.1016H8.82175C8.95981 10.1016 9.07175 10.2135 9.07175 10.3516C9.07175 10.4896 8.95981 10.6016 8.82175 10.6016H3.22288C3.08481 10.6016 2.97287 10.4896 2.97287 10.3516ZM8.82175 13.3066H3.22288C3.08481 13.3066 2.97287 13.1946 2.97287 13.0566C2.97287 12.9185 3.08481 12.8066 3.22288 12.8066H8.82175C8.95981 12.8066 9.07175 12.9185 9.07175 13.0566C9.07175 13.1946 8.95981 13.3066 8.82175 13.3066Z"/>
|
5
|
-
</mask>
|
6
|
-
<path d="M14.5007 11.447C15.4768 10.707 16.1477 9.39715 16.2107 8.13752H16.2608C16.6684 8.13752 17 7.80593 17 7.39837V6.90921C17 6.77115 16.888 6.65921 16.75 6.65921H12.3431V4.45674C12.3431 4.39227 12.3182 4.33034 12.2736 4.2838L9.20034 1.07609C9.15319 1.02687 9.08797 0.999023 9.01984 0.999023H1.25C1.11194 0.999023 1 1.11096 1 1.24902V16.7491C1 16.8871 1.11194 16.9991 1.25 16.9991H9.21725H16.75C16.8881 16.9991 17 16.8871 17 16.7491V16.2599C17 15.8524 16.6684 15.5208 16.2608 15.5208H16.2107C16.1477 14.2612 15.4769 12.9514 14.5008 12.2114C14.382 12.1213 14.3139 11.982 14.3139 11.8292C14.3139 11.6763 14.382 11.537 14.5007 11.447ZM16.5 7.39834C16.5 7.53021 16.3927 7.63749 16.2608 7.63749H9.70641C9.57453 7.63749 9.46725 7.53018 9.46725 7.39834V7.15918H16.5V7.39834ZM11.5073 4.20674H9.13538V1.73096L11.5073 4.20674ZM1.5 1.49902H8.63538V4.45671C8.63538 4.59477 8.74731 4.70671 8.88538 4.70671H11.8431V6.65918H9.21725C9.07919 6.65918 8.96725 6.77112 8.96725 6.90918V7.39834C8.96725 7.8059 9.29884 8.13749 9.70641 8.13749H9.75656C9.8195 9.39712 10.4904 10.7069 11.4665 11.4469C11.5852 11.5369 11.6533 11.6762 11.6533 11.8291C11.6533 11.982 11.5852 12.1213 11.4665 12.2113C10.4904 12.9512 9.8195 14.2611 9.75656 15.5207H9.70641C9.29884 15.5207 8.96725 15.8523 8.96725 16.2598V16.499H1.5V1.49902ZM16.5 16.2599V16.4991H9.46725V16.2599C9.46725 16.1281 9.57456 16.0208 9.70641 16.0208H16.2608C16.3927 16.0207 16.5 16.1281 16.5 16.2599ZM12.7925 14.816C12.8586 14.7884 12.9224 14.7562 12.9836 14.7198C13.0448 14.7562 13.1087 14.7883 13.1748 14.816C13.4904 14.9477 13.7873 15.1922 14.036 15.5208H11.9313C12.18 15.1922 12.4769 14.9477 12.7925 14.816ZM14.1987 12.6098C15.0425 13.2495 15.6456 14.4234 15.71 15.5207H14.6387C14.3055 14.9709 13.8583 14.5594 13.3674 14.3546C13.3209 14.3351 13.2763 14.3121 13.2336 14.2862V13.5991C13.2336 13.4611 13.1217 13.3491 12.9836 13.3491C12.8455 13.3491 12.7336 13.4611 12.7336 13.5991V14.2863C12.6908 14.3121 12.6463 14.3352 12.5999 14.3546C12.109 14.5594 11.6618 14.9709 11.3286 15.5207H10.2572C10.3216 14.4234 10.9247 13.2495 11.7685 12.6098C12.0131 12.4244 12.1533 12.1399 12.1533 11.8292C12.1533 11.5184 12.0131 11.2339 11.7685 11.0485C10.9247 10.4088 10.3216 9.2349 10.2572 8.13756H15.71C15.6456 9.2349 15.0425 10.4088 14.1987 11.0486C13.9542 11.2339 13.8139 11.5184 13.8139 11.8291C13.8139 12.1398 13.9542 12.4244 14.1987 12.6098ZM13.2336 12.1133V12.3289C13.2336 12.4669 13.1217 12.5789 12.9836 12.5789C12.8456 12.5789 12.7336 12.4669 12.7336 12.3289V12.1133C12.7336 11.9753 12.8456 11.8633 12.9836 11.8633C13.1217 11.8633 13.2336 11.9753 13.2336 12.1133ZM14.8461 9.3459C14.8952 9.23802 14.8618 9.11052 14.7661 9.04056C13.972 8.45977 13.3647 8.75105 12.8288 9.00805C12.427 9.20077 12.0475 9.38277 11.5434 9.28396C11.4474 9.26515 11.3493 9.30402 11.2923 9.38343C11.2353 9.4628 11.2298 9.56818 11.2782 9.65315C11.6158 10.2452 12.0852 10.6896 12.5998 10.9044C12.6463 10.9238 12.6908 10.9468 12.7336 10.9727V11.3204C12.7336 11.4585 12.8455 11.5704 12.9836 11.5704C13.1217 11.5704 13.2336 11.4585 13.2336 11.3204V10.9728C13.2764 10.9469 13.3209 10.9238 13.3673 10.9045C13.9711 10.6525 14.51 10.0844 14.8461 9.3459ZM13.1748 10.443C13.1088 10.4706 13.0449 10.5027 12.9837 10.5391C12.9225 10.5027 12.8586 10.4706 12.7925 10.443C12.4997 10.3208 12.2218 10.1002 11.984 9.80543C12.3946 9.77087 12.7346 9.60781 13.0451 9.4589C13.4966 9.2423 13.8365 9.07934 14.2957 9.33159C14.0125 9.86109 13.6117 10.2606 13.1748 10.443ZM2.97287 4.94155C2.97287 4.80349 3.08481 4.69155 3.22288 4.69155H7.23537C7.37344 4.69155 7.48537 4.80349 7.48537 4.94155C7.48537 5.07962 7.37344 5.19156 7.23537 5.19156H3.22288C3.08481 5.19156 2.97287 5.07962 2.97287 4.94155ZM2.97287 7.64659C2.97287 7.50852 3.08481 7.39659 3.22288 7.39659H7.23537C7.37344 7.39659 7.48537 7.50852 7.48537 7.64659C7.48537 7.78465 7.37344 7.89659 7.23537 7.89659H3.22288C3.08481 7.89659 2.97287 7.78465 2.97287 7.64659ZM2.97287 10.3516C2.97287 10.2135 3.08481 10.1016 3.22288 10.1016H8.82175C8.95981 10.1016 9.07175 10.2135 9.07175 10.3516C9.07175 10.4896 8.95981 10.6016 8.82175 10.6016H3.22288C3.08481 10.6016 2.97287 10.4896 2.97287 10.3516ZM8.82175 13.3066H3.22288C3.08481 13.3066 2.97287 13.1946 2.97287 13.0566C2.97287 12.9185 3.08481 12.8066 3.22288 12.8066H8.82175C8.95981 12.8066 9.07175 12.9185 9.07175 13.0566C9.07175 13.1946 8.95981 13.3066 8.82175 13.3066Z" fill="currentColor"/>
|
7
|
-
<path d="M14.5007 11.447C15.4768 10.707 16.1477 9.39715 16.2107 8.13752H16.2608C16.6684 8.13752 17 7.80593 17 7.39837V6.90921C17 6.77115 16.888 6.65921 16.75 6.65921H12.3431V4.45674C12.3431 4.39227 12.3182 4.33034 12.2736 4.2838L9.20034 1.07609C9.15319 1.02687 9.08797 0.999023 9.01984 0.999023H1.25C1.11194 0.999023 1 1.11096 1 1.24902V16.7491C1 16.8871 1.11194 16.9991 1.25 16.9991H9.21725H16.75C16.8881 16.9991 17 16.8871 17 16.7491V16.2599C17 15.8524 16.6684 15.5208 16.2608 15.5208H16.2107C16.1477 14.2612 15.4769 12.9514 14.5008 12.2114C14.382 12.1213 14.3139 11.982 14.3139 11.8292C14.3139 11.6763 14.382 11.537 14.5007 11.447ZM16.5 7.39834C16.5 7.53021 16.3927 7.63749 16.2608 7.63749H9.70641C9.57453 7.63749 9.46725 7.53018 9.46725 7.39834V7.15918H16.5V7.39834ZM11.5073 4.20674H9.13538V1.73096L11.5073 4.20674ZM1.5 1.49902H8.63538V4.45671C8.63538 4.59477 8.74731 4.70671 8.88538 4.70671H11.8431V6.65918H9.21725C9.07919 6.65918 8.96725 6.77112 8.96725 6.90918V7.39834C8.96725 7.8059 9.29884 8.13749 9.70641 8.13749H9.75656C9.8195 9.39712 10.4904 10.7069 11.4665 11.4469C11.5852 11.5369 11.6533 11.6762 11.6533 11.8291C11.6533 11.982 11.5852 12.1213 11.4665 12.2113C10.4904 12.9512 9.8195 14.2611 9.75656 15.5207H9.70641C9.29884 15.5207 8.96725 15.8523 8.96725 16.2598V16.499H1.5V1.49902ZM16.5 16.2599V16.4991H9.46725V16.2599C9.46725 16.1281 9.57456 16.0208 9.70641 16.0208H16.2608C16.3927 16.0207 16.5 16.1281 16.5 16.2599ZM12.7925 14.816C12.8586 14.7884 12.9224 14.7562 12.9836 14.7198C13.0448 14.7562 13.1087 14.7883 13.1748 14.816C13.4904 14.9477 13.7873 15.1922 14.036 15.5208H11.9313C12.18 15.1922 12.4769 14.9477 12.7925 14.816ZM14.1987 12.6098C15.0425 13.2495 15.6456 14.4234 15.71 15.5207H14.6387C14.3055 14.9709 13.8583 14.5594 13.3674 14.3546C13.3209 14.3351 13.2763 14.3121 13.2336 14.2862V13.5991C13.2336 13.4611 13.1217 13.3491 12.9836 13.3491C12.8455 13.3491 12.7336 13.4611 12.7336 13.5991V14.2863C12.6908 14.3121 12.6463 14.3352 12.5999 14.3546C12.109 14.5594 11.6618 14.9709 11.3286 15.5207H10.2572C10.3216 14.4234 10.9247 13.2495 11.7685 12.6098C12.0131 12.4244 12.1533 12.1399 12.1533 11.8292C12.1533 11.5184 12.0131 11.2339 11.7685 11.0485C10.9247 10.4088 10.3216 9.2349 10.2572 8.13756H15.71C15.6456 9.2349 15.0425 10.4088 14.1987 11.0486C13.9542 11.2339 13.8139 11.5184 13.8139 11.8291C13.8139 12.1398 13.9542 12.4244 14.1987 12.6098ZM13.2336 12.1133V12.3289C13.2336 12.4669 13.1217 12.5789 12.9836 12.5789C12.8456 12.5789 12.7336 12.4669 12.7336 12.3289V12.1133C12.7336 11.9753 12.8456 11.8633 12.9836 11.8633C13.1217 11.8633 13.2336 11.9753 13.2336 12.1133ZM14.8461 9.3459C14.8952 9.23802 14.8618 9.11052 14.7661 9.04056C13.972 8.45977 13.3647 8.75105 12.8288 9.00805C12.427 9.20077 12.0475 9.38277 11.5434 9.28396C11.4474 9.26515 11.3493 9.30402 11.2923 9.38343C11.2353 9.4628 11.2298 9.56818 11.2782 9.65315C11.6158 10.2452 12.0852 10.6896 12.5998 10.9044C12.6463 10.9238 12.6908 10.9468 12.7336 10.9727V11.3204C12.7336 11.4585 12.8455 11.5704 12.9836 11.5704C13.1217 11.5704 13.2336 11.4585 13.2336 11.3204V10.9728C13.2764 10.9469 13.3209 10.9238 13.3673 10.9045C13.9711 10.6525 14.51 10.0844 14.8461 9.3459ZM13.1748 10.443C13.1088 10.4706 13.0449 10.5027 12.9837 10.5391C12.9225 10.5027 12.8586 10.4706 12.7925 10.443C12.4997 10.3208 12.2218 10.1002 11.984 9.80543C12.3946 9.77087 12.7346 9.60781 13.0451 9.4589C13.4966 9.2423 13.8365 9.07934 14.2957 9.33159C14.0125 9.86109 13.6117 10.2606 13.1748 10.443ZM2.97287 4.94155C2.97287 4.80349 3.08481 4.69155 3.22288 4.69155H7.23537C7.37344 4.69155 7.48537 4.80349 7.48537 4.94155C7.48537 5.07962 7.37344 5.19156 7.23537 5.19156H3.22288C3.08481 5.19156 2.97287 5.07962 2.97287 4.94155ZM2.97287 7.64659C2.97287 7.50852 3.08481 7.39659 3.22288 7.39659H7.23537C7.37344 7.39659 7.48537 7.50852 7.48537 7.64659C7.48537 7.78465 7.37344 7.89659 7.23537 7.89659H3.22288C3.08481 7.89659 2.97287 7.78465 2.97287 7.64659ZM2.97287 10.3516C2.97287 10.2135 3.08481 10.1016 3.22288 10.1016H8.82175C8.95981 10.1016 9.07175 10.2135 9.07175 10.3516C9.07175 10.4896 8.95981 10.6016 8.82175 10.6016H3.22288C3.08481 10.6016 2.97287 10.4896 2.97287 10.3516ZM8.82175 13.3066H3.22288C3.08481 13.3066 2.97287 13.1946 2.97287 13.0566C2.97287 12.9185 3.08481 12.8066 3.22288 12.8066H8.82175C8.95981 12.8066 9.07175 12.9185 9.07175 13.0566C9.07175 13.1946 8.95981 13.3066 8.82175 13.3066Z" stroke="currentColor" stroke-width="0.4" mask="url(#path-1-outside-1_2947_11608)"/>
|
8
|
-
</svg>
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<mask id="path-1-outside-1_2947_11608" maskUnits="userSpaceOnUse" x="0" y="-0.000976562" width="18" height="18" fill="currentColor">
|
3
|
+
<rect fill="white" y="-0.000976562" width="18" height="18"/>
|
4
|
+
<path d="M14.5007 11.447C15.4768 10.707 16.1477 9.39715 16.2107 8.13752H16.2608C16.6684 8.13752 17 7.80593 17 7.39837V6.90921C17 6.77115 16.888 6.65921 16.75 6.65921H12.3431V4.45674C12.3431 4.39227 12.3182 4.33034 12.2736 4.2838L9.20034 1.07609C9.15319 1.02687 9.08797 0.999023 9.01984 0.999023H1.25C1.11194 0.999023 1 1.11096 1 1.24902V16.7491C1 16.8871 1.11194 16.9991 1.25 16.9991H9.21725H16.75C16.8881 16.9991 17 16.8871 17 16.7491V16.2599C17 15.8524 16.6684 15.5208 16.2608 15.5208H16.2107C16.1477 14.2612 15.4769 12.9514 14.5008 12.2114C14.382 12.1213 14.3139 11.982 14.3139 11.8292C14.3139 11.6763 14.382 11.537 14.5007 11.447ZM16.5 7.39834C16.5 7.53021 16.3927 7.63749 16.2608 7.63749H9.70641C9.57453 7.63749 9.46725 7.53018 9.46725 7.39834V7.15918H16.5V7.39834ZM11.5073 4.20674H9.13538V1.73096L11.5073 4.20674ZM1.5 1.49902H8.63538V4.45671C8.63538 4.59477 8.74731 4.70671 8.88538 4.70671H11.8431V6.65918H9.21725C9.07919 6.65918 8.96725 6.77112 8.96725 6.90918V7.39834C8.96725 7.8059 9.29884 8.13749 9.70641 8.13749H9.75656C9.8195 9.39712 10.4904 10.7069 11.4665 11.4469C11.5852 11.5369 11.6533 11.6762 11.6533 11.8291C11.6533 11.982 11.5852 12.1213 11.4665 12.2113C10.4904 12.9512 9.8195 14.2611 9.75656 15.5207H9.70641C9.29884 15.5207 8.96725 15.8523 8.96725 16.2598V16.499H1.5V1.49902ZM16.5 16.2599V16.4991H9.46725V16.2599C9.46725 16.1281 9.57456 16.0208 9.70641 16.0208H16.2608C16.3927 16.0207 16.5 16.1281 16.5 16.2599ZM12.7925 14.816C12.8586 14.7884 12.9224 14.7562 12.9836 14.7198C13.0448 14.7562 13.1087 14.7883 13.1748 14.816C13.4904 14.9477 13.7873 15.1922 14.036 15.5208H11.9313C12.18 15.1922 12.4769 14.9477 12.7925 14.816ZM14.1987 12.6098C15.0425 13.2495 15.6456 14.4234 15.71 15.5207H14.6387C14.3055 14.9709 13.8583 14.5594 13.3674 14.3546C13.3209 14.3351 13.2763 14.3121 13.2336 14.2862V13.5991C13.2336 13.4611 13.1217 13.3491 12.9836 13.3491C12.8455 13.3491 12.7336 13.4611 12.7336 13.5991V14.2863C12.6908 14.3121 12.6463 14.3352 12.5999 14.3546C12.109 14.5594 11.6618 14.9709 11.3286 15.5207H10.2572C10.3216 14.4234 10.9247 13.2495 11.7685 12.6098C12.0131 12.4244 12.1533 12.1399 12.1533 11.8292C12.1533 11.5184 12.0131 11.2339 11.7685 11.0485C10.9247 10.4088 10.3216 9.2349 10.2572 8.13756H15.71C15.6456 9.2349 15.0425 10.4088 14.1987 11.0486C13.9542 11.2339 13.8139 11.5184 13.8139 11.8291C13.8139 12.1398 13.9542 12.4244 14.1987 12.6098ZM13.2336 12.1133V12.3289C13.2336 12.4669 13.1217 12.5789 12.9836 12.5789C12.8456 12.5789 12.7336 12.4669 12.7336 12.3289V12.1133C12.7336 11.9753 12.8456 11.8633 12.9836 11.8633C13.1217 11.8633 13.2336 11.9753 13.2336 12.1133ZM14.8461 9.3459C14.8952 9.23802 14.8618 9.11052 14.7661 9.04056C13.972 8.45977 13.3647 8.75105 12.8288 9.00805C12.427 9.20077 12.0475 9.38277 11.5434 9.28396C11.4474 9.26515 11.3493 9.30402 11.2923 9.38343C11.2353 9.4628 11.2298 9.56818 11.2782 9.65315C11.6158 10.2452 12.0852 10.6896 12.5998 10.9044C12.6463 10.9238 12.6908 10.9468 12.7336 10.9727V11.3204C12.7336 11.4585 12.8455 11.5704 12.9836 11.5704C13.1217 11.5704 13.2336 11.4585 13.2336 11.3204V10.9728C13.2764 10.9469 13.3209 10.9238 13.3673 10.9045C13.9711 10.6525 14.51 10.0844 14.8461 9.3459ZM13.1748 10.443C13.1088 10.4706 13.0449 10.5027 12.9837 10.5391C12.9225 10.5027 12.8586 10.4706 12.7925 10.443C12.4997 10.3208 12.2218 10.1002 11.984 9.80543C12.3946 9.77087 12.7346 9.60781 13.0451 9.4589C13.4966 9.2423 13.8365 9.07934 14.2957 9.33159C14.0125 9.86109 13.6117 10.2606 13.1748 10.443ZM2.97287 4.94155C2.97287 4.80349 3.08481 4.69155 3.22288 4.69155H7.23537C7.37344 4.69155 7.48537 4.80349 7.48537 4.94155C7.48537 5.07962 7.37344 5.19156 7.23537 5.19156H3.22288C3.08481 5.19156 2.97287 5.07962 2.97287 4.94155ZM2.97287 7.64659C2.97287 7.50852 3.08481 7.39659 3.22288 7.39659H7.23537C7.37344 7.39659 7.48537 7.50852 7.48537 7.64659C7.48537 7.78465 7.37344 7.89659 7.23537 7.89659H3.22288C3.08481 7.89659 2.97287 7.78465 2.97287 7.64659ZM2.97287 10.3516C2.97287 10.2135 3.08481 10.1016 3.22288 10.1016H8.82175C8.95981 10.1016 9.07175 10.2135 9.07175 10.3516C9.07175 10.4896 8.95981 10.6016 8.82175 10.6016H3.22288C3.08481 10.6016 2.97287 10.4896 2.97287 10.3516ZM8.82175 13.3066H3.22288C3.08481 13.3066 2.97287 13.1946 2.97287 13.0566C2.97287 12.9185 3.08481 12.8066 3.22288 12.8066H8.82175C8.95981 12.8066 9.07175 12.9185 9.07175 13.0566C9.07175 13.1946 8.95981 13.3066 8.82175 13.3066Z"/>
|
5
|
+
</mask>
|
6
|
+
<path d="M14.5007 11.447C15.4768 10.707 16.1477 9.39715 16.2107 8.13752H16.2608C16.6684 8.13752 17 7.80593 17 7.39837V6.90921C17 6.77115 16.888 6.65921 16.75 6.65921H12.3431V4.45674C12.3431 4.39227 12.3182 4.33034 12.2736 4.2838L9.20034 1.07609C9.15319 1.02687 9.08797 0.999023 9.01984 0.999023H1.25C1.11194 0.999023 1 1.11096 1 1.24902V16.7491C1 16.8871 1.11194 16.9991 1.25 16.9991H9.21725H16.75C16.8881 16.9991 17 16.8871 17 16.7491V16.2599C17 15.8524 16.6684 15.5208 16.2608 15.5208H16.2107C16.1477 14.2612 15.4769 12.9514 14.5008 12.2114C14.382 12.1213 14.3139 11.982 14.3139 11.8292C14.3139 11.6763 14.382 11.537 14.5007 11.447ZM16.5 7.39834C16.5 7.53021 16.3927 7.63749 16.2608 7.63749H9.70641C9.57453 7.63749 9.46725 7.53018 9.46725 7.39834V7.15918H16.5V7.39834ZM11.5073 4.20674H9.13538V1.73096L11.5073 4.20674ZM1.5 1.49902H8.63538V4.45671C8.63538 4.59477 8.74731 4.70671 8.88538 4.70671H11.8431V6.65918H9.21725C9.07919 6.65918 8.96725 6.77112 8.96725 6.90918V7.39834C8.96725 7.8059 9.29884 8.13749 9.70641 8.13749H9.75656C9.8195 9.39712 10.4904 10.7069 11.4665 11.4469C11.5852 11.5369 11.6533 11.6762 11.6533 11.8291C11.6533 11.982 11.5852 12.1213 11.4665 12.2113C10.4904 12.9512 9.8195 14.2611 9.75656 15.5207H9.70641C9.29884 15.5207 8.96725 15.8523 8.96725 16.2598V16.499H1.5V1.49902ZM16.5 16.2599V16.4991H9.46725V16.2599C9.46725 16.1281 9.57456 16.0208 9.70641 16.0208H16.2608C16.3927 16.0207 16.5 16.1281 16.5 16.2599ZM12.7925 14.816C12.8586 14.7884 12.9224 14.7562 12.9836 14.7198C13.0448 14.7562 13.1087 14.7883 13.1748 14.816C13.4904 14.9477 13.7873 15.1922 14.036 15.5208H11.9313C12.18 15.1922 12.4769 14.9477 12.7925 14.816ZM14.1987 12.6098C15.0425 13.2495 15.6456 14.4234 15.71 15.5207H14.6387C14.3055 14.9709 13.8583 14.5594 13.3674 14.3546C13.3209 14.3351 13.2763 14.3121 13.2336 14.2862V13.5991C13.2336 13.4611 13.1217 13.3491 12.9836 13.3491C12.8455 13.3491 12.7336 13.4611 12.7336 13.5991V14.2863C12.6908 14.3121 12.6463 14.3352 12.5999 14.3546C12.109 14.5594 11.6618 14.9709 11.3286 15.5207H10.2572C10.3216 14.4234 10.9247 13.2495 11.7685 12.6098C12.0131 12.4244 12.1533 12.1399 12.1533 11.8292C12.1533 11.5184 12.0131 11.2339 11.7685 11.0485C10.9247 10.4088 10.3216 9.2349 10.2572 8.13756H15.71C15.6456 9.2349 15.0425 10.4088 14.1987 11.0486C13.9542 11.2339 13.8139 11.5184 13.8139 11.8291C13.8139 12.1398 13.9542 12.4244 14.1987 12.6098ZM13.2336 12.1133V12.3289C13.2336 12.4669 13.1217 12.5789 12.9836 12.5789C12.8456 12.5789 12.7336 12.4669 12.7336 12.3289V12.1133C12.7336 11.9753 12.8456 11.8633 12.9836 11.8633C13.1217 11.8633 13.2336 11.9753 13.2336 12.1133ZM14.8461 9.3459C14.8952 9.23802 14.8618 9.11052 14.7661 9.04056C13.972 8.45977 13.3647 8.75105 12.8288 9.00805C12.427 9.20077 12.0475 9.38277 11.5434 9.28396C11.4474 9.26515 11.3493 9.30402 11.2923 9.38343C11.2353 9.4628 11.2298 9.56818 11.2782 9.65315C11.6158 10.2452 12.0852 10.6896 12.5998 10.9044C12.6463 10.9238 12.6908 10.9468 12.7336 10.9727V11.3204C12.7336 11.4585 12.8455 11.5704 12.9836 11.5704C13.1217 11.5704 13.2336 11.4585 13.2336 11.3204V10.9728C13.2764 10.9469 13.3209 10.9238 13.3673 10.9045C13.9711 10.6525 14.51 10.0844 14.8461 9.3459ZM13.1748 10.443C13.1088 10.4706 13.0449 10.5027 12.9837 10.5391C12.9225 10.5027 12.8586 10.4706 12.7925 10.443C12.4997 10.3208 12.2218 10.1002 11.984 9.80543C12.3946 9.77087 12.7346 9.60781 13.0451 9.4589C13.4966 9.2423 13.8365 9.07934 14.2957 9.33159C14.0125 9.86109 13.6117 10.2606 13.1748 10.443ZM2.97287 4.94155C2.97287 4.80349 3.08481 4.69155 3.22288 4.69155H7.23537C7.37344 4.69155 7.48537 4.80349 7.48537 4.94155C7.48537 5.07962 7.37344 5.19156 7.23537 5.19156H3.22288C3.08481 5.19156 2.97287 5.07962 2.97287 4.94155ZM2.97287 7.64659C2.97287 7.50852 3.08481 7.39659 3.22288 7.39659H7.23537C7.37344 7.39659 7.48537 7.50852 7.48537 7.64659C7.48537 7.78465 7.37344 7.89659 7.23537 7.89659H3.22288C3.08481 7.89659 2.97287 7.78465 2.97287 7.64659ZM2.97287 10.3516C2.97287 10.2135 3.08481 10.1016 3.22288 10.1016H8.82175C8.95981 10.1016 9.07175 10.2135 9.07175 10.3516C9.07175 10.4896 8.95981 10.6016 8.82175 10.6016H3.22288C3.08481 10.6016 2.97287 10.4896 2.97287 10.3516ZM8.82175 13.3066H3.22288C3.08481 13.3066 2.97287 13.1946 2.97287 13.0566C2.97287 12.9185 3.08481 12.8066 3.22288 12.8066H8.82175C8.95981 12.8066 9.07175 12.9185 9.07175 13.0566C9.07175 13.1946 8.95981 13.3066 8.82175 13.3066Z" fill="currentColor"/>
|
7
|
+
<path d="M14.5007 11.447C15.4768 10.707 16.1477 9.39715 16.2107 8.13752H16.2608C16.6684 8.13752 17 7.80593 17 7.39837V6.90921C17 6.77115 16.888 6.65921 16.75 6.65921H12.3431V4.45674C12.3431 4.39227 12.3182 4.33034 12.2736 4.2838L9.20034 1.07609C9.15319 1.02687 9.08797 0.999023 9.01984 0.999023H1.25C1.11194 0.999023 1 1.11096 1 1.24902V16.7491C1 16.8871 1.11194 16.9991 1.25 16.9991H9.21725H16.75C16.8881 16.9991 17 16.8871 17 16.7491V16.2599C17 15.8524 16.6684 15.5208 16.2608 15.5208H16.2107C16.1477 14.2612 15.4769 12.9514 14.5008 12.2114C14.382 12.1213 14.3139 11.982 14.3139 11.8292C14.3139 11.6763 14.382 11.537 14.5007 11.447ZM16.5 7.39834C16.5 7.53021 16.3927 7.63749 16.2608 7.63749H9.70641C9.57453 7.63749 9.46725 7.53018 9.46725 7.39834V7.15918H16.5V7.39834ZM11.5073 4.20674H9.13538V1.73096L11.5073 4.20674ZM1.5 1.49902H8.63538V4.45671C8.63538 4.59477 8.74731 4.70671 8.88538 4.70671H11.8431V6.65918H9.21725C9.07919 6.65918 8.96725 6.77112 8.96725 6.90918V7.39834C8.96725 7.8059 9.29884 8.13749 9.70641 8.13749H9.75656C9.8195 9.39712 10.4904 10.7069 11.4665 11.4469C11.5852 11.5369 11.6533 11.6762 11.6533 11.8291C11.6533 11.982 11.5852 12.1213 11.4665 12.2113C10.4904 12.9512 9.8195 14.2611 9.75656 15.5207H9.70641C9.29884 15.5207 8.96725 15.8523 8.96725 16.2598V16.499H1.5V1.49902ZM16.5 16.2599V16.4991H9.46725V16.2599C9.46725 16.1281 9.57456 16.0208 9.70641 16.0208H16.2608C16.3927 16.0207 16.5 16.1281 16.5 16.2599ZM12.7925 14.816C12.8586 14.7884 12.9224 14.7562 12.9836 14.7198C13.0448 14.7562 13.1087 14.7883 13.1748 14.816C13.4904 14.9477 13.7873 15.1922 14.036 15.5208H11.9313C12.18 15.1922 12.4769 14.9477 12.7925 14.816ZM14.1987 12.6098C15.0425 13.2495 15.6456 14.4234 15.71 15.5207H14.6387C14.3055 14.9709 13.8583 14.5594 13.3674 14.3546C13.3209 14.3351 13.2763 14.3121 13.2336 14.2862V13.5991C13.2336 13.4611 13.1217 13.3491 12.9836 13.3491C12.8455 13.3491 12.7336 13.4611 12.7336 13.5991V14.2863C12.6908 14.3121 12.6463 14.3352 12.5999 14.3546C12.109 14.5594 11.6618 14.9709 11.3286 15.5207H10.2572C10.3216 14.4234 10.9247 13.2495 11.7685 12.6098C12.0131 12.4244 12.1533 12.1399 12.1533 11.8292C12.1533 11.5184 12.0131 11.2339 11.7685 11.0485C10.9247 10.4088 10.3216 9.2349 10.2572 8.13756H15.71C15.6456 9.2349 15.0425 10.4088 14.1987 11.0486C13.9542 11.2339 13.8139 11.5184 13.8139 11.8291C13.8139 12.1398 13.9542 12.4244 14.1987 12.6098ZM13.2336 12.1133V12.3289C13.2336 12.4669 13.1217 12.5789 12.9836 12.5789C12.8456 12.5789 12.7336 12.4669 12.7336 12.3289V12.1133C12.7336 11.9753 12.8456 11.8633 12.9836 11.8633C13.1217 11.8633 13.2336 11.9753 13.2336 12.1133ZM14.8461 9.3459C14.8952 9.23802 14.8618 9.11052 14.7661 9.04056C13.972 8.45977 13.3647 8.75105 12.8288 9.00805C12.427 9.20077 12.0475 9.38277 11.5434 9.28396C11.4474 9.26515 11.3493 9.30402 11.2923 9.38343C11.2353 9.4628 11.2298 9.56818 11.2782 9.65315C11.6158 10.2452 12.0852 10.6896 12.5998 10.9044C12.6463 10.9238 12.6908 10.9468 12.7336 10.9727V11.3204C12.7336 11.4585 12.8455 11.5704 12.9836 11.5704C13.1217 11.5704 13.2336 11.4585 13.2336 11.3204V10.9728C13.2764 10.9469 13.3209 10.9238 13.3673 10.9045C13.9711 10.6525 14.51 10.0844 14.8461 9.3459ZM13.1748 10.443C13.1088 10.4706 13.0449 10.5027 12.9837 10.5391C12.9225 10.5027 12.8586 10.4706 12.7925 10.443C12.4997 10.3208 12.2218 10.1002 11.984 9.80543C12.3946 9.77087 12.7346 9.60781 13.0451 9.4589C13.4966 9.2423 13.8365 9.07934 14.2957 9.33159C14.0125 9.86109 13.6117 10.2606 13.1748 10.443ZM2.97287 4.94155C2.97287 4.80349 3.08481 4.69155 3.22288 4.69155H7.23537C7.37344 4.69155 7.48537 4.80349 7.48537 4.94155C7.48537 5.07962 7.37344 5.19156 7.23537 5.19156H3.22288C3.08481 5.19156 2.97287 5.07962 2.97287 4.94155ZM2.97287 7.64659C2.97287 7.50852 3.08481 7.39659 3.22288 7.39659H7.23537C7.37344 7.39659 7.48537 7.50852 7.48537 7.64659C7.48537 7.78465 7.37344 7.89659 7.23537 7.89659H3.22288C3.08481 7.89659 2.97287 7.78465 2.97287 7.64659ZM2.97287 10.3516C2.97287 10.2135 3.08481 10.1016 3.22288 10.1016H8.82175C8.95981 10.1016 9.07175 10.2135 9.07175 10.3516C9.07175 10.4896 8.95981 10.6016 8.82175 10.6016H3.22288C3.08481 10.6016 2.97287 10.4896 2.97287 10.3516ZM8.82175 13.3066H3.22288C3.08481 13.3066 2.97287 13.1946 2.97287 13.0566C2.97287 12.9185 3.08481 12.8066 3.22288 12.8066H8.82175C8.95981 12.8066 9.07175 12.9185 9.07175 13.0566C9.07175 13.1946 8.95981 13.3066 8.82175 13.3066Z" stroke="currentColor" stroke-width="0.4" mask="url(#path-1-outside-1_2947_11608)"/>
|
8
|
+
</svg>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.4419 2.23255H13.711C13.5824 1.60233 13.2399 1.03591 12.7417 0.629114C12.2434 0.222317 11.62 0.00012207 10.9767 0.00012207C10.3335 0.00012207 9.71005 0.222317 9.2118 0.629114C8.71356 1.03591 8.37113 1.60233 8.24246 2.23255H0.55814C0.410112 2.23255 0.268147 2.29136 0.163475 2.39603C0.0588038 2.5007 0 2.64267 0 2.79069C0 2.93872 0.0588038 3.08069 0.163475 3.18536C0.268147 3.29003 0.410112 3.34883 0.55814 3.34883H8.24246C8.37113 3.97905 8.71356 4.54548 9.2118 4.95227C9.71005 5.35907 10.3335 5.58127 10.9767 5.58127C11.62 5.58127 12.2434 5.35907 12.7417 4.95227C13.2399 4.54548 13.5824 3.97905 13.711 3.34883H15.4419C15.5899 3.34883 15.7319 3.29003 15.8365 3.18536C15.9412 3.08069 16 2.93872 16 2.79069C16 2.64267 15.9412 2.5007 15.8365 2.39603C15.7319 2.29136 15.5899 2.23255 15.4419 2.23255ZM10.9767 4.46511C10.6456 4.46511 10.3218 4.36691 10.0465 4.18292C9.77113 3.99893 9.55652 3.73743 9.42978 3.43147C9.30305 3.12551 9.26989 2.78884 9.3345 2.46403C9.39911 2.13923 9.55858 1.84087 9.79275 1.6067C10.0269 1.37253 10.3253 1.21306 10.6501 1.14845C10.9749 1.08384 11.3116 1.117 11.6175 1.24373C11.9235 1.37047 12.185 1.58508 12.369 1.86044C12.553 2.13579 12.6512 2.45953 12.6512 2.79069C12.6506 3.23461 12.474 3.66018 12.1601 3.97408C11.8462 4.28797 11.4207 4.46456 10.9767 4.46511ZM15.4419 7.44186H7.01336C6.88469 6.81164 6.54226 6.24521 6.04401 5.83842C5.54577 5.43162 4.92229 5.20942 4.27907 5.20942C3.63585 5.20942 3.01237 5.43162 2.51413 5.83842C2.01588 6.24521 1.67345 6.81164 1.54478 7.44186H0.55814C0.410112 7.44186 0.268147 7.50066 0.163475 7.60533C0.0588038 7.71 0 7.85197 0 8C0 8.14802 0.0588038 8.28999 0.163475 8.39466C0.268147 8.49933 0.410112 8.55814 0.55814 8.55814H1.54478C1.67345 9.18836 2.01588 9.75478 2.51413 10.1616C3.01237 10.5684 3.63585 10.7906 4.27907 10.7906C4.92229 10.7906 5.54577 10.5684 6.04401 10.1616C6.54226 9.75478 6.88469 9.18836 7.01336 8.55814H15.4419C15.5899 8.55814 15.7319 8.49933 15.8365 8.39466C15.9412 8.28999 16 8.14802 16 8C16 7.85197 15.9412 7.71 15.8365 7.60533C15.7319 7.50066 15.5899 7.44186 15.4419 7.44186ZM4.27907 9.67441C3.9479 9.67441 3.62417 9.57621 3.34881 9.39222C3.07346 9.20824 2.85884 8.94673 2.73211 8.64077C2.60538 8.33481 2.57222 7.99814 2.63682 7.67333C2.70143 7.34853 2.86091 7.05017 3.09508 6.816C3.32925 6.58183 3.6276 6.42236 3.95241 6.35775C4.27721 6.29314 4.61388 6.3263 4.91984 6.45303C5.2258 6.57977 5.48731 6.79438 5.6713 7.06974C5.85529 7.3451 5.95349 7.66883 5.95349 8C5.95294 8.44391 5.77635 8.86948 5.46245 9.18338C5.14856 9.49727 4.72298 9.67386 4.27907 9.67441ZM13.711 12.6512H15.4419C15.5899 12.6512 15.7319 12.71 15.8365 12.8146C15.9412 12.9193 16 13.0613 16 13.2093C16 13.3573 15.9412 13.4993 15.8365 13.604C15.7319 13.7086 15.5899 13.7674 15.4419 13.7674H13.711C13.5824 14.3977 13.2399 14.9641 12.7417 15.3709C12.2434 15.7777 11.62 15.9999 10.9767 15.9999C10.3335 15.9999 9.71005 15.7777 9.2118 15.3709C8.71356 14.9641 8.37113 14.3977 8.24246 13.7674H0.55814C0.410112 13.7674 0.268147 13.7086 0.163475 13.604C0.0588038 13.4993 0 13.3573 0 13.2093C0 13.0613 0.0588038 12.9193 0.163475 12.8146C0.268147 12.71 0.410112 12.6512 0.55814 12.6512H8.24246C8.37113 12.0209 8.71356 11.4545 9.2118 11.0477C9.71005 10.6409 10.3335 10.4187 10.9767 10.4187C11.62 10.4187 12.2434 10.6409 12.7417 11.0477C13.2399 11.4545 13.5824 12.0209 13.711 12.6512ZM10.0465 14.6015C10.3218 14.7855 10.6456 14.8837 10.9767 14.8837C11.4207 14.8832 11.8462 14.7066 12.1601 14.3927C12.474 14.0788 12.6506 13.6532 12.6512 13.2093C12.6512 12.8781 12.553 12.5544 12.369 12.279C12.185 12.0037 11.9235 11.7891 11.6175 11.6623C11.3116 11.5356 10.9749 11.5024 10.6501 11.5671C10.3253 11.6317 10.0269 11.7911 9.79275 12.0253C9.55858 12.2595 9.39911 12.5578 9.3345 12.8826C9.26989 13.2074 9.30305 13.5441 9.42978 13.8501C9.55652 14.156 9.77113 14.4175 10.0465 14.6015Z" fill="currentColor"/>
|
3
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.4419 2.23255H13.711C13.5824 1.60233 13.2399 1.03591 12.7417 0.629114C12.2434 0.222317 11.62 0.00012207 10.9767 0.00012207C10.3335 0.00012207 9.71005 0.222317 9.2118 0.629114C8.71356 1.03591 8.37113 1.60233 8.24246 2.23255H0.55814C0.410112 2.23255 0.268147 2.29136 0.163475 2.39603C0.0588038 2.5007 0 2.64267 0 2.79069C0 2.93872 0.0588038 3.08069 0.163475 3.18536C0.268147 3.29003 0.410112 3.34883 0.55814 3.34883H8.24246C8.37113 3.97905 8.71356 4.54548 9.2118 4.95227C9.71005 5.35907 10.3335 5.58127 10.9767 5.58127C11.62 5.58127 12.2434 5.35907 12.7417 4.95227C13.2399 4.54548 13.5824 3.97905 13.711 3.34883H15.4419C15.5899 3.34883 15.7319 3.29003 15.8365 3.18536C15.9412 3.08069 16 2.93872 16 2.79069C16 2.64267 15.9412 2.5007 15.8365 2.39603C15.7319 2.29136 15.5899 2.23255 15.4419 2.23255ZM10.9767 4.46511C10.6456 4.46511 10.3218 4.36691 10.0465 4.18292C9.77113 3.99893 9.55652 3.73743 9.42978 3.43147C9.30305 3.12551 9.26989 2.78884 9.3345 2.46403C9.39911 2.13923 9.55858 1.84087 9.79275 1.6067C10.0269 1.37253 10.3253 1.21306 10.6501 1.14845C10.9749 1.08384 11.3116 1.117 11.6175 1.24373C11.9235 1.37047 12.185 1.58508 12.369 1.86044C12.553 2.13579 12.6512 2.45953 12.6512 2.79069C12.6506 3.23461 12.474 3.66018 12.1601 3.97408C11.8462 4.28797 11.4207 4.46456 10.9767 4.46511ZM15.4419 7.44186H7.01336C6.88469 6.81164 6.54226 6.24521 6.04401 5.83842C5.54577 5.43162 4.92229 5.20942 4.27907 5.20942C3.63585 5.20942 3.01237 5.43162 2.51413 5.83842C2.01588 6.24521 1.67345 6.81164 1.54478 7.44186H0.55814C0.410112 7.44186 0.268147 7.50066 0.163475 7.60533C0.0588038 7.71 0 7.85197 0 8C0 8.14802 0.0588038 8.28999 0.163475 8.39466C0.268147 8.49933 0.410112 8.55814 0.55814 8.55814H1.54478C1.67345 9.18836 2.01588 9.75478 2.51413 10.1616C3.01237 10.5684 3.63585 10.7906 4.27907 10.7906C4.92229 10.7906 5.54577 10.5684 6.04401 10.1616C6.54226 9.75478 6.88469 9.18836 7.01336 8.55814H15.4419C15.5899 8.55814 15.7319 8.49933 15.8365 8.39466C15.9412 8.28999 16 8.14802 16 8C16 7.85197 15.9412 7.71 15.8365 7.60533C15.7319 7.50066 15.5899 7.44186 15.4419 7.44186ZM4.27907 9.67441C3.9479 9.67441 3.62417 9.57621 3.34881 9.39222C3.07346 9.20824 2.85884 8.94673 2.73211 8.64077C2.60538 8.33481 2.57222 7.99814 2.63682 7.67333C2.70143 7.34853 2.86091 7.05017 3.09508 6.816C3.32925 6.58183 3.6276 6.42236 3.95241 6.35775C4.27721 6.29314 4.61388 6.3263 4.91984 6.45303C5.2258 6.57977 5.48731 6.79438 5.6713 7.06974C5.85529 7.3451 5.95349 7.66883 5.95349 8C5.95294 8.44391 5.77635 8.86948 5.46245 9.18338C5.14856 9.49727 4.72298 9.67386 4.27907 9.67441ZM13.711 12.6512H15.4419C15.5899 12.6512 15.7319 12.71 15.8365 12.8146C15.9412 12.9193 16 13.0613 16 13.2093C16 13.3573 15.9412 13.4993 15.8365 13.604C15.7319 13.7086 15.5899 13.7674 15.4419 13.7674H13.711C13.5824 14.3977 13.2399 14.9641 12.7417 15.3709C12.2434 15.7777 11.62 15.9999 10.9767 15.9999C10.3335 15.9999 9.71005 15.7777 9.2118 15.3709C8.71356 14.9641 8.37113 14.3977 8.24246 13.7674H0.55814C0.410112 13.7674 0.268147 13.7086 0.163475 13.604C0.0588038 13.4993 0 13.3573 0 13.2093C0 13.0613 0.0588038 12.9193 0.163475 12.8146C0.268147 12.71 0.410112 12.6512 0.55814 12.6512H8.24246C8.37113 12.0209 8.71356 11.4545 9.2118 11.0477C9.71005 10.6409 10.3335 10.4187 10.9767 10.4187C11.62 10.4187 12.2434 10.6409 12.7417 11.0477C13.2399 11.4545 13.5824 12.0209 13.711 12.6512ZM10.0465 14.6015C10.3218 14.7855 10.6456 14.8837 10.9767 14.8837C11.4207 14.8832 11.8462 14.7066 12.1601 14.3927C12.474 14.0788 12.6506 13.6532 12.6512 13.2093C12.6512 12.8781 12.553 12.5544 12.369 12.279C12.185 12.0037 11.9235 11.7891 11.6175 11.6623C11.3116 11.5356 10.9749 11.5024 10.6501 11.5671C10.3253 11.6317 10.0269 11.7911 9.79275 12.0253C9.55858 12.2595 9.39911 12.5578 9.3345 12.8826C9.26989 13.2074 9.30305 13.5441 9.42978 13.8501C9.55652 14.156 9.77113 14.4175 10.0465 14.6015Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -1,8 +1,8 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M14.7329 7.06677C14.7328 6.82169 14.8393 6.58413 15.0178 6.43128L16 5.59038L15.9289 5.30868C15.8429 4.96829 15.7315 4.63183 15.5977 4.30819C15.4637 3.98519 15.3045 3.66854 15.1246 3.36707L14.9757 3.11758L13.6905 3.21716C13.4556 3.23531 13.2121 3.14232 13.0379 2.96752C12.8645 2.79431 12.7719 2.551 12.79 2.31669L12.8899 1.02759L12.6404 0.878718C12.339 0.698823 12.0224 0.539638 11.6988 0.405412C11.3756 0.271717 11.0391 0.160356 10.6987 0.074423L10.417 0.0032959L9.5787 0.982457C9.42585 1.16095 9.18698 1.2674 8.93946 1.2674C8.93793 1.2674 8.46853 1.26659 8.46853 1.26659V5.95423H8.93709C9.54855 5.95423 10.046 6.45168 10.046 7.06315C10.046 7.67462 9.54855 8.17207 8.93709 8.17207H8.46903L8.46428 12.8591L8.93349 12.8589C9.1788 12.8589 9.41623 12.9654 9.56898 13.1438L10.4099 14.126L10.6916 14.0549C11.0319 13.969 11.3683 13.8576 11.6921 13.7237C12.0151 13.5897 12.3318 13.4305 12.6332 13.2506L12.8827 13.1017L12.7831 11.8165C12.765 11.5817 12.858 11.3381 13.0328 11.1639C13.206 10.9905 13.4491 10.8979 13.6836 10.916L14.9727 11.0159L15.1216 10.7664C15.3015 10.465 15.4607 10.1483 15.5949 9.82477C15.7286 9.50159 15.8399 9.16513 15.9259 8.82477L15.997 8.54307L15.0178 7.7047C14.8389 7.55161 14.7324 7.31352 14.7329 7.06677ZM10.9831 7.06315C10.9831 6.09617 10.3087 5.28369 9.40564 5.07125V4.11689C10.8287 4.34236 11.9202 5.57763 11.9202 7.06315C11.9202 8.54917 10.828 9.78475 9.40424 10.0096L9.40521 9.05518C10.3086 8.84295 10.9831 8.03035 10.9831 7.06315ZM14.7291 9.4662C14.6488 9.65962 14.5582 9.85044 14.4585 10.0362L13.756 9.98173C13.2446 9.94209 12.7395 10.1316 12.3705 10.5008C11.9992 10.8708 11.8091 11.3767 11.8487 11.8889L11.9029 12.5876C11.7172 12.6873 11.5265 12.7779 11.3334 12.858C11.1399 12.938 10.9409 13.0088 10.739 13.0696L10.2808 12.5344C10.0497 12.2645 9.74288 12.0744 9.40221 11.9832L9.40324 10.9556C11.3459 10.7243 12.8573 9.06705 12.8573 7.06315C12.8573 5.06007 11.3472 3.40331 9.40561 3.171V2.14432C9.74922 2.05358 10.0584 1.86303 10.2905 1.59193L10.7462 1.05964C10.948 1.12043 11.1469 1.19121 11.3401 1.27112C11.5335 1.35137 11.7243 1.44199 11.9101 1.54173L11.8556 2.24425C11.816 2.75551 12.0055 3.26074 12.3747 3.62968C12.7446 4.001 13.2506 4.19127 13.7628 4.15147L14.4614 4.09734C14.5612 4.28307 14.6517 4.47377 14.7318 4.66682C14.8119 4.8603 14.8827 5.05932 14.9435 5.2612L14.4083 5.71945C14.0188 6.05294 13.7955 6.54418 13.7957 7.06615C13.7947 7.59028 14.018 8.08251 14.4082 8.41659L14.9405 8.87234C14.8798 9.07414 14.809 9.27306 14.7291 9.4662Z" fill="currentColor"/>
|
3
|
-
<path d="M5.95393 8.93685C5.95393 8.32538 6.45139 7.82793 7.06285 7.82793H7.53141V3.14094L7.0627 3.1411C6.81617 3.1411 6.58605 3.03723 6.43099 2.85615L5.59008 1.87399L5.30839 1.94512C4.96809 2.03102 4.63163 2.14238 4.30789 2.27627C3.98483 2.4103 3.66818 2.56949 3.36674 2.74938L3.11725 2.89829L3.21684 4.18351C3.23502 4.41826 3.14199 4.66194 2.96719 4.83609C2.79398 5.00946 2.55086 5.10207 2.31633 5.08399L1.02723 4.98409L0.878327 5.23358C0.698432 5.53502 0.539279 5.85167 0.405053 6.17523C0.271389 6.49841 0.160059 6.83486 0.0740946 7.17522L0.00296753 7.45692L0.982191 8.2953C1.16102 8.44842 1.26754 8.68651 1.26711 8.93325C1.2672 9.17834 1.16068 9.4159 0.98216 9.56874L0 10.4096L0.0711271 10.6913C0.157092 11.0317 0.268452 11.3682 0.402304 11.6918C0.536311 12.0148 0.695465 12.3315 0.875391 12.6329L1.02427 12.8824L2.30952 12.7828C2.54421 12.7648 2.78795 12.8577 2.9621 13.0325C3.13546 13.2057 3.22814 13.449 3.20996 13.6833L3.11007 14.9724L3.35956 15.1213C3.661 15.3012 3.97765 15.4604 4.3012 15.5946C4.62442 15.7282 4.96087 15.8396 5.30123 15.9255L5.58293 15.9967L6.42127 15.0175C6.57412 14.839 6.81158 14.7326 7.05673 14.7326C7.05823 14.7326 7.52716 14.7334 7.52716 14.7334L7.53191 10.0457H7.06288C6.45142 10.0458 5.95393 9.54828 5.95393 8.93685ZM5.01682 8.93685C5.01682 9.9037 5.69098 10.7161 6.59386 10.9287L6.59289 11.8829C5.17047 11.6568 4.0797 10.4219 4.0797 8.93685C4.0797 7.45133 5.17119 6.21609 6.5943 5.99059V6.94494C5.69123 7.15736 5.01682 7.96984 5.01682 8.93685ZM5.70941 14.4081L5.25369 14.9404C5.05187 14.8796 4.85298 14.8088 4.65981 14.7289C4.46639 14.6486 4.27556 14.558 4.08982 14.4583L4.14427 13.7557C4.18391 13.2445 3.99446 12.7393 3.6252 12.3703C3.25526 11.999 2.74931 11.8089 2.23711 11.8485L1.53846 11.9027C1.43872 11.7169 1.34817 11.5262 1.26807 11.3332C1.18804 11.1397 1.1172 10.9407 1.05638 10.7388L1.59163 10.2805C1.98116 9.94706 2.20444 9.45582 2.20422 8.93385C2.20516 8.40972 1.98187 7.91748 1.59166 7.5834L1.05938 7.12765C1.12017 6.92586 1.19098 6.72694 1.27088 6.53377C1.35113 6.34035 1.44175 6.14952 1.54149 5.96378L2.24402 6.01823C2.75528 6.05787 3.26051 5.86835 3.62945 5.49913C4.00073 5.12919 4.19091 4.62324 4.15123 4.11104L4.0971 3.41239C4.28277 3.31268 4.47351 3.2221 4.66655 3.142C4.8601 3.06197 5.05911 2.99113 5.26094 2.93034L5.71922 3.46559C5.94997 3.7351 6.2555 3.92503 6.59436 4.0164V5.04463C4.65281 5.27694 3.14265 6.9337 3.14265 8.93678C3.14265 10.9391 4.65159 12.5953 6.59198 12.8287L6.59095 13.856C6.24909 13.947 5.94122 14.1373 5.70941 14.4081Z" fill="currentColor"/>
|
4
|
-
<path d="M6.5943 0.798859H7.53141V1.73597H6.5943V0.798859Z" fill="currentColor"/>
|
5
|
-
<path d="M4.72006 0.00326538H5.65718V0.940381H4.72006V0.00326538Z" fill="currentColor"/>
|
6
|
-
<path d="M8.46852 14.2646H9.40564V15.2017H8.46852V14.2646Z" fill="currentColor"/>
|
7
|
-
<path d="M10.3428 15.0596H11.2799V15.9967H10.3428V15.0596Z" fill="currentColor"/>
|
8
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M14.7329 7.06677C14.7328 6.82169 14.8393 6.58413 15.0178 6.43128L16 5.59038L15.9289 5.30868C15.8429 4.96829 15.7315 4.63183 15.5977 4.30819C15.4637 3.98519 15.3045 3.66854 15.1246 3.36707L14.9757 3.11758L13.6905 3.21716C13.4556 3.23531 13.2121 3.14232 13.0379 2.96752C12.8645 2.79431 12.7719 2.551 12.79 2.31669L12.8899 1.02759L12.6404 0.878718C12.339 0.698823 12.0224 0.539638 11.6988 0.405412C11.3756 0.271717 11.0391 0.160356 10.6987 0.074423L10.417 0.0032959L9.5787 0.982457C9.42585 1.16095 9.18698 1.2674 8.93946 1.2674C8.93793 1.2674 8.46853 1.26659 8.46853 1.26659V5.95423H8.93709C9.54855 5.95423 10.046 6.45168 10.046 7.06315C10.046 7.67462 9.54855 8.17207 8.93709 8.17207H8.46903L8.46428 12.8591L8.93349 12.8589C9.1788 12.8589 9.41623 12.9654 9.56898 13.1438L10.4099 14.126L10.6916 14.0549C11.0319 13.969 11.3683 13.8576 11.6921 13.7237C12.0151 13.5897 12.3318 13.4305 12.6332 13.2506L12.8827 13.1017L12.7831 11.8165C12.765 11.5817 12.858 11.3381 13.0328 11.1639C13.206 10.9905 13.4491 10.8979 13.6836 10.916L14.9727 11.0159L15.1216 10.7664C15.3015 10.465 15.4607 10.1483 15.5949 9.82477C15.7286 9.50159 15.8399 9.16513 15.9259 8.82477L15.997 8.54307L15.0178 7.7047C14.8389 7.55161 14.7324 7.31352 14.7329 7.06677ZM10.9831 7.06315C10.9831 6.09617 10.3087 5.28369 9.40564 5.07125V4.11689C10.8287 4.34236 11.9202 5.57763 11.9202 7.06315C11.9202 8.54917 10.828 9.78475 9.40424 10.0096L9.40521 9.05518C10.3086 8.84295 10.9831 8.03035 10.9831 7.06315ZM14.7291 9.4662C14.6488 9.65962 14.5582 9.85044 14.4585 10.0362L13.756 9.98173C13.2446 9.94209 12.7395 10.1316 12.3705 10.5008C11.9992 10.8708 11.8091 11.3767 11.8487 11.8889L11.9029 12.5876C11.7172 12.6873 11.5265 12.7779 11.3334 12.858C11.1399 12.938 10.9409 13.0088 10.739 13.0696L10.2808 12.5344C10.0497 12.2645 9.74288 12.0744 9.40221 11.9832L9.40324 10.9556C11.3459 10.7243 12.8573 9.06705 12.8573 7.06315C12.8573 5.06007 11.3472 3.40331 9.40561 3.171V2.14432C9.74922 2.05358 10.0584 1.86303 10.2905 1.59193L10.7462 1.05964C10.948 1.12043 11.1469 1.19121 11.3401 1.27112C11.5335 1.35137 11.7243 1.44199 11.9101 1.54173L11.8556 2.24425C11.816 2.75551 12.0055 3.26074 12.3747 3.62968C12.7446 4.001 13.2506 4.19127 13.7628 4.15147L14.4614 4.09734C14.5612 4.28307 14.6517 4.47377 14.7318 4.66682C14.8119 4.8603 14.8827 5.05932 14.9435 5.2612L14.4083 5.71945C14.0188 6.05294 13.7955 6.54418 13.7957 7.06615C13.7947 7.59028 14.018 8.08251 14.4082 8.41659L14.9405 8.87234C14.8798 9.07414 14.809 9.27306 14.7291 9.4662Z" fill="currentColor"/>
|
3
|
+
<path d="M5.95393 8.93685C5.95393 8.32538 6.45139 7.82793 7.06285 7.82793H7.53141V3.14094L7.0627 3.1411C6.81617 3.1411 6.58605 3.03723 6.43099 2.85615L5.59008 1.87399L5.30839 1.94512C4.96809 2.03102 4.63163 2.14238 4.30789 2.27627C3.98483 2.4103 3.66818 2.56949 3.36674 2.74938L3.11725 2.89829L3.21684 4.18351C3.23502 4.41826 3.14199 4.66194 2.96719 4.83609C2.79398 5.00946 2.55086 5.10207 2.31633 5.08399L1.02723 4.98409L0.878327 5.23358C0.698432 5.53502 0.539279 5.85167 0.405053 6.17523C0.271389 6.49841 0.160059 6.83486 0.0740946 7.17522L0.00296753 7.45692L0.982191 8.2953C1.16102 8.44842 1.26754 8.68651 1.26711 8.93325C1.2672 9.17834 1.16068 9.4159 0.98216 9.56874L0 10.4096L0.0711271 10.6913C0.157092 11.0317 0.268452 11.3682 0.402304 11.6918C0.536311 12.0148 0.695465 12.3315 0.875391 12.6329L1.02427 12.8824L2.30952 12.7828C2.54421 12.7648 2.78795 12.8577 2.9621 13.0325C3.13546 13.2057 3.22814 13.449 3.20996 13.6833L3.11007 14.9724L3.35956 15.1213C3.661 15.3012 3.97765 15.4604 4.3012 15.5946C4.62442 15.7282 4.96087 15.8396 5.30123 15.9255L5.58293 15.9967L6.42127 15.0175C6.57412 14.839 6.81158 14.7326 7.05673 14.7326C7.05823 14.7326 7.52716 14.7334 7.52716 14.7334L7.53191 10.0457H7.06288C6.45142 10.0458 5.95393 9.54828 5.95393 8.93685ZM5.01682 8.93685C5.01682 9.9037 5.69098 10.7161 6.59386 10.9287L6.59289 11.8829C5.17047 11.6568 4.0797 10.4219 4.0797 8.93685C4.0797 7.45133 5.17119 6.21609 6.5943 5.99059V6.94494C5.69123 7.15736 5.01682 7.96984 5.01682 8.93685ZM5.70941 14.4081L5.25369 14.9404C5.05187 14.8796 4.85298 14.8088 4.65981 14.7289C4.46639 14.6486 4.27556 14.558 4.08982 14.4583L4.14427 13.7557C4.18391 13.2445 3.99446 12.7393 3.6252 12.3703C3.25526 11.999 2.74931 11.8089 2.23711 11.8485L1.53846 11.9027C1.43872 11.7169 1.34817 11.5262 1.26807 11.3332C1.18804 11.1397 1.1172 10.9407 1.05638 10.7388L1.59163 10.2805C1.98116 9.94706 2.20444 9.45582 2.20422 8.93385C2.20516 8.40972 1.98187 7.91748 1.59166 7.5834L1.05938 7.12765C1.12017 6.92586 1.19098 6.72694 1.27088 6.53377C1.35113 6.34035 1.44175 6.14952 1.54149 5.96378L2.24402 6.01823C2.75528 6.05787 3.26051 5.86835 3.62945 5.49913C4.00073 5.12919 4.19091 4.62324 4.15123 4.11104L4.0971 3.41239C4.28277 3.31268 4.47351 3.2221 4.66655 3.142C4.8601 3.06197 5.05911 2.99113 5.26094 2.93034L5.71922 3.46559C5.94997 3.7351 6.2555 3.92503 6.59436 4.0164V5.04463C4.65281 5.27694 3.14265 6.9337 3.14265 8.93678C3.14265 10.9391 4.65159 12.5953 6.59198 12.8287L6.59095 13.856C6.24909 13.947 5.94122 14.1373 5.70941 14.4081Z" fill="currentColor"/>
|
4
|
+
<path d="M6.5943 0.798859H7.53141V1.73597H6.5943V0.798859Z" fill="currentColor"/>
|
5
|
+
<path d="M4.72006 0.00326538H5.65718V0.940381H4.72006V0.00326538Z" fill="currentColor"/>
|
6
|
+
<path d="M8.46852 14.2646H9.40564V15.2017H8.46852V14.2646Z" fill="currentColor"/>
|
7
|
+
<path d="M10.3428 15.0596H11.2799V15.9967H10.3428V15.0596Z" fill="currentColor"/>
|
8
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.74 0C11.0345 0 11.2733 0.238781 11.2733 0.533333V1.86667H11.86C12.3274 1.86667 12.7651 1.88136 13.1663 1.93801C14.2148 2.05486 15.0254 2.37818 15.5282 3.14174C16.0008 3.85935 16.1266 4.8662 16.1266 6.13333V9.86667C16.1266 11.1338 16.0008 12.1407 15.5282 12.8583C15.0254 13.6218 14.2148 13.9451 13.1664 14.062C12.7651 14.1186 12.3274 14.1333 11.86 14.1333H11.2733V15.4667C11.2733 15.7612 11.0345 16 10.74 16C10.4454 16 10.2066 15.7612 10.2066 15.4667V0.533333C10.2066 0.238781 10.4454 0 10.74 0ZM11.2733 13.0667H11.86C12.3151 13.0667 12.6959 13.0517 13.024 13.0048L13.041 13.0027C13.9522 12.9022 14.3855 12.654 14.6374 12.2716C14.9208 11.8412 15.06 11.1233 15.06 9.86667V6.13333C15.06 4.87673 14.9208 4.15879 14.6374 3.72839C14.3855 3.346 13.9522 3.09779 13.041 2.99732L13.024 2.99517C12.6959 2.94829 12.3151 2.93333 11.86 2.93333H11.2733V13.0667ZM5.13996 2.93333C4.68488 2.93333 4.30408 2.94829 3.97594 2.99517L3.95897 2.99732C3.04776 3.09779 2.61442 3.346 2.36259 3.7284C2.07916 4.15879 1.93996 4.87674 1.93996 6.13333V9.86667C1.93996 11.1233 2.07916 11.8412 2.36259 12.2716C2.61442 12.654 3.04776 12.9022 3.95897 13.0027L3.97594 13.0048C4.30408 13.0517 4.68488 13.0667 5.13996 13.0667H7.76825C8.0628 13.0667 8.30158 13.3054 8.30158 13.6C8.30158 13.8946 8.0628 14.1333 7.76825 14.1333H5.13996C4.67248 14.1333 4.23486 14.1186 3.83359 14.062C2.78517 13.9451 1.97458 13.6218 1.47175 12.8583C0.999169 12.1407 0.873291 11.1338 0.873291 9.86667V6.13333C0.873291 4.86619 0.999169 3.85934 1.47175 3.14173C1.97458 2.37818 2.78519 2.05486 3.83362 1.93801C4.23489 1.88136 4.67249 1.86667 5.13996 1.86667H7.72345C8.018 1.86667 8.25678 2.10545 8.25678 2.4C8.25678 2.69455 8.018 2.93333 7.72345 2.93333H5.13996Z" fill="currentColor"/>
|
3
|
-
<path d="M5.34822 6.2376V7.3736H7.18022V8.4296H5.34822V9.6616H7.42022V10.7576H3.98022V5.1416H7.42022V6.2376H5.34822Z" fill="currentColor"/>
|
4
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.74 0C11.0345 0 11.2733 0.238781 11.2733 0.533333V1.86667H11.86C12.3274 1.86667 12.7651 1.88136 13.1663 1.93801C14.2148 2.05486 15.0254 2.37818 15.5282 3.14174C16.0008 3.85935 16.1266 4.8662 16.1266 6.13333V9.86667C16.1266 11.1338 16.0008 12.1407 15.5282 12.8583C15.0254 13.6218 14.2148 13.9451 13.1664 14.062C12.7651 14.1186 12.3274 14.1333 11.86 14.1333H11.2733V15.4667C11.2733 15.7612 11.0345 16 10.74 16C10.4454 16 10.2066 15.7612 10.2066 15.4667V0.533333C10.2066 0.238781 10.4454 0 10.74 0ZM11.2733 13.0667H11.86C12.3151 13.0667 12.6959 13.0517 13.024 13.0048L13.041 13.0027C13.9522 12.9022 14.3855 12.654 14.6374 12.2716C14.9208 11.8412 15.06 11.1233 15.06 9.86667V6.13333C15.06 4.87673 14.9208 4.15879 14.6374 3.72839C14.3855 3.346 13.9522 3.09779 13.041 2.99732L13.024 2.99517C12.6959 2.94829 12.3151 2.93333 11.86 2.93333H11.2733V13.0667ZM5.13996 2.93333C4.68488 2.93333 4.30408 2.94829 3.97594 2.99517L3.95897 2.99732C3.04776 3.09779 2.61442 3.346 2.36259 3.7284C2.07916 4.15879 1.93996 4.87674 1.93996 6.13333V9.86667C1.93996 11.1233 2.07916 11.8412 2.36259 12.2716C2.61442 12.654 3.04776 12.9022 3.95897 13.0027L3.97594 13.0048C4.30408 13.0517 4.68488 13.0667 5.13996 13.0667H7.76825C8.0628 13.0667 8.30158 13.3054 8.30158 13.6C8.30158 13.8946 8.0628 14.1333 7.76825 14.1333H5.13996C4.67248 14.1333 4.23486 14.1186 3.83359 14.062C2.78517 13.9451 1.97458 13.6218 1.47175 12.8583C0.999169 12.1407 0.873291 11.1338 0.873291 9.86667V6.13333C0.873291 4.86619 0.999169 3.85934 1.47175 3.14173C1.97458 2.37818 2.78519 2.05486 3.83362 1.93801C4.23489 1.88136 4.67249 1.86667 5.13996 1.86667H7.72345C8.018 1.86667 8.25678 2.10545 8.25678 2.4C8.25678 2.69455 8.018 2.93333 7.72345 2.93333H5.13996Z" fill="currentColor"/>
|
3
|
+
<path d="M5.34822 6.2376V7.3736H7.18022V8.4296H5.34822V9.6616H7.42022V10.7576H3.98022V5.1416H7.42022V6.2376H5.34822Z" fill="currentColor"/>
|
4
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.25996 0C4.96541 0 4.72663 0.238781 4.72663 0.533333V1.86667H4.13996C3.67249 1.86667 4.23484 1.88136 3.83358 1.93801C2.78514 2.05486 1.97454 2.37818 1.47172 3.14174C0.999156 3.85935 0.873291 4.8662 0.873291 6.13333V9.86667C0.873291 11.1338 0.999156 12.1407 1.47172 12.8583C1.97454 13.6218 2.78513 13.9451 3.83355 14.062C4.23482 14.1186 3.67248 14.1333 4.13996 14.1333H4.72663V15.4667C4.72663 15.7612 4.96541 16 5.25996 16C5.55451 16 5.7933 15.7612 5.7933 15.4667V0.533333C5.7933 0.238781 5.55451 0 5.25996 0ZM4.72663 13.0667H4.13996C3.68488 13.0667 4.30404 13.0517 3.97589 13.0048L3.95892 13.0027C3.04771 12.9022 2.61439 12.654 2.36257 12.2716C2.07915 11.8412 1.93996 11.1233 1.93996 9.86667V6.13333C1.93996 4.87673 2.07915 4.15879 2.36257 3.72839C2.61439 3.346 3.04771 3.09779 3.95892 2.99732L3.97589 2.99517C4.30404 2.94829 3.68488 2.93333 4.13996 2.93333H4.72663V13.0667ZM11.86 2.93333C12.315 2.93333 12.6958 2.94829 13.024 2.99517L13.041 2.99732C13.9522 3.09779 14.3855 3.346 14.6373 3.7284C14.9208 4.15879 15.06 4.87674 15.06 6.13333V9.86667C15.06 11.1233 14.9208 11.8412 14.6373 12.2716C14.3855 12.654 13.9522 12.9022 13.041 13.0027L13.024 13.0048C12.6958 13.0517 12.315 13.0667 11.86 13.0667H8.23168C7.93713 13.0667 7.69835 13.3054 7.69835 13.6C7.69835 13.8946 7.93713 14.1333 8.23168 14.1333H11.86C12.3275 14.1333 12.7651 14.1186 13.1663 14.062C14.2148 13.9451 15.0254 13.6218 15.5282 12.8583C16.0008 12.1407 16.1266 11.1338 16.1266 9.86667V6.13333C16.1266 4.86619 16.0008 3.85934 15.5282 3.14173C15.0253 2.37818 14.2147 2.05486 13.1663 1.93801C12.765 1.88136 12.3274 1.86667 11.86 1.86667H8.27648C7.98193 1.86667 7.74315 2.10545 7.74315 2.4C7.74315 2.69455 7.98193 2.93333 8.27648 2.93333H11.86Z" fill="currentColor"/>
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.2976 7.95194C10.4283 7.71394 10.4936 7.4526 10.4936 7.16794C10.4936 6.85994 10.4259 6.58694 10.2906 6.34894C10.1553 6.11094 9.95225 5.92427 9.68159 5.78894C9.41092 5.6536 9.07959 5.58594 8.68759 5.58594H6.74859V10.4999H7.94559V8.73594H8.68759C9.08892 8.73594 9.42492 8.6636 9.69559 8.51894C9.96625 8.37427 10.1669 8.18527 10.2976 7.95194ZM9.10759 7.62294C8.99559 7.73027 8.82525 7.78394 8.59659 7.78394H7.94559V6.55194H8.59659C8.82525 6.55194 8.99559 6.6056 9.10759 6.71294C9.21959 6.82027 9.27559 6.97194 9.27559 7.16794C9.27559 7.36394 9.21959 7.5156 9.10759 7.62294ZM12.3138 7.53894V6.54494H14.1268V5.58594H11.1168V10.4999H14.1268V9.54094H12.3138V8.46294H13.9168V7.53894H12.3138Z" fill="currentColor"/>
|
4
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.25996 0C4.96541 0 4.72663 0.238781 4.72663 0.533333V1.86667H4.13996C3.67249 1.86667 4.23484 1.88136 3.83358 1.93801C2.78514 2.05486 1.97454 2.37818 1.47172 3.14174C0.999156 3.85935 0.873291 4.8662 0.873291 6.13333V9.86667C0.873291 11.1338 0.999156 12.1407 1.47172 12.8583C1.97454 13.6218 2.78513 13.9451 3.83355 14.062C4.23482 14.1186 3.67248 14.1333 4.13996 14.1333H4.72663V15.4667C4.72663 15.7612 4.96541 16 5.25996 16C5.55451 16 5.7933 15.7612 5.7933 15.4667V0.533333C5.7933 0.238781 5.55451 0 5.25996 0ZM4.72663 13.0667H4.13996C3.68488 13.0667 4.30404 13.0517 3.97589 13.0048L3.95892 13.0027C3.04771 12.9022 2.61439 12.654 2.36257 12.2716C2.07915 11.8412 1.93996 11.1233 1.93996 9.86667V6.13333C1.93996 4.87673 2.07915 4.15879 2.36257 3.72839C2.61439 3.346 3.04771 3.09779 3.95892 2.99732L3.97589 2.99517C4.30404 2.94829 3.68488 2.93333 4.13996 2.93333H4.72663V13.0667ZM11.86 2.93333C12.315 2.93333 12.6958 2.94829 13.024 2.99517L13.041 2.99732C13.9522 3.09779 14.3855 3.346 14.6373 3.7284C14.9208 4.15879 15.06 4.87674 15.06 6.13333V9.86667C15.06 11.1233 14.9208 11.8412 14.6373 12.2716C14.3855 12.654 13.9522 12.9022 13.041 13.0027L13.024 13.0048C12.6958 13.0517 12.315 13.0667 11.86 13.0667H8.23168C7.93713 13.0667 7.69835 13.3054 7.69835 13.6C7.69835 13.8946 7.93713 14.1333 8.23168 14.1333H11.86C12.3275 14.1333 12.7651 14.1186 13.1663 14.062C14.2148 13.9451 15.0254 13.6218 15.5282 12.8583C16.0008 12.1407 16.1266 11.1338 16.1266 9.86667V6.13333C16.1266 4.86619 16.0008 3.85934 15.5282 3.14173C15.0253 2.37818 14.2147 2.05486 13.1663 1.93801C12.765 1.88136 12.3274 1.86667 11.86 1.86667H8.27648C7.98193 1.86667 7.74315 2.10545 7.74315 2.4C7.74315 2.69455 7.98193 2.93333 8.27648 2.93333H11.86Z" fill="currentColor"/>
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.2976 7.95194C10.4283 7.71394 10.4936 7.4526 10.4936 7.16794C10.4936 6.85994 10.4259 6.58694 10.2906 6.34894C10.1553 6.11094 9.95225 5.92427 9.68159 5.78894C9.41092 5.6536 9.07959 5.58594 8.68759 5.58594H6.74859V10.4999H7.94559V8.73594H8.68759C9.08892 8.73594 9.42492 8.6636 9.69559 8.51894C9.96625 8.37427 10.1669 8.18527 10.2976 7.95194ZM9.10759 7.62294C8.99559 7.73027 8.82525 7.78394 8.59659 7.78394H7.94559V6.55194H8.59659C8.82525 6.55194 8.99559 6.6056 9.10759 6.71294C9.21959 6.82027 9.27559 6.97194 9.27559 7.16794C9.27559 7.36394 9.21959 7.5156 9.10759 7.62294ZM12.3138 7.53894V6.54494H14.1268V5.58594H11.1168V10.4999H14.1268V9.54094H12.3138V8.46294H13.9168V7.53894H12.3138Z" fill="currentColor"/>
|
4
|
+
</svg>
|
@@ -1,10 +1,10 @@
|
|
1
|
-
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M12.6871 0.646463L12.5406 0.5H12.3335H3.11475C2.40704 0.5 1.8335 1.07355 1.8335 1.78125V16.2188C1.8335 16.9265 2.40704 17.5 3.11475 17.5H14.8854C15.5931 17.5 16.1666 16.9265 16.1666 16.2188V4.33344V4.12634L16.0202 3.9799L12.6871 0.646463Z" fill="white" stroke="currentColor"/>
|
3
|
-
<path d="M12.3335 1L15.6669 4.33344H13.1147C12.6832 4.33344 12.3335 3.98375 12.3335 3.55219V1Z" fill="currentColor"/>
|
4
|
-
<path d="M16.2188 8.26343H1.78125C1.07364 8.26343 0.5 8.83706 0.5 9.54468V13.9822C0.5 14.6898 1.07364 15.2634 1.78125 15.2634H16.2188C16.9264 15.2634 17.5 14.6898 17.5 13.9822V9.54468C17.5 8.83706 16.9264 8.26343 16.2188 8.26343Z" fill="white" stroke="currentColor"/>
|
5
|
-
<path d="M8.00338 4.22314H3.979C3.80641 4.22314 3.6665 4.36306 3.6665 4.53564V4.57721C3.6665 4.7498 3.80641 4.88971 3.979 4.88971H8.00338C8.17597 4.88971 8.31588 4.7498 8.31588 4.57721V4.53564C8.31588 4.36306 8.17597 4.22314 8.00338 4.22314Z" fill="currentColor"/>
|
6
|
-
<path d="M11.0206 5.49316H3.979C3.80641 5.49316 3.6665 5.63308 3.6665 5.80566V5.84723C3.6665 6.01982 3.80641 6.15973 3.979 6.15973H11.0206C11.1932 6.15973 11.3331 6.01982 11.3331 5.84723V5.80566C11.3331 5.63308 11.1932 5.49316 11.0206 5.49316Z" fill="currentColor"/>
|
7
|
-
<path d="M11.0206 6.76343H3.979C3.80641 6.76343 3.6665 6.90334 3.6665 7.07593V7.11749C3.6665 7.29008 3.80641 7.42999 3.979 7.42999H11.0206C11.1932 7.42999 11.3331 7.29008 11.3331 7.11749V7.07593C11.3331 6.90334 11.1932 6.76343 11.0206 6.76343Z" fill="currentColor"/>
|
8
|
-
<path d="M11.7289 10.8835C11.6529 10.7435 11.5429 10.6375 11.3989 10.5655C11.2589 10.4895 11.0929 10.4515 10.9009 10.4515C10.5689 10.4515 10.3029 10.5615 10.1029 10.7815C9.90291 10.9975 9.80291 11.2875 9.80291 11.6515C9.80291 12.0395 9.90691 12.3435 10.1149 12.5635C10.3269 12.7795 10.6169 12.8875 10.9849 12.8875C11.2369 12.8875 11.4489 12.8235 11.6209 12.6955C11.7969 12.5675 11.9249 12.3835 12.0049 12.1435H10.7029V11.3875H12.9349V12.3415C12.8589 12.5975 12.7289 12.8355 12.5449 13.0555C12.3649 13.2755 12.1349 13.4535 11.8549 13.5895C11.5749 13.7255 11.2589 13.7935 10.9069 13.7935C10.4909 13.7935 10.1189 13.7035 9.79091 13.5235C9.46691 13.3395 9.21291 13.0855 9.02891 12.7615C8.84891 12.4375 8.75891 12.0675 8.75891 11.6515C8.75891 11.2355 8.84891 10.8655 9.02891 10.5415C9.21291 10.2135 9.46691 9.95948 9.79091 9.77948C10.1149 9.59548 10.4849 9.50348 10.9009 9.50348C11.4049 9.50348 11.8289 9.62548 12.1729 9.86948C12.5209 10.1135 12.7509 10.4515 12.8629 10.8835H11.7289Z" fill="currentColor"/>
|
9
|
-
<path d="M6.76546 13.8055C6.45746 13.8055 6.18146 13.7555 5.93746 13.6555C5.69346 13.5555 5.49746 13.4075 5.34946 13.2115C5.20546 13.0155 5.12946 12.7795 5.12146 12.5035H6.21346C6.22946 12.6595 6.28346 12.7795 6.37546 12.8635C6.46746 12.9435 6.58746 12.9835 6.73546 12.9835C6.88746 12.9835 7.00746 12.9495 7.09546 12.8815C7.18346 12.8095 7.22746 12.7115 7.22746 12.5875C7.22746 12.4835 7.19146 12.3975 7.11946 12.3295C7.05146 12.2615 6.96546 12.2055 6.86146 12.1615C6.76146 12.1175 6.61746 12.0675 6.42946 12.0115C6.15746 11.9275 5.93546 11.8435 5.76346 11.7595C5.59146 11.6755 5.44346 11.5515 5.31946 11.3875C5.19546 11.2235 5.13346 11.0095 5.13346 10.7455C5.13346 10.3535 5.27546 10.0475 5.55946 9.82746C5.84346 9.60346 6.21346 9.49146 6.66946 9.49146C7.13346 9.49146 7.50746 9.60346 7.79146 9.82746C8.07546 10.0475 8.22746 10.3555 8.24746 10.7515H7.13746C7.12946 10.6155 7.07946 10.5095 6.98746 10.4335C6.89546 10.3535 6.77746 10.3135 6.63346 10.3135C6.50946 10.3135 6.40946 10.3475 6.33346 10.4155C6.25746 10.4795 6.21946 10.5735 6.21946 10.6975C6.21946 10.8335 6.28346 10.9395 6.41146 11.0155C6.53946 11.0915 6.73946 11.1735 7.01146 11.2615C7.28346 11.3535 7.50346 11.4415 7.67146 11.5255C7.84346 11.6095 7.99146 11.7315 8.11546 11.8915C8.23946 12.0515 8.30146 12.2575 8.30146 12.5095C8.30146 12.7495 8.23946 12.9675 8.11546 13.1635C7.99546 13.3595 7.81946 13.5155 7.58746 13.6315C7.35546 13.7475 7.08146 13.8055 6.76546 13.8055Z" fill="currentColor"/>
|
10
|
-
</svg>
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M12.6871 0.646463L12.5406 0.5H12.3335H3.11475C2.40704 0.5 1.8335 1.07355 1.8335 1.78125V16.2188C1.8335 16.9265 2.40704 17.5 3.11475 17.5H14.8854C15.5931 17.5 16.1666 16.9265 16.1666 16.2188V4.33344V4.12634L16.0202 3.9799L12.6871 0.646463Z" fill="white" stroke="currentColor"/>
|
3
|
+
<path d="M12.3335 1L15.6669 4.33344H13.1147C12.6832 4.33344 12.3335 3.98375 12.3335 3.55219V1Z" fill="currentColor"/>
|
4
|
+
<path d="M16.2188 8.26343H1.78125C1.07364 8.26343 0.5 8.83706 0.5 9.54468V13.9822C0.5 14.6898 1.07364 15.2634 1.78125 15.2634H16.2188C16.9264 15.2634 17.5 14.6898 17.5 13.9822V9.54468C17.5 8.83706 16.9264 8.26343 16.2188 8.26343Z" fill="white" stroke="currentColor"/>
|
5
|
+
<path d="M8.00338 4.22314H3.979C3.80641 4.22314 3.6665 4.36306 3.6665 4.53564V4.57721C3.6665 4.7498 3.80641 4.88971 3.979 4.88971H8.00338C8.17597 4.88971 8.31588 4.7498 8.31588 4.57721V4.53564C8.31588 4.36306 8.17597 4.22314 8.00338 4.22314Z" fill="currentColor"/>
|
6
|
+
<path d="M11.0206 5.49316H3.979C3.80641 5.49316 3.6665 5.63308 3.6665 5.80566V5.84723C3.6665 6.01982 3.80641 6.15973 3.979 6.15973H11.0206C11.1932 6.15973 11.3331 6.01982 11.3331 5.84723V5.80566C11.3331 5.63308 11.1932 5.49316 11.0206 5.49316Z" fill="currentColor"/>
|
7
|
+
<path d="M11.0206 6.76343H3.979C3.80641 6.76343 3.6665 6.90334 3.6665 7.07593V7.11749C3.6665 7.29008 3.80641 7.42999 3.979 7.42999H11.0206C11.1932 7.42999 11.3331 7.29008 11.3331 7.11749V7.07593C11.3331 6.90334 11.1932 6.76343 11.0206 6.76343Z" fill="currentColor"/>
|
8
|
+
<path d="M11.7289 10.8835C11.6529 10.7435 11.5429 10.6375 11.3989 10.5655C11.2589 10.4895 11.0929 10.4515 10.9009 10.4515C10.5689 10.4515 10.3029 10.5615 10.1029 10.7815C9.90291 10.9975 9.80291 11.2875 9.80291 11.6515C9.80291 12.0395 9.90691 12.3435 10.1149 12.5635C10.3269 12.7795 10.6169 12.8875 10.9849 12.8875C11.2369 12.8875 11.4489 12.8235 11.6209 12.6955C11.7969 12.5675 11.9249 12.3835 12.0049 12.1435H10.7029V11.3875H12.9349V12.3415C12.8589 12.5975 12.7289 12.8355 12.5449 13.0555C12.3649 13.2755 12.1349 13.4535 11.8549 13.5895C11.5749 13.7255 11.2589 13.7935 10.9069 13.7935C10.4909 13.7935 10.1189 13.7035 9.79091 13.5235C9.46691 13.3395 9.21291 13.0855 9.02891 12.7615C8.84891 12.4375 8.75891 12.0675 8.75891 11.6515C8.75891 11.2355 8.84891 10.8655 9.02891 10.5415C9.21291 10.2135 9.46691 9.95948 9.79091 9.77948C10.1149 9.59548 10.4849 9.50348 10.9009 9.50348C11.4049 9.50348 11.8289 9.62548 12.1729 9.86948C12.5209 10.1135 12.7509 10.4515 12.8629 10.8835H11.7289Z" fill="currentColor"/>
|
9
|
+
<path d="M6.76546 13.8055C6.45746 13.8055 6.18146 13.7555 5.93746 13.6555C5.69346 13.5555 5.49746 13.4075 5.34946 13.2115C5.20546 13.0155 5.12946 12.7795 5.12146 12.5035H6.21346C6.22946 12.6595 6.28346 12.7795 6.37546 12.8635C6.46746 12.9435 6.58746 12.9835 6.73546 12.9835C6.88746 12.9835 7.00746 12.9495 7.09546 12.8815C7.18346 12.8095 7.22746 12.7115 7.22746 12.5875C7.22746 12.4835 7.19146 12.3975 7.11946 12.3295C7.05146 12.2615 6.96546 12.2055 6.86146 12.1615C6.76146 12.1175 6.61746 12.0675 6.42946 12.0115C6.15746 11.9275 5.93546 11.8435 5.76346 11.7595C5.59146 11.6755 5.44346 11.5515 5.31946 11.3875C5.19546 11.2235 5.13346 11.0095 5.13346 10.7455C5.13346 10.3535 5.27546 10.0475 5.55946 9.82746C5.84346 9.60346 6.21346 9.49146 6.66946 9.49146C7.13346 9.49146 7.50746 9.60346 7.79146 9.82746C8.07546 10.0475 8.22746 10.3555 8.24746 10.7515H7.13746C7.12946 10.6155 7.07946 10.5095 6.98746 10.4335C6.89546 10.3535 6.77746 10.3135 6.63346 10.3135C6.50946 10.3135 6.40946 10.3475 6.33346 10.4155C6.25746 10.4795 6.21946 10.5735 6.21946 10.6975C6.21946 10.8335 6.28346 10.9395 6.41146 11.0155C6.53946 11.0915 6.73946 11.1735 7.01146 11.2615C7.28346 11.3535 7.50346 11.4415 7.67146 11.5255C7.84346 11.6095 7.99146 11.7315 8.11546 11.8915C8.23946 12.0515 8.30146 12.2575 8.30146 12.5095C8.30146 12.7495 8.23946 12.9675 8.11546 13.1635C7.99546 13.3595 7.81946 13.5155 7.58746 13.6315C7.35546 13.7475 7.08146 13.8055 6.76546 13.8055Z" fill="currentColor"/>
|
10
|
+
</svg>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M14.9799 1.25165L14.98 1.25157C14.7152 0.961146 14.2958 0.772921 13.667 0.762264L13.6603 0.762149L13.6603 0.762103C12.7479 0.734285 11.9951 0.96121 11.384 1.41819C10.8289 1.83329 10.3593 2.46205 10.001 3.33573C10.1534 3.30977 10.311 3.29489 10.4753 3.29489C10.7848 3.29489 11.4004 3.3316 11.7695 3.80919L11.7739 3.81488L11.7738 3.81491C12.0596 4.19596 12.0442 4.69533 11.9167 5.14881L11.9148 5.1555L11.9148 5.15548C11.8487 5.3786 11.679 5.72644 11.4767 6.10052C11.2662 6.48991 10.996 6.95156 10.702 7.42063L10.6993 7.42506L10.6992 7.42504C10.3347 7.99341 10.0495 8.41568 9.83621 8.69902C9.73082 8.839 9.63297 8.95859 9.54476 9.04759C9.50132 9.09141 9.44774 9.14065 9.3864 9.18221C9.33933 9.2141 9.21625 9.29216 9.04751 9.29216H9.03969L9.03189 9.29192C8.86024 9.28655 8.74138 9.20288 8.68565 9.15592C8.62506 9.10486 8.58139 9.04856 8.55261 9.00722C8.49422 8.92335 8.44439 8.82359 8.40245 8.72934C8.31617 8.5355 8.22417 8.27484 8.13119 7.98249C7.94369 7.393 7.73346 6.61448 7.53672 5.84142C7.33946 5.06626 7.15363 4.28817 7.01499 3.6962C6.94564 3.40006 6.88802 3.15019 6.84663 2.97037L6.79742 2.75665C6.78998 2.72446 6.7853 2.7045 6.78273 2.69357C6.78085 2.68557 6.78011 2.68241 6.78026 2.68285C6.57968 1.95823 6.4571 1.54402 6.26635 1.28514C6.18505 1.17481 6.0959 1.10218 5.9786 1.05184C5.85381 0.998295 5.67159 0.959272 5.39186 0.959272C5.26627 0.959272 5.03076 1.0232 4.67253 1.206C4.32974 1.38093 3.92898 1.63585 3.49123 1.94799C2.6167 2.57158 1.63791 3.39214 0.748646 4.17102L0.746028 4.17331L0.74602 4.1733L0.529348 4.36043L0.770345 4.6639C1.04584 4.45958 1.33341 4.25452 1.60844 4.09759C1.8837 3.94053 2.21683 3.7892 2.55433 3.78725C3.08046 3.77664 3.42074 4.18183 3.64468 4.58689C3.88424 5.02023 4.10594 5.65616 4.33533 6.49304C4.78297 8.11185 5.33179 9.86026 5.93252 11.1966C6.23406 11.8673 6.53701 12.4074 6.83047 12.772C7.13988 13.1564 7.35241 13.2402 7.4597 13.2402C8.04015 13.2402 8.72417 12.9975 9.55755 12.3699C10.3917 11.7418 11.3418 10.753 12.4423 9.32413L14.9799 1.25165ZM14.9799 1.25165L14.9874 1.25952M14.9799 1.25165L14.9874 1.25952M14.9874 1.25952C15.338 1.62763 15.549 2.31697 15.4903 3.3985L15.4902 3.3985M14.9874 1.25952L15.4902 3.3985M15.4902 3.3985L15.4899 3.40533M15.4902 3.3985L15.4899 3.40533M15.4899 3.40533C15.4633 4.06042 15.2114 4.88481 14.6981 5.88902M15.4899 3.40533L14.6981 5.88902M14.6981 5.88902C14.1875 6.88796 13.4345 8.03371 12.4424 9.32404L14.6981 5.88902Z" fill="white" stroke="currentColor"/>
|
3
|
-
</svg>
|
1
|
+
<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M14.9799 1.25165L14.98 1.25157C14.7152 0.961146 14.2958 0.772921 13.667 0.762264L13.6603 0.762149L13.6603 0.762103C12.7479 0.734285 11.9951 0.96121 11.384 1.41819C10.8289 1.83329 10.3593 2.46205 10.001 3.33573C10.1534 3.30977 10.311 3.29489 10.4753 3.29489C10.7848 3.29489 11.4004 3.3316 11.7695 3.80919L11.7739 3.81488L11.7738 3.81491C12.0596 4.19596 12.0442 4.69533 11.9167 5.14881L11.9148 5.1555L11.9148 5.15548C11.8487 5.3786 11.679 5.72644 11.4767 6.10052C11.2662 6.48991 10.996 6.95156 10.702 7.42063L10.6993 7.42506L10.6992 7.42504C10.3347 7.99341 10.0495 8.41568 9.83621 8.69902C9.73082 8.839 9.63297 8.95859 9.54476 9.04759C9.50132 9.09141 9.44774 9.14065 9.3864 9.18221C9.33933 9.2141 9.21625 9.29216 9.04751 9.29216H9.03969L9.03189 9.29192C8.86024 9.28655 8.74138 9.20288 8.68565 9.15592C8.62506 9.10486 8.58139 9.04856 8.55261 9.00722C8.49422 8.92335 8.44439 8.82359 8.40245 8.72934C8.31617 8.5355 8.22417 8.27484 8.13119 7.98249C7.94369 7.393 7.73346 6.61448 7.53672 5.84142C7.33946 5.06626 7.15363 4.28817 7.01499 3.6962C6.94564 3.40006 6.88802 3.15019 6.84663 2.97037L6.79742 2.75665C6.78998 2.72446 6.7853 2.7045 6.78273 2.69357C6.78085 2.68557 6.78011 2.68241 6.78026 2.68285C6.57968 1.95823 6.4571 1.54402 6.26635 1.28514C6.18505 1.17481 6.0959 1.10218 5.9786 1.05184C5.85381 0.998295 5.67159 0.959272 5.39186 0.959272C5.26627 0.959272 5.03076 1.0232 4.67253 1.206C4.32974 1.38093 3.92898 1.63585 3.49123 1.94799C2.6167 2.57158 1.63791 3.39214 0.748646 4.17102L0.746028 4.17331L0.74602 4.1733L0.529348 4.36043L0.770345 4.6639C1.04584 4.45958 1.33341 4.25452 1.60844 4.09759C1.8837 3.94053 2.21683 3.7892 2.55433 3.78725C3.08046 3.77664 3.42074 4.18183 3.64468 4.58689C3.88424 5.02023 4.10594 5.65616 4.33533 6.49304C4.78297 8.11185 5.33179 9.86026 5.93252 11.1966C6.23406 11.8673 6.53701 12.4074 6.83047 12.772C7.13988 13.1564 7.35241 13.2402 7.4597 13.2402C8.04015 13.2402 8.72417 12.9975 9.55755 12.3699C10.3917 11.7418 11.3418 10.753 12.4423 9.32413L14.9799 1.25165ZM14.9799 1.25165L14.9874 1.25952M14.9799 1.25165L14.9874 1.25952M14.9874 1.25952C15.338 1.62763 15.549 2.31697 15.4903 3.3985L15.4902 3.3985M14.9874 1.25952L15.4902 3.3985M15.4902 3.3985L15.4899 3.40533M15.4902 3.3985L15.4899 3.40533M15.4899 3.40533C15.4633 4.06042 15.2114 4.88481 14.6981 5.88902M15.4899 3.40533L14.6981 5.88902M14.6981 5.88902C14.1875 6.88796 13.4345 8.03371 12.4424 9.32404L14.6981 5.88902Z" fill="white" stroke="currentColor"/>
|
3
|
+
</svg>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.845864 11.5813C0.304532 10.504 0 9.28691 0 7.99998C0 6.71305 0.304532 5.49599 0.845864 4.41866C2.16053 1.79893 4.87199 0 7.99998 0C11.128 0 13.8394 1.79893 15.1541 4.41866C15.6954 5.49599 16 6.71305 16 7.99998C16 8.74122 15.8989 9.45928 15.7098 10.1408C15.5178 9.64596 15.2368 9.19545 14.8865 8.8089C14.9174 8.54352 14.9333 8.27358 14.9333 7.99998C14.9333 7.06079 14.7461 6.16479 14.4074 5.34772C13.5365 5.68532 12.5098 5.95626 11.3765 6.13866C11.4167 6.54759 11.4442 6.96932 11.4575 7.40092C11.0893 7.42113 10.7334 7.48763 10.3956 7.59469C10.386 7.14382 10.3603 6.70393 10.32 6.27892C9.57811 6.35786 8.80052 6.39999 7.99998 6.39999C7.19945 6.39999 6.42185 6.35786 5.67999 6.27892C5.62772 6.83039 5.59999 7.40692 5.59999 7.99998C5.59999 8.59305 5.62772 9.16958 5.67999 9.72105C6.40301 9.64412 7.15998 9.60215 7.93903 9.60006C7.75305 9.93264 7.60993 10.2924 7.51716 10.672C6.93298 10.6849 6.36403 10.7212 5.81545 10.7781C6.01065 11.9786 6.33066 13.0128 6.73812 13.7733C6.94452 14.1589 7.17065 14.4688 7.41812 14.6789C7.60265 14.8357 7.79465 14.9333 7.99998 14.9333C8.20532 14.9333 8.39732 14.8357 8.58185 14.6789L8.58903 14.6728C9.02045 15.1233 9.54884 15.4802 10.1407 15.7099C9.4592 15.8989 8.74129 16 7.99998 16C4.87199 16 2.16053 14.201 0.845864 11.5813ZM1.59253 5.34772C1.25386 6.16479 1.06666 7.06079 1.06666 7.99998C1.06666 8.93918 1.25386 9.83518 1.59253 10.6522C2.46346 10.3146 3.49013 10.0437 4.62346 9.86131C4.56479 9.26505 4.53332 8.64158 4.53332 7.99998C4.53332 7.35839 4.56479 6.73492 4.62346 6.13866C3.49013 5.95626 2.46346 5.68532 1.59253 5.34772ZM13.9205 4.39252C13.0378 2.94773 11.6416 1.8512 9.98665 1.35626C10.0608 1.47146 10.1328 1.5936 10.2021 1.72267C10.657 2.57226 11.0208 3.73279 11.2394 5.08159C12.2357 4.91999 13.1429 4.68479 13.9205 4.39252ZM6.01332 1.35626C4.35839 1.8512 2.96213 2.94773 2.07946 4.39252C2.85706 4.68532 3.76426 4.91999 4.76053 5.08159C4.97919 3.73279 5.34292 2.57226 5.79786 1.72267C5.86719 1.5936 5.93919 1.47146 6.01332 1.35626ZM2.07946 11.6074C2.96213 13.0522 4.35839 14.1488 6.01332 14.6437C5.93919 14.5285 5.86719 14.4064 5.79786 14.2773C5.34292 13.4277 4.97919 12.2672 4.76053 10.9184C3.76426 11.08 2.85706 11.3152 2.07946 11.6074ZM7.99998 1.06666C7.79465 1.06666 7.60265 1.16426 7.41812 1.32106C7.17065 1.5312 6.94452 1.84106 6.73812 2.22666C6.33066 2.9872 6.01065 4.02133 5.81545 5.22186C6.51412 5.29492 7.24585 5.33332 7.99998 5.33332C8.75412 5.33332 9.48585 5.29439 10.1845 5.22186C9.98931 4.02133 9.66931 2.9872 9.26185 2.22666C9.05545 1.84106 8.82932 1.5312 8.58185 1.32106C8.39732 1.16426 8.20532 1.06666 7.99998 1.06666ZM15.3852 11.7118L14.6747 11.839C14.6625 12.1002 14.6178 12.3527 14.5446 12.5925L15.1688 12.9585L14.5112 14.1149L13.8862 13.7485C13.7155 13.9359 13.5218 14.1016 13.3095 14.2404L13.5563 14.9286L12.3204 15.3853L12.0737 14.6971C11.9504 14.7129 11.8246 14.7211 11.6971 14.7211C11.5696 14.7211 11.4438 14.7129 11.3205 14.6971L11.0738 15.3853L9.83792 14.9286L10.0847 14.2404C9.8724 14.1016 9.6787 13.9359 9.50803 13.7485L8.88303 14.1149L8.22538 12.9585L8.84963 12.5925C8.77643 12.3527 8.73174 12.1002 8.71954 11.839L8.00897 11.7118L8.23727 10.3967L8.94724 10.5238C9.04546 10.2861 9.1728 10.064 9.32441 9.86175L8.86061 9.30034L9.86812 8.44189L10.3315 9.00283C10.5528 8.88684 10.7902 8.79826 11.0396 8.74126V8.00904H12.3546V8.74126C12.6039 8.79824 12.8414 8.88684 13.0627 9.00283L13.5261 8.44187L14.5336 9.30031L14.0698 9.86172C14.2214 10.064 14.3487 10.2861 14.447 10.5238L15.1569 10.3967L15.3852 11.7118ZM10.3235 11.6942C10.3235 12.4645 10.9385 13.0889 11.6971 13.0889C12.4557 13.0889 13.0707 12.4645 13.0707 11.6942C13.0707 10.9238 12.4557 10.2994 11.6971 10.2994C10.9385 10.2994 10.3235 10.9238 10.3235 11.6942Z" fill="currentColor"/>
|
3
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.845864 11.5813C0.304532 10.504 0 9.28691 0 7.99998C0 6.71305 0.304532 5.49599 0.845864 4.41866C2.16053 1.79893 4.87199 0 7.99998 0C11.128 0 13.8394 1.79893 15.1541 4.41866C15.6954 5.49599 16 6.71305 16 7.99998C16 8.74122 15.8989 9.45928 15.7098 10.1408C15.5178 9.64596 15.2368 9.19545 14.8865 8.8089C14.9174 8.54352 14.9333 8.27358 14.9333 7.99998C14.9333 7.06079 14.7461 6.16479 14.4074 5.34772C13.5365 5.68532 12.5098 5.95626 11.3765 6.13866C11.4167 6.54759 11.4442 6.96932 11.4575 7.40092C11.0893 7.42113 10.7334 7.48763 10.3956 7.59469C10.386 7.14382 10.3603 6.70393 10.32 6.27892C9.57811 6.35786 8.80052 6.39999 7.99998 6.39999C7.19945 6.39999 6.42185 6.35786 5.67999 6.27892C5.62772 6.83039 5.59999 7.40692 5.59999 7.99998C5.59999 8.59305 5.62772 9.16958 5.67999 9.72105C6.40301 9.64412 7.15998 9.60215 7.93903 9.60006C7.75305 9.93264 7.60993 10.2924 7.51716 10.672C6.93298 10.6849 6.36403 10.7212 5.81545 10.7781C6.01065 11.9786 6.33066 13.0128 6.73812 13.7733C6.94452 14.1589 7.17065 14.4688 7.41812 14.6789C7.60265 14.8357 7.79465 14.9333 7.99998 14.9333C8.20532 14.9333 8.39732 14.8357 8.58185 14.6789L8.58903 14.6728C9.02045 15.1233 9.54884 15.4802 10.1407 15.7099C9.4592 15.8989 8.74129 16 7.99998 16C4.87199 16 2.16053 14.201 0.845864 11.5813ZM1.59253 5.34772C1.25386 6.16479 1.06666 7.06079 1.06666 7.99998C1.06666 8.93918 1.25386 9.83518 1.59253 10.6522C2.46346 10.3146 3.49013 10.0437 4.62346 9.86131C4.56479 9.26505 4.53332 8.64158 4.53332 7.99998C4.53332 7.35839 4.56479 6.73492 4.62346 6.13866C3.49013 5.95626 2.46346 5.68532 1.59253 5.34772ZM13.9205 4.39252C13.0378 2.94773 11.6416 1.8512 9.98665 1.35626C10.0608 1.47146 10.1328 1.5936 10.2021 1.72267C10.657 2.57226 11.0208 3.73279 11.2394 5.08159C12.2357 4.91999 13.1429 4.68479 13.9205 4.39252ZM6.01332 1.35626C4.35839 1.8512 2.96213 2.94773 2.07946 4.39252C2.85706 4.68532 3.76426 4.91999 4.76053 5.08159C4.97919 3.73279 5.34292 2.57226 5.79786 1.72267C5.86719 1.5936 5.93919 1.47146 6.01332 1.35626ZM2.07946 11.6074C2.96213 13.0522 4.35839 14.1488 6.01332 14.6437C5.93919 14.5285 5.86719 14.4064 5.79786 14.2773C5.34292 13.4277 4.97919 12.2672 4.76053 10.9184C3.76426 11.08 2.85706 11.3152 2.07946 11.6074ZM7.99998 1.06666C7.79465 1.06666 7.60265 1.16426 7.41812 1.32106C7.17065 1.5312 6.94452 1.84106 6.73812 2.22666C6.33066 2.9872 6.01065 4.02133 5.81545 5.22186C6.51412 5.29492 7.24585 5.33332 7.99998 5.33332C8.75412 5.33332 9.48585 5.29439 10.1845 5.22186C9.98931 4.02133 9.66931 2.9872 9.26185 2.22666C9.05545 1.84106 8.82932 1.5312 8.58185 1.32106C8.39732 1.16426 8.20532 1.06666 7.99998 1.06666ZM15.3852 11.7118L14.6747 11.839C14.6625 12.1002 14.6178 12.3527 14.5446 12.5925L15.1688 12.9585L14.5112 14.1149L13.8862 13.7485C13.7155 13.9359 13.5218 14.1016 13.3095 14.2404L13.5563 14.9286L12.3204 15.3853L12.0737 14.6971C11.9504 14.7129 11.8246 14.7211 11.6971 14.7211C11.5696 14.7211 11.4438 14.7129 11.3205 14.6971L11.0738 15.3853L9.83792 14.9286L10.0847 14.2404C9.8724 14.1016 9.6787 13.9359 9.50803 13.7485L8.88303 14.1149L8.22538 12.9585L8.84963 12.5925C8.77643 12.3527 8.73174 12.1002 8.71954 11.839L8.00897 11.7118L8.23727 10.3967L8.94724 10.5238C9.04546 10.2861 9.1728 10.064 9.32441 9.86175L8.86061 9.30034L9.86812 8.44189L10.3315 9.00283C10.5528 8.88684 10.7902 8.79826 11.0396 8.74126V8.00904H12.3546V8.74126C12.6039 8.79824 12.8414 8.88684 13.0627 9.00283L13.5261 8.44187L14.5336 9.30031L14.0698 9.86172C14.2214 10.064 14.3487 10.2861 14.447 10.5238L15.1569 10.3967L15.3852 11.7118ZM10.3235 11.6942C10.3235 12.4645 10.9385 13.0889 11.6971 13.0889C12.4557 13.0889 13.0707 12.4645 13.0707 11.6942C13.0707 10.9238 12.4557 10.2994 11.6971 10.2994C10.9385 10.2994 10.3235 10.9238 10.3235 11.6942Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -160,6 +160,7 @@
|
|
160
160
|
}
|
161
161
|
.more-menu {
|
162
162
|
width: 40px;
|
163
|
+
margin-left: 8px;
|
163
164
|
display: flex;
|
164
165
|
justify-content: center;
|
165
166
|
.ff-app-header-more-icon {
|
@@ -171,6 +172,11 @@
|
|
171
172
|
}
|
172
173
|
}
|
173
174
|
}
|
175
|
+
.more-menu .ff-menuicon-container {
|
176
|
+
width: 40px !important;
|
177
|
+
height: 32px !important;
|
178
|
+
border-radius: 16px !important;
|
179
|
+
}
|
174
180
|
}
|
175
181
|
.ff-app-header-left-content,
|
176
182
|
.ff-app-header-right-content {
|
@@ -216,4 +222,4 @@
|
|
216
222
|
max-height: 0;
|
217
223
|
opacity: 0;
|
218
224
|
}
|
219
|
-
}
|
225
|
+
}
|
@@ -12,6 +12,7 @@ import React, { useRef } from 'react';
|
|
12
12
|
const AppHeader: React.FC<AppHeaderProps> = ({
|
13
13
|
logoIconName = 'fireflink_icon',
|
14
14
|
width,
|
15
|
+
borderRadius,
|
15
16
|
leftContent,
|
16
17
|
rightContent,
|
17
18
|
projectsList,
|
@@ -31,7 +32,13 @@ const AppHeader: React.FC<AppHeaderProps> = ({
|
|
31
32
|
const hiddenMenuref = useRef<HTMLDivElement>(null);
|
32
33
|
return (
|
33
34
|
<div className="ff-app-header-main">
|
34
|
-
<div
|
35
|
+
<div
|
36
|
+
className="ff-app-header"
|
37
|
+
style={{
|
38
|
+
borderStartStartRadius: borderRadius,
|
39
|
+
borderStartEndRadius: borderRadius,
|
40
|
+
}}
|
41
|
+
>
|
35
42
|
<div className="ff-app-header-left-container">
|
36
43
|
<div className="ff-app-header-logo-icon">
|
37
44
|
<Icon color="" name={logoIconName} height={24} width={21} />
|