data-grid-workspace 0.0.120
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/.editorconfig +16 -0
- package/.vscode/extensions.json +4 -0
- package/.vscode/launch.json +20 -0
- package/.vscode/tasks.json +42 -0
- package/README.md +265 -0
- package/angular.json +144 -0
- package/backup-04112025/projects/data-grid/README.md +24 -0
- package/backup-04112025/projects/data-grid/ng-package.json +18 -0
- package/backup-04112025/projects/data-grid/package-lock.json +25 -0
- package/backup-04112025/projects/data-grid/package.json +23 -0
- package/backup-04112025/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
- package/backup-04112025/projects/data-grid/src/lib/data-grid/animations.ts +228 -0
- package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.html +5356 -0
- package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.scss +2005 -0
- package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
- package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.ts +5368 -0
- package/backup-04112025/projects/data-grid/src/lib/data-grid/statuses.ts +49 -0
- package/backup-04112025/projects/data-grid/src/lib/data-grid.module.ts +19 -0
- package/backup-04112025/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
- package/backup-04112025/projects/data-grid/src/lib/data-grid.service.ts +9 -0
- package/backup-04112025/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
- package/backup-04112025/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
- package/backup-04112025/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
- package/backup-04112025/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
- package/backup-04112025/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
- package/backup-04112025/projects/data-grid/src/lib/services/cell-selection.service.ts +205 -0
- package/backup-04112025/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
- package/backup-04112025/projects/data-grid/src/lib/services/common.service.ts +278 -0
- package/backup-04112025/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
- package/backup-04112025/projects/data-grid/src/lib/services/copy-service.service.ts +252 -0
- package/backup-04112025/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
- package/backup-04112025/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
- package/backup-04112025/projects/data-grid/src/lib/services/export.service.spec.ts +16 -0
- package/backup-04112025/projects/data-grid/src/lib/services/export.service.ts +189 -0
- package/backup-04112025/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
- package/backup-04112025/projects/data-grid/src/lib/services/split-columns.service.ts +148 -0
- package/backup-04112025/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
- package/backup-04112025/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
- package/backup-04112025/projects/data-grid/src/public-api.ts +6 -0
- package/backup-04112025/projects/data-grid/src/typings.d.ts +4 -0
- package/backup-04112025/projects/data-grid/tsconfig.lib.json +19 -0
- package/backup-04112025/projects/data-grid/tsconfig.lib.prod.json +10 -0
- package/backup-04112025/projects/data-grid/tsconfig.spec.json +14 -0
- package/backup-29-10-2025/projects/data-grid/README.md +24 -0
- package/backup-29-10-2025/projects/data-grid/ng-package.json +10 -0
- package/backup-29-10-2025/projects/data-grid/package-lock.json +25 -0
- package/backup-29-10-2025/projects/data-grid/package.json +12 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/animations.ts +228 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.html +5236 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.scss +1717 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.ts +5092 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/statuses.ts +47 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.module.ts +19 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.service.ts +9 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/services/cell-selection.service.ts +205 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/services/common.service.ts +274 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/services/copy-service.service.ts +251 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/services/split-columns.service.ts +148 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
- package/backup-29-10-2025/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
- package/backup-29-10-2025/projects/data-grid/src/public-api.ts +6 -0
- package/backup-29-10-2025/projects/data-grid/tsconfig.lib.json +16 -0
- package/backup-29-10-2025/projects/data-grid/tsconfig.lib.prod.json +10 -0
- package/backup-29-10-2025/projects/data-grid/tsconfig.spec.json +14 -0
- package/image.png +0 -0
- package/package.json +52 -0
- package/projects/data-grid/README.md +324 -0
- package/projects/data-grid/ng-package.json +19 -0
- package/projects/data-grid/package-lock.json +25 -0
- package/projects/data-grid/package.json +38 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/Inter-VariableFont_opsz,wght.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/OFL.txt +93 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/README.txt +118 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Black.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-BlackItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Bold.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-BoldItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraBold.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraBoldItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraLight.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraLightItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Italic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Light.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-LightItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Medium.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-MediumItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Regular.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-SemiBold.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-SemiBoldItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Thin.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ThinItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Black.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-BlackItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Bold.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-BoldItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraBold.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraBoldItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraLight.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraLightItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Italic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Light.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-LightItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Medium.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-MediumItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Regular.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-SemiBold.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-SemiBoldItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Thin.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ThinItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Black.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-BlackItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Bold.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-BoldItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraBold.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraBoldItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraLight.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraLightItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Italic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Light.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-LightItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Medium.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-MediumItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Regular.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-SemiBold.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-SemiBoldItalic.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Thin.ttf +0 -0
- package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ThinItalic.ttf +0 -0
- package/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
- package/projects/data-grid/src/lib/data-grid/animations.ts +267 -0
- package/projects/data-grid/src/lib/data-grid/data-grid.component.html +5759 -0
- package/projects/data-grid/src/lib/data-grid/data-grid.component.scss +2154 -0
- package/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
- package/projects/data-grid/src/lib/data-grid/data-grid.component.ts +6773 -0
- package/projects/data-grid/src/lib/data-grid/data-grid.tokens.ts +4 -0
- package/projects/data-grid/src/lib/data-grid/statuses.ts +49 -0
- package/projects/data-grid/src/lib/data-grid.module.ts +23 -0
- package/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
- package/projects/data-grid/src/lib/data-grid.service.ts +9 -0
- package/projects/data-grid/src/lib/directives/cell-editor.directive.spec.ts +11 -0
- package/projects/data-grid/src/lib/directives/cell-editor.directive.ts +88 -0
- package/projects/data-grid/src/lib/directives/cell-render-init.directive.spec.ts +11 -0
- package/projects/data-grid/src/lib/directives/cell-render-init.directive.ts +98 -0
- package/projects/data-grid/src/lib/directives/cellHost.directive.spec.ts +11 -0
- package/projects/data-grid/src/lib/directives/cellHost.directive.ts +10 -0
- package/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
- package/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
- package/projects/data-grid/src/lib/interfaces/data-grid-config.ts.ts +136 -0
- package/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
- package/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
- package/projects/data-grid/src/lib/pipes/format-currency.pipe.spec.ts +11 -0
- package/projects/data-grid/src/lib/pipes/format-currency.pipe.ts +59 -0
- package/projects/data-grid/src/lib/pipes/format-index.pipe.spec.ts +11 -0
- package/projects/data-grid/src/lib/pipes/format-index.pipe.ts +20 -0
- package/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
- package/projects/data-grid/src/lib/services/cell-selection.service.ts +372 -0
- package/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
- package/projects/data-grid/src/lib/services/common.service.ts +395 -0
- package/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
- package/projects/data-grid/src/lib/services/copy-service.service.ts +252 -0
- package/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
- package/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
- package/projects/data-grid/src/lib/services/export.service.spec.ts +16 -0
- package/projects/data-grid/src/lib/services/export.service.ts +189 -0
- package/projects/data-grid/src/lib/services/row-action.service.ts +203 -0
- package/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
- package/projects/data-grid/src/lib/services/split-columns.service.ts +168 -0
- package/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
- package/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
- package/projects/data-grid/src/lib/styles/font-style.css +34 -0
- package/projects/data-grid/src/public-api.ts +8 -0
- package/projects/data-grid/src/typings.d.ts +4 -0
- package/projects/data-grid/tsconfig.lib.json +19 -0
- package/projects/data-grid/tsconfig.lib.prod.json +10 -0
- package/projects/data-grid/tsconfig.spec.json +14 -0
- package/src/app/app.component.html +61 -0
- package/src/app/app.component.scss +1 -0
- package/src/app/app.component.spec.ts +27 -0
- package/src/app/app.component.ts +166 -0
- package/src/app/app.module.ts +33 -0
- package/src/app/dropdown-filter/dropdown-filter.component.css +122 -0
- package/src/app/dropdown-filter/dropdown-filter.component.html +118 -0
- package/src/app/dropdown-filter/dropdown-filter.component.spec.ts +28 -0
- package/src/app/dropdown-filter/dropdown-filter.component.ts +139 -0
- package/src/app/status-cell/status-cell.component.css +0 -0
- package/src/app/status-cell/status-cell.component.html +1 -0
- package/src/app/status-cell/status-cell.component.spec.ts +28 -0
- package/src/app/status-cell/status-cell.component.ts +18 -0
- package/src/app/status-cell-editor/status-cell-editor.component.css +0 -0
- package/src/app/status-cell-editor/status-cell-editor.component.html +12 -0
- package/src/app/status-cell-editor/status-cell-editor.component.spec.ts +28 -0
- package/src/app/status-cell-editor/status-cell-editor.component.ts +77 -0
- package/src/app/sub-category-cell-component/sub-category-cell-component.component.css +6 -0
- package/src/app/sub-category-cell-component/sub-category-cell-component.component.html +3 -0
- package/src/app/sub-category-cell-component/sub-category-cell-component.component.spec.ts +28 -0
- package/src/app/sub-category-cell-component/sub-category-cell-component.component.ts +26 -0
- package/src/app/testing-data/api-translation/data.ts +1929 -0
- package/src/app/testing-data/assets-category/data.ts +1410 -0
- package/src/app/testing-data/assets-list/data.ts +26633 -0
- package/src/app/testing-data/invoices/data.ts +3698 -0
- package/src/app/testing-data/manage-employee/data.ts +83205 -0
- package/src/app/testing-data/single-day-timesheet/data.ts +4450 -0
- package/src/app/testing-data/task-management/tasks.ts +2536 -0
- package/src/app/testing-data/translation.ts +135580 -0
- package/src/app/testing-data/writeup/data.ts +29506 -0
- package/src/assets/.gitkeep +0 -0
- package/src/assets/data-grid/document-icons/Newxlsx.svg +19 -0
- package/src/assets/data-grid/document-icons/Presentation.pptx +0 -0
- package/src/assets/data-grid/document-icons/Untitled spreadsheet.xlsx +0 -0
- package/src/assets/data-grid/document-icons/bell-icon.svg +31 -0
- package/src/assets/data-grid/document-icons/blank sheet ppt.pptx +0 -0
- package/src/assets/data-grid/document-icons/blank-docs-file.docx +0 -0
- package/src/assets/data-grid/document-icons/csv.svg +34 -0
- package/src/assets/data-grid/document-icons/doc.svg +34 -0
- package/src/assets/data-grid/document-icons/document-download.svg +18 -0
- package/src/assets/data-grid/document-icons/document-upload.svg +6 -0
- package/src/assets/data-grid/document-icons/docx.svg +35 -0
- package/src/assets/data-grid/document-icons/downloadDOC.svg +7 -0
- package/src/assets/data-grid/document-icons/edit-doc.svg +6 -0
- package/src/assets/data-grid/document-icons/empty-trash.svg +47 -0
- package/src/assets/data-grid/document-icons/jpeg.svg +40 -0
- package/src/assets/data-grid/document-icons/jpg.svg +24 -0
- package/src/assets/data-grid/document-icons/loading gif.gif +0 -0
- package/src/assets/data-grid/document-icons/more-Icon.svg +19 -0
- package/src/assets/data-grid/document-icons/mp4.svg +28 -0
- package/src/assets/data-grid/document-icons/my-request-empty.svg +37 -0
- package/src/assets/data-grid/document-icons/newDoc.svg +16 -0
- package/src/assets/data-grid/document-icons/newppt.svg +16 -0
- package/src/assets/data-grid/document-icons/overDue.svg +8 -0
- package/src/assets/data-grid/document-icons/ownerShare.svg +13 -0
- package/src/assets/data-grid/document-icons/pdf.svg +36 -0
- package/src/assets/data-grid/document-icons/permanantDelete.svg +4 -0
- package/src/assets/data-grid/document-icons/png.svg +53 -0
- package/src/assets/data-grid/document-icons/ppt.svg +24 -0
- package/src/assets/data-grid/document-icons/pptx.svg +25 -0
- package/src/assets/data-grid/document-icons/restore-delete.svg +4 -0
- package/src/assets/data-grid/document-icons/restoreTrash.svg +10 -0
- package/src/assets/data-grid/document-icons/send-2.svg +16 -0
- package/src/assets/data-grid/document-icons/send-request-empty.svg +41 -0
- package/src/assets/data-grid/document-icons/shareIcon.svg +6 -0
- package/src/assets/data-grid/document-icons/sharedFileIcon.svg +6 -0
- package/src/assets/data-grid/document-icons/sharedriveempty.svg +40 -0
- package/src/assets/data-grid/document-icons/task-square.svg +25 -0
- package/src/assets/data-grid/document-icons/trash-01.svg +3 -0
- package/src/assets/data-grid/document-icons/trashRestore.svg +4 -0
- package/src/assets/data-grid/document-icons/txt.svg +34 -0
- package/src/assets/data-grid/document-icons/uploadFile.svg +16 -0
- package/src/assets/data-grid/document-icons/uploadfilefolder.svg +40 -0
- package/src/assets/data-grid/document-icons/xls.svg +34 -0
- package/src/assets/data-grid/document-icons/xlsx.svg +36 -0
- package/src/assets/data-grid/icons/Buttons.svg +3 -0
- package/src/assets/data-grid/icons/High.svg +3 -0
- package/src/assets/data-grid/icons/Low.svg +3 -0
- package/src/assets/data-grid/icons/Medium.svg +3 -0
- package/src/assets/data-grid/icons/Vector.svg +3 -0
- package/src/assets/data-grid/icons/arrow-counterclockwise.svg +4 -0
- package/src/assets/data-grid/icons/arrow-down.svg +3 -0
- package/src/assets/data-grid/icons/arrow-left.svg +3 -0
- package/src/assets/data-grid/icons/arrow-right-solid-full.svg +1 -0
- package/src/assets/data-grid/icons/arrow-right.svg +10 -0
- package/src/assets/data-grid/icons/arrow-up.svg +3 -0
- package/src/assets/data-grid/icons/arrows-angle-expand.svg +3 -0
- package/src/assets/data-grid/icons/arrows-expand-vertical.svg +3 -0
- package/src/assets/data-grid/icons/arrows-move.svg +3 -0
- package/src/assets/data-grid/icons/attachments.svg +3 -0
- package/src/assets/data-grid/icons/ban.svg +3 -0
- package/src/assets/data-grid/icons/check-blue.svg +3 -0
- package/src/assets/data-grid/icons/chevron-down.svg +3 -0
- package/src/assets/data-grid/icons/chevron-right.svg +3 -0
- package/src/assets/data-grid/icons/comments.svg +3 -0
- package/src/assets/data-grid/icons/cross-primary.svg +3 -0
- package/src/assets/data-grid/icons/dash.svg +3 -0
- package/src/assets/data-grid/icons/delete.svg +3 -0
- package/src/assets/data-grid/icons/diagram-3.svg +3 -0
- package/src/assets/data-grid/icons/download.svg +5 -0
- package/src/assets/data-grid/icons/edit.svg +3 -0
- package/src/assets/data-grid/icons/expend.svg +3 -0
- package/src/assets/data-grid/icons/eye-cross.svg +10 -0
- package/src/assets/data-grid/icons/eye.svg +4 -0
- package/src/assets/data-grid/icons/filter-2.svg +5 -0
- package/src/assets/data-grid/icons/grid-3x2-gap.svg +3 -0
- package/src/assets/data-grid/icons/grip-vertical.svg +8 -0
- package/src/assets/data-grid/icons/horizontal-dots.svg +5 -0
- package/src/assets/data-grid/icons/justify.svg +3 -0
- package/src/assets/data-grid/icons/layout-three-columns.svg +3 -0
- package/src/assets/data-grid/icons/list-details.svg +8 -0
- package/src/assets/data-grid/icons/minimize.svg +4 -0
- package/src/assets/data-grid/icons/pin-blue.svg +5 -0
- package/src/assets/data-grid/icons/pin-left.svg +3 -0
- package/src/assets/data-grid/icons/pin-right.svg +3 -0
- package/src/assets/data-grid/icons/pin.svg +5 -0
- package/src/assets/data-grid/icons/plus.svg +3 -0
- package/src/assets/data-grid/icons/resize-handle.svg +3 -0
- package/src/assets/data-grid/icons/search.svg +3 -0
- package/src/assets/data-grid/icons/settings-2.svg +3 -0
- package/src/assets/data-grid/icons/sort-asc.svg +4 -0
- package/src/assets/data-grid/icons/sort-desc.svg +4 -0
- package/src/assets/data-grid/icons/star-blue.svg +3 -0
- package/src/assets/data-grid/icons/star.svg +3 -0
- package/src/assets/data-grid/icons/table-2.svg +3 -0
- package/src/assets/data-grid/icons/three-dots-vertical.svg +5 -0
- package/src/assets/data-grid/icons/trash-red.svg +7 -0
- package/src/assets/data-grid/icons/ui-checks-grid.svg +3 -0
- package/src/assets/data-grid/icons/x.svg +3 -0
- package/src/assets/data-grid/icons/zoom-charge.svg +4 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +19 -0
- package/src/main.ts +7 -0
- package/src/styles.scss +3 -0
- package/tsconfig.app.json +14 -0
- package/tsconfig.json +44 -0
- package/tsconfig.spec.json +14 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<svg width="366" height="329" viewBox="0 0 366 329" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_7927_45750)">
|
|
3
|
+
<path d="M8.70341 138.516C14.2754 144.097 21.831 147.233 29.7097 147.233C35.6271 147.233 41.3663 145.458 46.2139 142.221L25.0738 163.406C19.5019 168.987 16.3704 176.555 16.3704 184.446C16.3704 192.337 19.5019 199.905 25.0738 205.485C30.6458 211.066 38.2014 214.203 46.0801 214.203C51.9976 214.203 57.7367 212.428 62.5843 209.191L51.4849 220.308C45.913 225.889 42.7815 233.457 42.7815 241.348C42.7815 249.239 45.913 256.807 51.4849 262.387C57.0569 267.968 64.6125 271.105 72.4912 271.105C78.4087 271.105 84.1478 269.33 88.9954 266.093L86.2874 268.805C80.7155 274.386 77.584 281.954 77.584 289.845C77.584 297.736 80.7155 305.304 86.2874 310.885C91.8594 316.466 99.415 319.602 107.294 319.602C115.172 319.602 122.728 316.466 128.3 310.885L156.461 282.679C153.218 287.535 151.457 293.283 151.457 299.21C151.457 307.101 154.589 314.668 160.161 320.249C165.732 325.83 173.288 328.967 181.167 328.967C189.046 328.967 196.601 325.83 202.173 320.249L244.955 277.4C241.712 282.255 239.951 288.003 239.951 293.93C239.951 301.821 243.082 309.389 248.654 314.97C254.226 320.551 261.782 323.687 269.661 323.687C277.54 323.687 285.095 320.551 290.667 314.97L357.274 248.257C362.846 242.676 365.978 235.108 365.978 227.217C365.978 219.326 362.846 211.758 357.274 206.177C351.702 200.597 344.147 197.46 336.268 197.46C330.351 197.46 324.611 199.235 319.764 202.472L333.705 188.509C339.277 182.928 342.408 175.36 342.408 167.469C342.408 159.578 339.277 152.01 333.705 146.429C328.133 140.849 320.577 137.712 312.699 137.712C306.781 137.712 301.042 139.487 296.194 142.724L324.355 114.518C329.927 108.937 333.059 101.37 333.059 93.4786C333.059 85.5873 329.927 78.0197 324.355 72.4389C318.783 66.8581 311.228 63.7217 303.349 63.7217C297.431 63.7217 291.692 65.4964 286.845 68.7333L304.775 50.7742C310.347 45.1934 313.479 37.6258 313.479 29.7346C313.479 21.8433 310.347 14.2757 304.775 8.6949C299.192 3.13642 291.637 0 283.758 0C275.879 0 268.323 3.13642 262.752 8.71723L222.812 48.7205C226.055 43.8652 227.815 38.1169 227.815 32.1901C227.815 24.2989 224.684 16.7313 219.112 11.1505C213.54 5.56965 205.984 2.43323 198.106 2.43323C190.227 2.43323 182.671 5.56965 177.099 11.1505L121.023 67.2934C124.266 62.4381 126.027 56.6899 126.027 50.7631C126.027 42.8718 122.895 35.3042 117.323 29.7234C111.751 24.1426 104.196 21.0062 96.317 21.0062C88.4382 21.0062 80.8826 24.1426 75.3107 29.7234L8.70341 96.4253C3.13144 102.006 0 109.574 0 117.476C0 125.379 3.13144 132.935 8.70341 138.516Z" fill="white"/>
|
|
4
|
+
<path d="M347.267 234.706L345.217 236.76C344.414 237.564 344.414 238.87 345.217 239.673C346.019 240.477 347.323 240.477 348.125 239.673L350.176 237.62L352.226 239.673C353.028 240.477 354.332 240.477 355.135 239.673C355.937 238.87 355.937 237.564 355.135 236.76L353.084 234.706L355.135 232.653C355.937 231.849 355.937 230.543 355.135 229.739C354.733 229.338 354.21 229.137 353.675 229.137C353.14 229.137 352.616 229.338 352.215 229.739L350.164 231.793L348.114 229.739C347.713 229.338 347.189 229.137 346.654 229.137C346.119 229.137 345.595 229.338 345.194 229.739C344.392 230.543 344.392 231.849 345.194 232.653L347.267 234.706Z" fill="white"/>
|
|
5
|
+
<path d="M71.3435 309.735L69.293 311.788C68.4906 312.592 68.4906 313.898 69.293 314.702C70.0954 315.505 71.3992 315.505 72.2016 314.702L74.2521 312.648L76.3025 314.702C77.1049 315.505 78.4087 315.505 79.2111 314.702C80.0135 313.898 80.0135 312.592 79.2111 311.788L77.1606 309.735L79.2111 307.681C80.0135 306.877 80.0135 305.571 79.2111 304.768C78.8099 304.366 78.2862 304.165 77.7512 304.165C77.2275 304.165 76.6926 304.366 76.2914 304.768L74.2409 306.821L72.1904 304.768C71.7892 304.366 71.2655 304.165 70.7306 304.165C70.2068 304.165 69.6719 304.366 69.2707 304.768C68.4684 305.571 68.4684 306.877 69.2707 307.681L71.3435 309.735Z" fill="white"/>
|
|
6
|
+
<path d="M18.7329 127.209L16.6824 129.263C15.88 130.067 15.88 131.373 16.6824 132.176C17.4848 132.98 18.7886 132.98 19.591 132.176L21.6415 130.122L23.6919 132.176C24.4943 132.98 25.7981 132.98 26.6005 132.176C27.4029 131.373 27.4029 130.067 26.6005 129.263L24.55 127.209L26.6005 125.156C27.4029 124.352 27.4029 123.046 26.6005 122.242C26.1993 121.841 25.6756 121.64 25.1407 121.64C24.6169 121.64 24.082 121.841 23.6808 122.242L21.6303 124.296L19.5798 122.242C19.1786 121.841 18.6549 121.64 18.12 121.64C17.5962 121.64 17.0613 121.841 16.6601 122.242C15.8578 123.046 15.8578 124.352 16.6601 125.156L18.7329 127.209Z" fill="white"/>
|
|
7
|
+
<path d="M266.195 21.3743L264.145 23.4281C263.342 24.2317 263.342 25.5376 264.145 26.3413C264.947 27.1449 266.251 27.1449 267.053 26.3413L269.104 24.2875L271.154 26.3413C271.956 27.1449 273.26 27.1449 274.063 26.3413C274.865 25.5376 274.865 24.2317 274.063 23.4281L272.012 21.3743L274.063 19.3206C274.865 18.517 274.865 17.2111 274.063 16.4074C273.661 16.0056 273.138 15.8047 272.603 15.8047C272.068 15.8047 271.544 16.0056 271.143 16.4074L269.092 18.4612L267.042 16.4074C266.641 16.0056 266.117 15.8047 265.582 15.8047C265.058 15.8047 264.523 16.0056 264.122 16.4074C263.32 17.2111 263.32 18.517 264.122 19.3206L266.195 21.3743Z" fill="white"/>
|
|
8
|
+
<path d="M228.551 312.604C231.861 312.604 234.557 315.305 234.557 318.62C234.557 321.935 231.861 324.636 228.551 324.636C225.241 324.636 222.544 321.935 222.544 318.62C222.544 315.305 225.241 312.604 228.551 312.604ZM228.551 320.528C229.598 320.528 230.445 319.68 230.445 318.631C230.445 317.582 229.598 316.733 228.551 316.733C227.503 316.733 226.656 317.582 226.656 318.631C226.656 319.669 227.503 320.528 228.551 320.528Z" fill="white"/>
|
|
9
|
+
<path d="M341.84 120.758C345.15 120.758 347.847 123.459 347.847 126.774C347.847 130.089 345.15 132.79 341.84 132.79C338.53 132.79 335.833 130.089 335.833 126.774C335.833 123.459 338.53 120.758 341.84 120.758ZM341.84 128.683C342.888 128.683 343.735 127.834 343.735 126.785C343.735 125.736 342.888 124.888 341.84 124.888C340.793 124.888 339.946 125.736 339.946 126.785C339.946 127.834 340.793 128.683 341.84 128.683Z" fill="white"/>
|
|
10
|
+
<path d="M90.199 24.1426C93.5087 24.1426 96.2055 26.8437 96.2055 30.1587C96.2055 33.4737 93.5087 36.1748 90.199 36.1748C86.8892 36.1748 84.1924 33.4737 84.1924 30.1587C84.1924 26.8437 86.8892 24.1426 90.199 24.1426ZM90.199 32.0562C91.2465 32.0562 92.0934 31.2079 92.0934 30.1587C92.0934 29.1095 91.2465 28.2612 90.199 28.2612C89.1514 28.2612 88.3045 29.1095 88.3045 30.1587C88.3045 31.2079 89.1626 32.0562 90.199 32.0562Z" fill="white"/>
|
|
11
|
+
<path d="M16.3147 211.145C19.6244 211.145 22.3213 213.846 22.3213 217.161C22.3213 220.476 19.6244 223.177 16.3147 223.177C13.0049 223.177 10.3081 220.476 10.3081 217.161C10.3081 213.846 13.0049 211.145 16.3147 211.145ZM16.3147 219.058C17.3622 219.058 18.2091 218.21 18.2091 217.161C18.2091 216.111 17.3622 215.263 16.3147 215.263C15.2672 215.263 14.4202 216.111 14.4202 217.161C14.4202 218.21 15.2672 219.058 16.3147 219.058Z" fill="white"/>
|
|
12
|
+
<path d="M8.70341 138.516C14.2754 144.097 21.831 147.233 29.7097 147.233C35.6271 147.233 41.3663 145.458 46.2139 142.221L25.0738 163.406C19.5019 168.987 16.3704 176.555 16.3704 184.446C16.3704 192.337 19.5019 199.905 25.0738 205.485C30.6458 211.066 38.2014 214.203 46.0801 214.203C51.9976 214.203 57.7367 212.428 62.5843 209.191L51.4849 220.308C45.913 225.889 42.7815 233.457 42.7815 241.348C42.7815 249.239 45.913 256.807 51.4849 262.387C57.0569 267.968 64.6125 271.105 72.4912 271.105C78.4087 271.105 84.1478 269.33 88.9954 266.093L86.2874 268.805C80.7155 274.386 77.584 281.954 77.584 289.845C77.584 297.736 80.7155 305.304 86.2874 310.885C91.8594 316.466 99.415 319.602 107.294 319.602C115.172 319.602 122.728 316.466 128.3 310.885L156.461 282.679C153.218 287.535 151.457 293.283 151.457 299.21C151.457 307.101 154.589 314.668 160.161 320.249C165.732 325.83 173.288 328.967 181.167 328.967C189.046 328.967 196.601 325.83 202.173 320.249L244.955 277.4C241.712 282.255 239.951 288.003 239.951 293.93C239.951 301.821 243.082 309.389 248.654 314.97C254.226 320.551 261.782 323.687 269.661 323.687C277.54 323.687 285.095 320.551 290.667 314.97L357.274 248.257C362.846 242.676 365.978 235.108 365.978 227.217C365.978 219.326 362.846 211.758 357.274 206.177C351.702 200.597 344.147 197.46 336.268 197.46C330.351 197.46 324.611 199.235 319.764 202.472L333.705 188.509C339.277 182.928 342.408 175.36 342.408 167.469C342.408 159.578 339.277 152.01 333.705 146.429C328.133 140.849 320.577 137.712 312.699 137.712C306.781 137.712 301.042 139.487 296.194 142.724L324.355 114.518C329.927 108.937 333.059 101.37 333.059 93.4786C333.059 85.5873 329.927 78.0197 324.355 72.4389C318.783 66.8581 311.228 63.7217 303.349 63.7217C297.431 63.7217 291.692 65.4964 286.845 68.7333L304.775 50.7742C310.347 45.1934 313.479 37.6258 313.479 29.7346C313.479 21.8433 310.347 14.2757 304.775 8.6949C299.192 3.13642 291.637 0 283.758 0C275.879 0 268.323 3.13642 262.752 8.71723L222.812 48.7205C226.055 43.8652 227.815 38.1169 227.815 32.1901C227.815 24.2989 224.684 16.7313 219.112 11.1505C213.54 5.56965 205.984 2.43323 198.106 2.43323C190.227 2.43323 182.671 5.56965 177.099 11.1505L121.023 67.2934C124.266 62.4381 126.027 56.6899 126.027 50.7631C126.027 42.8718 122.895 35.3042 117.323 29.7234C111.751 24.1426 104.196 21.0062 96.317 21.0062C88.4382 21.0062 80.8826 24.1426 75.3107 29.7234L8.70341 96.4253C3.13144 102.006 0 109.574 0 117.476C0 125.379 3.13144 132.935 8.70341 138.516Z" fill="#6F61CF" fill-opacity="0.16"/>
|
|
13
|
+
<path d="M347.267 234.706L345.217 236.76C344.414 237.564 344.414 238.87 345.217 239.673C346.019 240.477 347.323 240.477 348.125 239.673L350.176 237.62L352.226 239.673C353.028 240.477 354.332 240.477 355.135 239.673C355.937 238.87 355.937 237.564 355.135 236.76L353.084 234.706L355.135 232.653C355.937 231.849 355.937 230.543 355.135 229.739C354.733 229.338 354.21 229.137 353.675 229.137C353.14 229.137 352.616 229.338 352.215 229.739L350.164 231.793L348.114 229.739C347.713 229.338 347.189 229.137 346.654 229.137C346.119 229.137 345.595 229.338 345.194 229.739C344.392 230.543 344.392 231.849 345.194 232.653L347.267 234.706Z" fill="#6F61CF"/>
|
|
14
|
+
<path d="M71.3435 309.735L69.293 311.788C68.4906 312.592 68.4906 313.898 69.293 314.702C70.0954 315.505 71.3992 315.505 72.2016 314.702L74.2521 312.648L76.3025 314.702C77.1049 315.505 78.4087 315.505 79.2111 314.702C80.0135 313.898 80.0135 312.592 79.2111 311.788L77.1606 309.735L79.2111 307.681C80.0135 306.877 80.0135 305.571 79.2111 304.768C78.8099 304.366 78.2862 304.165 77.7512 304.165C77.2275 304.165 76.6926 304.366 76.2914 304.768L74.2409 306.821L72.1904 304.768C71.7892 304.366 71.2655 304.165 70.7306 304.165C70.2068 304.165 69.6719 304.366 69.2707 304.768C68.4684 305.571 68.4684 306.877 69.2707 307.681L71.3435 309.735Z" fill="#6F61CF"/>
|
|
15
|
+
<path d="M18.7329 127.209L16.6824 129.263C15.88 130.067 15.88 131.373 16.6824 132.176C17.4848 132.98 18.7886 132.98 19.591 132.176L21.6415 130.122L23.6919 132.176C24.4943 132.98 25.7981 132.98 26.6005 132.176C27.4029 131.373 27.4029 130.067 26.6005 129.263L24.55 127.209L26.6005 125.156C27.4029 124.352 27.4029 123.046 26.6005 122.242C26.1993 121.841 25.6756 121.64 25.1407 121.64C24.6169 121.64 24.082 121.841 23.6808 122.242L21.6303 124.296L19.5798 122.242C19.1786 121.841 18.6549 121.64 18.12 121.64C17.5962 121.64 17.0613 121.841 16.6601 122.242C15.8578 123.046 15.8578 124.352 16.6601 125.156L18.7329 127.209Z" fill="#6F61CF"/>
|
|
16
|
+
<path d="M266.195 21.3743L264.145 23.4281C263.342 24.2317 263.342 25.5376 264.145 26.3413C264.947 27.1449 266.251 27.1449 267.053 26.3413L269.104 24.2875L271.154 26.3413C271.956 27.1449 273.26 27.1449 274.063 26.3413C274.865 25.5376 274.865 24.2317 274.063 23.4281L272.012 21.3743L274.063 19.3206C274.865 18.517 274.865 17.2111 274.063 16.4074C273.661 16.0056 273.138 15.8047 272.603 15.8047C272.068 15.8047 271.544 16.0056 271.143 16.4074L269.092 18.4612L267.042 16.4074C266.641 16.0056 266.117 15.8047 265.582 15.8047C265.058 15.8047 264.523 16.0056 264.122 16.4074C263.32 17.2111 263.32 18.517 264.122 19.3206L266.195 21.3743Z" fill="#6F61CF"/>
|
|
17
|
+
<path d="M228.551 312.604C231.861 312.604 234.557 315.305 234.557 318.62C234.557 321.935 231.861 324.636 228.551 324.636C225.241 324.636 222.544 321.935 222.544 318.62C222.544 315.305 225.241 312.604 228.551 312.604ZM228.551 320.528C229.598 320.528 230.445 319.68 230.445 318.631C230.445 317.582 229.598 316.733 228.551 316.733C227.503 316.733 226.656 317.582 226.656 318.631C226.656 319.669 227.503 320.528 228.551 320.528Z" fill="#6F61CF"/>
|
|
18
|
+
<path d="M341.84 120.758C345.15 120.758 347.847 123.459 347.847 126.774C347.847 130.089 345.15 132.79 341.84 132.79C338.53 132.79 335.833 130.089 335.833 126.774C335.833 123.459 338.53 120.758 341.84 120.758ZM341.84 128.683C342.888 128.683 343.735 127.834 343.735 126.785C343.735 125.736 342.888 124.888 341.84 124.888C340.793 124.888 339.946 125.736 339.946 126.785C339.946 127.834 340.793 128.683 341.84 128.683Z" fill="#6F61CF"/>
|
|
19
|
+
<path d="M90.199 24.1426C93.5087 24.1426 96.2055 26.8437 96.2055 30.1587C96.2055 33.4737 93.5087 36.1748 90.199 36.1748C86.8892 36.1748 84.1924 33.4737 84.1924 30.1587C84.1924 26.8437 86.8892 24.1426 90.199 24.1426ZM90.199 32.0562C91.2465 32.0562 92.0934 31.2079 92.0934 30.1587C92.0934 29.1095 91.2465 28.2612 90.199 28.2612C89.1514 28.2612 88.3045 29.1095 88.3045 30.1587C88.3045 31.2079 89.1626 32.0562 90.199 32.0562Z" fill="#6F61CF"/>
|
|
20
|
+
<path d="M16.3147 211.145C19.6244 211.145 22.3213 213.846 22.3213 217.161C22.3213 220.476 19.6244 223.177 16.3147 223.177C13.0049 223.177 10.3081 220.476 10.3081 217.161C10.3081 213.846 13.0049 211.145 16.3147 211.145ZM16.3147 219.058C17.3622 219.058 18.2091 218.21 18.2091 217.161C18.2091 216.111 17.3622 215.263 16.3147 215.263C15.2672 215.263 14.4202 216.111 14.4202 217.161C14.4202 218.21 15.2672 219.058 16.3147 219.058Z" fill="#6F61CF"/>
|
|
21
|
+
<path d="M222.496 118.388H181.864C179.254 118.388 176.685 117.613 174.524 116.145L168.876 112.332C166.675 110.864 164.085 110.069 161.455 110.069H128.04C124.186 110.069 121.047 113.189 121.047 117.062V153.883H229.469V125.381C229.49 121.507 226.37 118.388 222.496 118.388Z" fill="#6F61CF"/>
|
|
22
|
+
<path d="M214.015 126.543H138.478C135.706 126.543 133.463 128.786 133.463 131.558V138.021H219.031V131.558C219.031 128.806 216.788 126.543 214.015 126.543Z" fill="white"/>
|
|
23
|
+
<path d="M229.49 203.507V145.035C229.49 141.182 226.37 138.042 222.496 138.042H128.04C124.186 138.042 121.047 141.161 121.047 145.035V203.528C121.047 204.323 121.699 204.975 122.494 204.975H228.042C228.837 204.955 229.49 204.302 229.49 203.507Z" fill="#8577E4"/>
|
|
24
|
+
<path d="M229.489 199.979V205.668C229.489 209.521 226.37 212.661 222.496 212.661H128.04C125.389 212.661 123.085 211.193 121.903 209.011C121.373 208.012 121.067 206.891 121.067 205.688V200C137.826 201.488 152.321 202.344 174.136 202.344C195.951 202.344 212.731 201.468 229.489 199.979Z" fill="#6F61CF"/>
|
|
25
|
+
<g clip-path="url(#clip1_7927_45750)">
|
|
26
|
+
<path d="M166.66 238.57C166.355 238.339 165.949 238.134 165.721 237.826C165.036 236.902 165.62 235.594 166.736 235.414C166.99 235.363 167.269 235.363 167.548 235.363C172.825 235.363 178.128 235.363 183.405 235.363C183.685 235.363 183.938 235.363 184.217 235.414C184.902 235.517 185.308 235.953 185.461 236.594C185.613 237.262 185.41 237.801 184.877 238.211C184.699 238.365 184.496 238.468 184.293 238.57C178.433 238.57 172.546 238.57 166.66 238.57Z" fill="#BDB4FF"/>
|
|
27
|
+
<path d="M186.069 190.571C186.069 190.956 186.069 191.213 186.069 191.495C186.069 199.552 186.044 207.584 186.095 215.641C186.095 217.232 185.004 218.438 183.38 218.413C178.103 218.387 172.851 218.413 167.573 218.387C166.457 218.387 166.127 218.079 166 216.976C165.949 216.565 165.975 216.155 165.975 215.744C165.975 207.661 165.975 199.552 165.975 191.469C165.975 191.213 165.975 190.93 165.975 190.597C165.67 190.571 165.442 190.571 165.188 190.571C162.118 190.571 159.048 190.571 155.953 190.571C155.648 190.571 155.318 190.545 155.014 190.468C153.948 190.212 153.466 189.032 154.075 188.108C154.253 187.851 154.481 187.62 154.71 187.389C161.179 180.974 167.675 174.559 174.145 168.144C175.109 167.169 175.844 167.169 176.834 168.118C183.355 174.559 189.85 181 196.345 187.466C196.675 187.774 196.954 188.21 197.081 188.647C197.309 189.416 196.802 190.238 196.041 190.443C195.711 190.52 195.381 190.545 195.026 190.545C192.311 190.545 189.596 190.545 186.881 190.545C186.628 190.571 186.399 190.571 186.069 190.571Z" fill="#BDB4FF"/>
|
|
28
|
+
<path d="M175.489 228.644C178.128 228.644 180.767 228.644 183.431 228.644C183.71 228.644 183.989 228.644 184.243 228.695C184.978 228.824 185.537 229.491 185.537 230.235C185.537 230.979 185.004 231.646 184.268 231.8C184.04 231.852 183.811 231.852 183.583 231.852C178.179 231.852 172.774 231.852 167.37 231.852C167.167 231.852 166.964 231.852 166.761 231.826C165.975 231.698 165.417 231.03 165.417 230.261C165.417 229.491 166 228.798 166.787 228.721C167.243 228.67 167.725 228.695 168.208 228.695C170.643 228.644 173.054 228.644 175.489 228.644Z" fill="#BDB4FF"/>
|
|
29
|
+
<path d="M175.438 225.106C172.774 225.106 170.11 225.106 167.446 225.106C167.04 225.106 166.584 225.029 166.203 224.85C165.619 224.567 165.366 224.003 165.442 223.361C165.518 222.694 165.873 222.207 166.533 222.027C166.812 221.95 167.116 221.924 167.395 221.924C172.774 221.924 178.153 221.924 183.532 221.924C183.837 221.924 184.166 221.95 184.471 222.053C185.131 222.258 185.562 222.951 185.511 223.644C185.46 224.362 184.953 224.952 184.242 225.081C183.963 225.132 183.659 225.132 183.354 225.132C180.741 225.106 178.102 225.106 175.438 225.106Z" fill="#BDB4FF"/>
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
<defs>
|
|
33
|
+
<clipPath id="clip0_7927_45750">
|
|
34
|
+
<rect width="366" height="329" fill="white"/>
|
|
35
|
+
</clipPath>
|
|
36
|
+
<clipPath id="clip1_7927_45750">
|
|
37
|
+
<rect width="43.3101" height="70.2326" fill="white" transform="translate(197.132 237.658) rotate(-180)"/>
|
|
38
|
+
</clipPath>
|
|
39
|
+
</defs>
|
|
40
|
+
</svg>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<svg width="56" height="64" viewBox="0 0 56 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_5801_29330)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.1807 0H38.0751C38.0378 0.23314 38.0176 0.470881 38.0176 0.713224V12.9684C38.0176 15.4517 40.075 17.4824 42.5909 17.4824H56V59.8955C56 62.1533 54.129 64 51.8416 64H11.1807C8.8933 64 7.02234 62.1533 7.02234 59.8955V4.10449C7.02234 1.84671 8.8933 0 11.1807 0Z" fill="url(#paint0_linear_5801_29330)"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.44904 14.0712H34.1451C35.4924 14.0712 36.5942 15.1587 36.5942 16.4885V24.9475C36.5942 26.2773 35.4924 27.3648 34.1451 27.3648H2.44904C1.10176 27.3633 0 26.2758 0 24.946V16.487C0 15.1587 1.10176 14.0712 2.44904 14.0712Z" fill="url(#paint1_radial_5801_29330)"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.0751 0L55.9984 17.4824H42.5893C40.0735 17.4824 38.016 15.4517 38.016 12.9684V0.713224C38.0176 0.470881 38.0378 0.23314 38.0751 0Z" fill="url(#paint2_linear_5801_29330)"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.23759 16.625H9.06424L10.5327 19.1435L11.9577 16.625H14.7486L12.1722 20.5899L14.991 24.8079H12.1084L10.4815 22.1805L8.84358 24.8079H5.9843L8.84203 20.5439L6.23759 16.625Z" fill="black"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.8115 16.625H18.3709V22.7971H22.377V24.8079H15.8115V16.625Z" fill="black"/>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.0949 22.1023L25.5269 21.952C25.5797 22.34 25.6869 22.6376 25.8485 22.84C26.1127 23.1698 26.4888 23.3355 26.9798 23.3355C27.345 23.3355 27.6263 23.2511 27.8236 23.0824C28.0225 22.9137 28.1204 22.7173 28.1204 22.4934C28.1204 22.2817 28.0272 22.0915 27.8407 21.9244C27.6542 21.7572 27.2176 21.6007 26.5323 21.4504C25.4088 21.2035 24.61 20.8722 24.1314 20.458C23.6497 20.047 23.4073 19.5209 23.4073 18.8813C23.4073 18.4625 23.5316 18.0653 23.7771 17.6926C24.0242 17.3168 24.394 17.0238 24.8897 16.8106C25.3855 16.5974 26.0645 16.4901 26.927 16.4901C27.9868 16.4901 28.7933 16.6848 29.3481 17.0744C29.9044 17.4625 30.2338 18.0822 30.3395 18.9319L27.9308 19.073C27.8671 18.7018 27.7319 18.4319 27.5284 18.2631C27.3217 18.0944 27.0389 18.0101 26.6768 18.0101C26.38 18.0101 26.1531 18.0729 26.0039 18.1972C25.8532 18.3214 25.7786 18.4733 25.7786 18.6527C25.7786 18.7816 25.8408 18.8981 25.962 19.0024C26.0801 19.1113 26.366 19.2095 26.8167 19.3031C27.9355 19.5408 28.7373 19.7832 29.2191 20.027C29.7039 20.2709 30.0567 20.5715 30.2758 20.9335C30.4964 21.294 30.6052 21.6974 30.6052 22.1452C30.6052 22.6698 30.4591 23.1529 30.1654 23.5962C29.8702 24.038 29.4615 24.3754 28.9316 24.6039C28.4048 24.8325 27.7413 24.946 26.9379 24.946C25.5284 24.946 24.5525 24.6776 24.0102 24.1423C23.4725 23.607 23.1664 22.9259 23.0949 22.1023Z" fill="black"/>
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.0935 42.7214H45.9288H46.7182V43.499V48.2431V49.0208H45.9288H17.0935H16.3041V48.2431V43.499V42.7214H17.0935ZM45.1409 44.2782H17.8814V47.4655H45.1394V44.2782H45.1409Z" fill="white"/>
|
|
10
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.0935 32.8789H45.9288H46.7182V33.6565V53.3431V54.1207H45.9288H17.0935H16.3041V53.3431V33.6565V32.8789H17.0935ZM45.1409 34.4357H17.8814V52.5654H45.1394V34.4357H45.1409Z" fill="white"/>
|
|
11
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.0935 32.8789H45.9288H46.7182V33.6565V38.9927V39.7703H45.9288H17.0935H16.3041V38.9927V33.6565V32.8789H17.0935ZM45.1409 34.4357H17.8814V38.2151H45.1394V34.4357H45.1409Z" fill="white"/>
|
|
12
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.8814 42.7214H45.1394V39.7719H17.8814V42.7214ZM45.9288 44.2783H17.0935H16.3041V43.5006V38.9943V38.2166H17.0935H45.9288H46.7182V38.9943V43.5006V44.2783H45.9288Z" fill="white"/>
|
|
13
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.8814 52.5655H45.1394V49.0223H17.8814V52.5655ZM45.9288 54.1207H17.0935H16.3041V53.3431V48.2432V47.4655H17.0935H45.9288H46.7182V48.2432V53.3431V54.1207H45.9288Z" fill="white"/>
|
|
14
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.6613 32.8789H45.9288H46.7182V33.6565V53.3431V54.1207H45.9288H24.6613H23.8735V53.3431V33.6565V32.8789H24.6613ZM45.1409 34.4357H25.4507V52.5654H45.1409V34.4357Z" fill="white"/>
|
|
15
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M35.2345 32.8789H45.9288H46.7182V33.6565V53.3431V54.1207H45.9288H35.2345H34.4466V53.3431V33.6565V32.8789H35.2345ZM45.1409 34.4357H36.0239V52.5654H45.1409V34.4357Z" fill="white"/>
|
|
16
|
+
</g>
|
|
17
|
+
<defs>
|
|
18
|
+
<linearGradient id="paint0_linear_5801_29330" x1="10.5298" y1="62.0131" x2="44.4719" y2="12.1767" gradientUnits="userSpaceOnUse">
|
|
19
|
+
<stop stop-color="#0A0F05"/>
|
|
20
|
+
<stop offset="1" stop-color="#94D285"/>
|
|
21
|
+
</linearGradient>
|
|
22
|
+
<radialGradient id="paint1_radial_5801_29330" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.2957 20.7168) rotate(30.4768) scale(18.5753 17.2581)">
|
|
23
|
+
<stop stop-color="white"/>
|
|
24
|
+
<stop offset="1" stop-color="#C1BEB9"/>
|
|
25
|
+
</radialGradient>
|
|
26
|
+
<linearGradient id="paint2_linear_5801_29330" x1="43.2776" y1="12.5098" x2="39.7871" y2="16.101" gradientUnits="userSpaceOnUse">
|
|
27
|
+
<stop stop-color="#C1BEB9"/>
|
|
28
|
+
<stop offset="1" stop-color="white"/>
|
|
29
|
+
</linearGradient>
|
|
30
|
+
<clipPath id="clip0_5801_29330">
|
|
31
|
+
<rect width="56" height="64" fill="white"/>
|
|
32
|
+
</clipPath>
|
|
33
|
+
</defs>
|
|
34
|
+
</svg>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<svg width="52" height="63" viewBox="0 0 52 63" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_7210_31739)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.3821 0H35.3554C35.3208 0.227987 35.3021 0.463524 35.3021 0.70208V12.7658C35.3021 15.2102 37.2125 17.2093 39.5487 17.2093H52V58.9596C52 61.1821 50.2627 63 48.1386 63H10.3821C8.25808 63 6.52075 61.1821 6.52075 58.9596V4.04036C6.52075 1.81786 8.25808 0 10.3821 0Z" fill="url(#paint0_linear_7210_31739)"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.27411 13.8514H31.7062C32.9572 13.8514 33.9803 14.9219 33.9803 16.2309V24.5577C33.9803 25.8668 32.9572 26.9373 31.7062 26.9373H2.27411C1.02306 26.9357 0 25.8653 0 24.5562V16.2294C0 14.9219 1.02306 13.8514 2.27411 13.8514Z" fill="url(#paint1_radial_7210_31739)"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M35.3554 0L51.9985 17.2093H39.5472C37.2111 17.2093 35.3006 15.2102 35.3006 12.7658V0.70208C35.302 0.463524 35.3208 0.227987 35.3554 0Z" fill="url(#paint2_linear_7210_31739)"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.22498 17H4.73568L6.04003 19.4622L7.30573 17H9.78468L7.4962 20.8763L10 25H7.43961L5.99448 22.4313L4.53968 25H2L4.5383 20.8313L2.22498 17Z" fill="black"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.225 17H27.7357L29.04 19.4622L30.3057 17H32.7847L30.4962 20.8763L33 25H30.4396L28.9945 22.4313L27.5397 25H25L27.5383 20.8313L25.225 17Z" fill="black"/>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 17H12.9491V23.0341H16V25H11V17Z" fill="black"/>
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17 22.3096L19.2667 22.1674C19.316 22.5346 19.4159 22.8161 19.5665 23.0076C19.8127 23.3196 20.1633 23.4763 20.6209 23.4763C20.9613 23.4763 21.2235 23.3965 21.4074 23.2369C21.5928 23.0773 21.684 22.8915 21.684 22.6797C21.684 22.4794 21.5971 22.2995 21.4233 22.1413C21.2495 21.9831 20.8425 21.8351 20.2038 21.6929C19.1566 21.4593 18.4122 21.1458 17.9661 20.754C17.5171 20.3651 17.2911 19.8674 17.2911 19.2623C17.2911 18.8661 17.407 18.4903 17.6358 18.1377C17.8661 17.7822 18.2108 17.505 18.6729 17.3033C19.1349 17.1016 19.7678 17 20.5717 17C21.5595 17 22.3112 17.1843 22.8283 17.5529C23.3468 17.92 23.6538 18.5063 23.7523 19.3102L21.5073 19.4437C21.448 19.0925 21.322 18.8371 21.1322 18.6775C20.9396 18.5179 20.676 18.4381 20.3385 18.4381C20.0619 18.4381 19.8504 18.4976 19.7114 18.6151C19.5709 18.7326 19.5013 18.8763 19.5013 19.0461C19.5013 19.168 19.5593 19.2783 19.6723 19.3769C19.7823 19.48 20.0488 19.5728 20.4689 19.6613C21.5117 19.8863 22.2591 20.1155 22.708 20.3463C23.1599 20.577 23.4887 20.8614 23.6929 21.2039C23.8986 21.5449 24 21.9265 24 22.3503C24 22.8465 23.8639 23.3036 23.5901 23.723C23.3149 24.1409 22.934 24.4602 22.4401 24.6764C21.9491 24.8926 21.3306 25 20.5818 25C19.2682 25 18.3586 24.7461 17.8531 24.2396C17.352 23.7332 17.0666 23.0889 17 22.3096Z" fill="black"/>
|
|
10
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.7894 43.8425H43.6247H44.4141V44.6201V49.3642V50.1419H43.6247H14.7894H14V49.3642V44.6201V43.8425H14.7894ZM42.8368 45.3993H15.5773V48.5866H42.8353V45.3993H42.8368Z" fill="white"/>
|
|
11
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.7894 34H43.6247H44.4141V34.7776V54.4642V55.2418H43.6247H14.7894H14V54.4642V34.7776V34H14.7894ZM42.8368 35.5568H15.5773V53.6865H42.8353V35.5568H42.8368Z" fill="white"/>
|
|
12
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.7894 34H43.6247H44.4141V34.7776V40.1138V40.8914H43.6247H14.7894H14V40.1138V34.7776V34H14.7894ZM42.8368 35.5568H15.5773V39.3361H42.8353V35.5568H42.8368Z" fill="white"/>
|
|
13
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5773 43.8425H42.8353V40.893H15.5773V43.8425ZM43.6247 45.3993H14.7894H14V44.6217V40.1154V39.3377H14.7894H43.6247H44.4141V40.1154V44.6217V45.3993H43.6247Z" fill="white"/>
|
|
14
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5773 53.6865H42.8353V50.1434H15.5773V53.6865ZM43.6247 55.2418H14.7894H14V54.4642V49.3643V48.5866H14.7894H43.6247H44.4141V49.3643V54.4642V55.2418H43.6247Z" fill="white"/>
|
|
15
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.3572 34H43.6247H44.4141V34.7776V54.4642V55.2418H43.6247H22.3572H21.5693V54.4642V34.7776V34H22.3572ZM42.8368 35.5568H23.1466V53.6865H42.8368V35.5568Z" fill="white"/>
|
|
16
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.9303 34H43.6247H44.4141V34.7776V54.4642V55.2418H43.6247H32.9303H32.1425V54.4642V34.7776V34H32.9303ZM42.8368 35.5568H33.7197V53.6865H42.8368V35.5568Z" fill="white"/>
|
|
17
|
+
</g>
|
|
18
|
+
<defs>
|
|
19
|
+
<linearGradient id="paint0_linear_7210_31739" x1="9.7777" y1="61.044" x2="43.8603" y2="13.8383" gradientUnits="userSpaceOnUse">
|
|
20
|
+
<stop stop-color="#D750A5"/>
|
|
21
|
+
<stop offset="0.5" stop-color="#C6037E"/>
|
|
22
|
+
<stop offset="1" stop-color="#91027D"/>
|
|
23
|
+
</linearGradient>
|
|
24
|
+
<radialGradient id="paint1_radial_7210_31739" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(16.9888 20.393) rotate(31.9586) scale(17.521 16.7243)">
|
|
25
|
+
<stop stop-color="white"/>
|
|
26
|
+
<stop offset="1" stop-color="#C1BEB9"/>
|
|
27
|
+
</radialGradient>
|
|
28
|
+
<linearGradient id="paint2_linear_7210_31739" x1="40.1863" y1="12.3143" x2="36.7505" y2="15.6488" gradientUnits="userSpaceOnUse">
|
|
29
|
+
<stop stop-color="#C1BEB9"/>
|
|
30
|
+
<stop offset="1" stop-color="white"/>
|
|
31
|
+
</linearGradient>
|
|
32
|
+
<clipPath id="clip0_7210_31739">
|
|
33
|
+
<rect width="52" height="63" fill="white"/>
|
|
34
|
+
</clipPath>
|
|
35
|
+
</defs>
|
|
36
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-counterclockwise" viewBox="0 0 16 16">
|
|
2
|
+
<path fill-rule="evenodd" d="M8 3a5 5 0 1 1-4.546 2.914.5.5 0 0 0-.908-.417A6 6 0 1 0 8 2z"/>
|
|
3
|
+
<path d="M8 4.466V.534a.25.25 0 0 0-.41-.192L5.23 2.308a.25.25 0 0 0 0 .384l2.36 1.966A.25.25 0 0 0 8 4.466"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M7.99967 3.3335V12.6668M7.99967 12.6668L12.6663 8.00016M7.99967 12.6668L3.33301 8.00016" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.9997 16.6663L7.33301 11.9997M7.33301 11.9997L11.9997 7.33301M7.33301 11.9997H16.6663" stroke="#727272" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Free 7.0.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M566.6 342.6C579.1 330.1 579.1 309.8 566.6 297.3L406.6 137.3C394.1 124.8 373.8 124.8 361.3 137.3C348.8 149.8 348.8 170.1 361.3 182.6L466.7 288L96 288C78.3 288 64 302.3 64 320C64 337.7 78.3 352 96 352L466.7 352L361.3 457.4C348.8 469.9 348.8 490.2 361.3 502.7C373.8 515.2 394.1 515.2 406.6 502.7L566.6 342.7z"/></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_6502_18)">
|
|
3
|
+
<path d="M11.3483 0.728387L11.3182 0.756536L11.3145 1.50789L11.312 2.25924H5.71109C-0.396068 2.25924 0.0414083 2.25491 0.0126599 2.31879C-0.00358921 2.35668 -0.00483915 5.49526 0.0126599 5.53315C0.0189096 5.54831 0.0414083 5.5678 0.0614072 5.57754C0.0951551 5.59162 0.668874 5.59378 5.70485 5.59378H11.312L11.3145 6.34513L11.3182 7.09649L11.3483 7.12462C11.3845 7.15822 11.4533 7.16254 11.4995 7.13435C11.517 7.12353 12.4332 6.47505 13.5369 5.6923C14.6406 4.90955 15.6368 4.20259 15.7518 4.12247C15.8655 4.04127 15.9693 3.96007 15.9805 3.94167C16.0043 3.90702 16.0005 3.8713 15.9705 3.83882C15.9568 3.82258 11.5633 0.757618 11.4995 0.718643C11.4533 0.690494 11.3845 0.694825 11.3483 0.728387Z" fill="black"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_6502_18">
|
|
7
|
+
<rect width="16" height="7" fill="white" transform="translate(0 0.699707)"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.00033 12.6665L8.00033 3.33317M8.00033 3.33317L3.33366 7.99984M8.00033 3.33317L12.667 7.99984" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrows-angle-expand" viewBox="0 0 16 16">
|
|
2
|
+
<path fill-rule="evenodd" d="M5.828 10.172a.5.5 0 0 0-.707 0l-4.096 4.096V11.5a.5.5 0 0 0-1 0v3.975a.5.5 0 0 0 .5.5H4.5a.5.5 0 0 0 0-1H1.732l4.096-4.096a.5.5 0 0 0 0-.707m4.344-4.344a.5.5 0 0 0 .707 0l4.096-4.096V4.5a.5.5 0 1 0 1 0V.525a.5.5 0 0 0-.5-.5H11.5a.5.5 0 0 0 0 1h2.768l-4.096 4.096a.5.5 0 0 0 0 .707"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrows-expand-vertical" viewBox="0 0 16 16">
|
|
2
|
+
<path d="M8 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5M.146 8.354a.5.5 0 0 1 0-.708l2-2a.5.5 0 1 1 .708.708L1.707 7.5H5.5a.5.5 0 0 1 0 1H1.707l1.147 1.146a.5.5 0 0 1-.708.708zM10 8a.5.5 0 0 1 .5-.5h3.793l-1.147-1.146a.5.5 0 0 1 .708-.708l2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L14.293 8.5H10.5A.5.5 0 0 1 10 8"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrows-move" viewBox="0 0 16 16">
|
|
2
|
+
<path fill-rule="evenodd" d="M7.646.146a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1-.708.708L8.5 1.707V5.5a.5.5 0 0 1-1 0V1.707L6.354 2.854a.5.5 0 1 1-.708-.708zM8 10a.5.5 0 0 1 .5.5v3.793l1.146-1.147a.5.5 0 0 1 .708.708l-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 0 1 .708-.708L7.5 14.293V10.5A.5.5 0 0 1 8 10M.146 8.354a.5.5 0 0 1 0-.708l2-2a.5.5 0 1 1 .708.708L1.707 7.5H5.5a.5.5 0 0 1 0 1H1.707l1.147 1.146a.5.5 0 0 1-.708.708zM10 8a.5.5 0 0 1 .5-.5h3.793l-1.147-1.146a.5.5 0 0 1 .708-.708l2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L14.293 8.5H10.5A.5.5 0 0 1 10 8"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M21.1537 10.899L12.1381 19.9146C10.0878 21.9648 6.76372 21.9648 4.71347 19.9146C2.66322 17.8643 2.66322 14.5402 4.71347 12.49L13.7291 3.47435C15.0959 2.10751 17.312 2.10751 18.6788 3.47434C20.0457 4.84118 20.0457 7.05726 18.6788 8.42409L10.0168 17.0862C9.33335 17.7696 8.22531 17.7696 7.5419 17.0862C6.85848 16.4027 6.85848 15.2947 7.5419 14.6113L15.1433 7.00988" stroke="#515E8E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-ban" viewBox="0 0 16 16">
|
|
2
|
+
<path d="M15 8a6.97 6.97 0 0 0-1.71-4.584l-9.874 9.875A7 7 0 0 0 15 8M2.71 12.584l9.874-9.875a7 7 0 0 0-9.874 9.874ZM16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M7 8.5H12M7 12H15M9.68375 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V20.3355C3 20.8684 3 21.1348 3.10923 21.2716C3.20422 21.3906 3.34827 21.4599 3.50054 21.4597C3.67563 21.4595 3.88367 21.2931 4.29976 20.9602L6.68521 19.0518C7.17252 18.662 7.41617 18.4671 7.68749 18.3285C7.9282 18.2055 8.18443 18.1156 8.44921 18.0613C8.74767 18 9.0597 18 9.68375 18Z" stroke="#515E8E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="22" viewBox="0 0 20 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14 5V4.2C14 3.0799 14 2.51984 13.782 2.09202C13.5903 1.71569 13.2843 1.40973 12.908 1.21799C12.4802 1 11.9201 1 10.8 1H9.2C8.07989 1 7.51984 1 7.09202 1.21799C6.71569 1.40973 6.40973 1.71569 6.21799 2.09202C6 2.51984 6 3.0799 6 4.2V5M8 10.5V15.5M12 10.5V15.5M1 5H19M17 5V16.2C17 17.8802 17 18.7202 16.673 19.362C16.3854 19.9265 15.9265 20.3854 15.362 20.673C14.7202 21 13.8802 21 12.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V5" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-diagram-3" viewBox="0 0 16 16">
|
|
2
|
+
<path fill-rule="evenodd" d="M6 3.5A1.5 1.5 0 0 1 7.5 2h1A1.5 1.5 0 0 1 10 3.5v1A1.5 1.5 0 0 1 8.5 6v1H14a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0V8h-5v.5a.5.5 0 0 1-1 0V8h-5v.5a.5.5 0 0 1-1 0v-1A.5.5 0 0 1 2 7h5.5V6A1.5 1.5 0 0 1 6 4.5zM8.5 5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5zM0 11.5A1.5 1.5 0 0 1 1.5 10h1A1.5 1.5 0 0 1 4 11.5v1A1.5 1.5 0 0 1 2.5 14h-1A1.5 1.5 0 0 1 0 12.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm4.5.5A1.5 1.5 0 0 1 7.5 10h1a1.5 1.5 0 0 1 1.5 1.5v1A1.5 1.5 0 0 1 8.5 14h-1A1.5 1.5 0 0 1 6 12.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm4.5.5a1.5 1.5 0 0 1 1.5-1.5h1a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1-1.5 1.5h-1a1.5 1.5 0 0 1-1.5-1.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2.66699 11.333V12.6663C2.66699 13.02 2.80747 13.3591 3.05752 13.6092C3.30756 13.8592 3.6467 13.9997 4.00033 13.9997H12.0003C12.3539 13.9997 12.6931 13.8592 12.9431 13.6092C13.1932 13.3591 13.3337 13.02 13.3337 12.6663V11.333" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M4.66699 7.33301L8.00033 10.6663L11.3337 7.33301" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M8 2.66699V10.667" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17 9L13 5M1.49997 20.5L4.88434 20.124C5.29783 20.078 5.50457 20.055 5.69782 19.9925C5.86926 19.937 6.03242 19.8586 6.18286 19.7594C6.35242 19.6475 6.49951 19.5005 6.7937 19.2063L20 6C21.1046 4.89543 21.1046 3.10457 20 2C18.8954 0.895428 17.1046 0.895427 16 2L2.7937 15.2063C2.49952 15.5005 2.35242 15.6475 2.24061 15.8171C2.1414 15.9676 2.06298 16.1307 2.00748 16.3022C1.94493 16.4954 1.92195 16.7021 1.87601 17.1156L1.49997 20.5Z" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_298_2889)">
|
|
3
|
+
<path d="M8.58626 8.58626C8.38976 8.76936 8.23216 8.99016 8.12285 9.23549C8.01354 9.48083 7.95476 9.74566 7.95002 10.0142C7.94528 10.2827 7.99468 10.5495 8.09527 10.7985C8.19586 11.0476 8.34558 11.2738 8.53549 11.4637C8.72541 11.6536 8.95163 11.8033 9.20067 11.9039C9.4497 12.0045 9.71645 12.0539 9.98499 12.0492C10.2535 12.0444 10.5184 11.9857 10.7637 11.8763C11.009 11.767 11.2298 11.6094 11.4129 11.4129M9.15299 5.38634C9.43387 5.35135 9.71662 5.33354 9.99966 5.33301C14.6663 5.33301 16.6663 9.99967 16.6663 9.99967C16.3683 10.6378 15.9945 11.2376 15.553 11.7863M6.40634 6.40641C5.08051 7.3095 4.01959 8.54992 3.33301 9.99975C3.33301 9.99975 5.33301 14.6664 9.99967 14.6664C11.2769 14.6698 12.5269 14.2965 13.593 13.5931M3.33301 3.33301L16.6663 16.6663" stroke="#727272" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_298_2889">
|
|
7
|
+
<rect width="16" height="16" fill="white" transform="translate(2 2)"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M1.33301 7.99967C1.33301 7.99967 3.33301 3.33301 7.99967 3.33301C12.6663 3.33301 14.6663 7.99967 14.6663 7.99967C14.6663 7.99967 12.6663 12.6663 7.99967 12.6663C3.33301 12.6663 1.33301 7.99967 1.33301 7.99967Z" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M7.99967 9.99967C9.10424 9.99967 9.99967 9.10424 9.99967 7.99967C9.99967 6.89511 9.10424 5.99967 7.99967 5.99967C6.89511 5.99967 5.99967 6.89511 5.99967 7.99967C5.99967 9.10424 6.89511 9.99967 7.99967 9.99967Z" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2.66699 4H13.3337" stroke="black" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M4 8H12" stroke="black" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M6 12H10" stroke="black" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-grid-3x2-gap" viewBox="0 0 16 16">
|
|
2
|
+
<path d="M4 4v2H2V4zm1 7V9a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1m0-5V4a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1m5 5V9a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1m0-5V4a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1M9 4v2H7V4zm5 0h-2v2h2zM4 9v2H2V9zm5 0v2H7V9zm5 0v2h-2V9zm-3-5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1zm1 4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +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="M5.99967 8.66699C6.36786 8.66699 6.66634 8.36852 6.66634 8.00033C6.66634 7.63214 6.36786 7.33366 5.99967 7.33366C5.63148 7.33366 5.33301 7.63214 5.33301 8.00033C5.33301 8.36852 5.63148 8.66699 5.99967 8.66699Z" stroke="#727272" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M5.99967 4.00033C6.36786 4.00033 6.66634 3.70185 6.66634 3.33366C6.66634 2.96547 6.36786 2.66699 5.99967 2.66699C5.63148 2.66699 5.33301 2.96547 5.33301 3.33366C5.33301 3.70185 5.63148 4.00033 5.99967 4.00033Z" stroke="#727272" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M5.99967 13.3337C6.36786 13.3337 6.66634 13.0352 6.66634 12.667C6.66634 12.2988 6.36786 12.0003 5.99967 12.0003C5.63148 12.0003 5.33301 12.2988 5.33301 12.667C5.33301 13.0352 5.63148 13.3337 5.99967 13.3337Z" stroke="#727272" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M9.99967 8.66699C10.3679 8.66699 10.6663 8.36852 10.6663 8.00033C10.6663 7.63214 10.3679 7.33366 9.99967 7.33366C9.63148 7.33366 9.33301 7.63214 9.33301 8.00033C9.33301 8.36852 9.63148 8.66699 9.99967 8.66699Z" stroke="#727272" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M9.99967 4.00033C10.3679 4.00033 10.6663 3.70185 10.6663 3.33366C10.6663 2.96547 10.3679 2.66699 9.99967 2.66699C9.63148 2.66699 9.33301 2.96547 9.33301 3.33366C9.33301 3.70185 9.63148 4.00033 9.99967 4.00033Z" stroke="#727272" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M9.99967 13.3337C10.3679 13.3337 10.6663 13.0352 10.6663 12.667C10.6663 12.2988 10.3679 12.0003 9.99967 12.0003C9.63148 12.0003 9.33301 12.2988 9.33301 12.667C9.33301 13.0352 9.63148 13.3337 9.99967 13.3337Z" stroke="#727272" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2.66699 8.49967C2.66699 8.67649 2.73723 8.84605 2.86225 8.97108C2.98728 9.0961 3.15685 9.16634 3.33366 9.16634C3.51047 9.16634 3.68004 9.0961 3.80506 8.97108C3.93009 8.84605 4.00033 8.67649 4.00033 8.49967C4.00033 8.32286 3.93009 8.15329 3.80506 8.02827C3.68004 7.90325 3.51047 7.83301 3.33366 7.83301C3.15685 7.83301 2.98728 7.90325 2.86225 8.02827C2.73723 8.15329 2.66699 8.32286 2.66699 8.49967Z" stroke="#727272" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M7.33301 8.49967C7.33301 8.67649 7.40325 8.84605 7.52827 8.97108C7.65329 9.0961 7.82286 9.16634 7.99967 9.16634C8.17649 9.16634 8.34605 9.0961 8.47108 8.97108C8.5961 8.84605 8.66634 8.67649 8.66634 8.49967C8.66634 8.32286 8.5961 8.15329 8.47108 8.02827C8.34605 7.90325 8.17649 7.83301 7.99967 7.83301C7.82286 7.83301 7.65329 7.90325 7.52827 8.02827C7.40325 8.15329 7.33301 8.32286 7.33301 8.49967Z" stroke="#727272" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M12 8.49967C12 8.67649 12.0702 8.84605 12.1953 8.97108C12.3203 9.0961 12.4899 9.16634 12.6667 9.16634C12.8435 9.16634 13.013 9.0961 13.1381 8.97108C13.2631 8.84605 13.3333 8.67649 13.3333 8.49967C13.3333 8.32286 13.2631 8.15329 13.1381 8.02827C13.013 7.90325 12.8435 7.83301 12.6667 7.83301C12.4899 7.83301 12.3203 7.90325 12.1953 8.02827C12.0702 8.15329 12 8.32286 12 8.49967Z" stroke="#727272" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-justify" viewBox="0 0 16 16">
|
|
2
|
+
<path fill-rule="evenodd" d="M2 12.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5m0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-layout-three-columns" viewBox="0 0 16 16">
|
|
2
|
+
<path d="M0 1.5A1.5 1.5 0 0 1 1.5 0h13A1.5 1.5 0 0 1 16 1.5v13a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 14.5zM1.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 .5.5H5V1zM10 15V1H6v14zm1 0h3.5a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5H11z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +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="M8.66699 3.33301H14.0003" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M8.66699 6H12.0003" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M8.66699 10H14.0003" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M8.66699 12.667H12.0003" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M2 3.33366C2 3.15685 2.07024 2.98728 2.19526 2.86225C2.32029 2.73723 2.48986 2.66699 2.66667 2.66699H5.33333C5.51014 2.66699 5.67971 2.73723 5.80474 2.86225C5.92976 2.98728 6 3.15685 6 3.33366V6.00033C6 6.17714 5.92976 6.34671 5.80474 6.47173C5.67971 6.59675 5.51014 6.66699 5.33333 6.66699H2.66667C2.48986 6.66699 2.32029 6.59675 2.19526 6.47173C2.07024 6.34671 2 6.17714 2 6.00033V3.33366Z" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M2 9.99967C2 9.82286 2.07024 9.65329 2.19526 9.52827C2.32029 9.40325 2.48986 9.33301 2.66667 9.33301H5.33333C5.51014 9.33301 5.67971 9.40325 5.80474 9.52827C5.92976 9.65329 6 9.82286 6 9.99967V12.6663C6 12.8432 5.92976 13.0127 5.80474 13.1377C5.67971 13.2628 5.51014 13.333 5.33333 13.333H2.66667C2.48986 13.333 2.32029 13.2628 2.19526 13.1377C2.07024 13.0127 2 12.8432 2 12.6663V9.99967Z" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3.99919 13.0001C3.85423 12.9984 3.71066 13.0283 3.5784 13.0877C3.44615 13.147 3.32838 13.2344 3.23326 13.3438C3.13814 13.4532 3.06794 13.582 3.02752 13.7212C2.9871 13.8604 2.97743 14.0067 2.99919 14.1501C3.04621 14.3926 3.17728 14.6109 3.36934 14.7663C3.5614 14.9218 3.80213 15.0046 4.04919 15.0001H7.59919L2.34919 20.2501C2.15203 20.4235 2.03102 20.6676 2.01231 20.9296C1.9936 21.1915 2.07868 21.4503 2.24919 21.6501C2.33708 21.7642 2.45106 21.8555 2.58157 21.9164C2.71208 21.9773 2.85529 22.006 2.99919 22.0001C3.26296 21.9963 3.51456 21.8885 3.69919 21.7001L8.99919 16.4001V19.9501C8.99467 20.1971 9.07743 20.4379 9.23291 20.6299C9.38838 20.822 9.60661 20.953 9.84919 21.0001C9.99251 21.0218 10.1388 21.0122 10.2781 20.9717C10.4173 20.9313 10.546 20.8611 10.6554 20.766C10.7648 20.6709 10.8522 20.5531 10.9116 20.4208C10.9709 20.2886 11.0008 20.145 10.9992 20.0001V14.0001C10.9992 13.7348 10.8938 13.4805 10.7063 13.293C10.5188 13.1054 10.2644 13.0001 9.99919 13.0001H3.99919Z" fill="#6F61CF"/>
|
|
3
|
+
<path d="M21.8501 2.40009C21.7639 2.27871 21.6518 2.17809 21.5219 2.10556C21.3919 2.03303 21.2474 1.99042 21.0989 1.98083C20.9504 1.97125 20.8016 1.99494 20.6634 2.05017C20.5252 2.1054 20.4011 2.19078 20.3001 2.30009L15.0001 7.60009V4.05009C15.0046 3.80303 14.9218 3.56229 14.7663 3.37024C14.6109 3.17818 14.3926 3.04711 14.1501 3.00009C14.0067 2.97833 13.8604 2.988 13.7212 3.02842C13.582 3.06883 13.4532 3.13904 13.3438 3.23416C13.2344 3.32928 13.147 3.44705 13.0877 3.5793C13.0283 3.71155 12.9984 3.85513 13.0001 4.00009V10.0001C13.0001 10.2653 13.1054 10.5197 13.293 10.7072C13.4805 10.8947 13.7348 11.0001 14.0001 11.0001H19.9501C20.1971 11.0046 20.4379 10.9218 20.6299 10.7664C20.822 10.6109 20.953 10.3927 21.0001 10.1501C21.0218 10.0068 21.0122 9.86043 20.9717 9.72121C20.9313 9.582 20.8611 9.45323 20.766 9.34384C20.6709 9.23445 20.5531 9.14705 20.4208 9.08769C20.2886 9.02834 20.145 8.99844 20.0001 9.00009H16.4001L21.7001 3.75009C21.8652 3.57014 21.9687 3.34231 21.9957 3.0996C22.0226 2.85688 21.9716 2.61188 21.8501 2.40009Z" fill="#6F61CF"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.0003 3L7.33366 5.66667L4.66699 6.66667L3.66699 7.66667L8.33366 12.3333L9.33366 11.3333L10.3337 8.66667L13.0003 6" stroke="#007CF5" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M6 10L3 13" stroke="#007CF5" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M9.66699 2.66699L13.3337 6.33366" stroke="#007CF5" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6 2V14M10.6667 10L8.66667 8L10.6667 6M3.33333 2H12.6667C13.403 2 14 2.59695 14 3.33333V12.6667C14 13.403 13.403 14 12.6667 14H3.33333C2.59695 14 2 13.403 2 12.6667V3.33333C2 2.59695 2.59695 2 3.33333 2Z" stroke="black" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10 14L10 2M5.33333 6L7.33333 8L5.33333 10M12.6667 14L3.33333 14C2.59695 14 2 13.403 2 12.6667L2 3.33333C2 2.59695 2.59695 2 3.33333 2L12.6667 2C13.403 2 14 2.59695 14 3.33333L14 12.6667C14 13.403 13.403 14 12.6667 14Z" stroke="black" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.0003 3L7.33366 5.66667L4.66699 6.66667L3.66699 7.66667L8.33366 12.3333L9.33366 11.3333L10.3337 8.66667L13.0003 6" stroke="#727272" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M6 10L3 13" stroke="#727272" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M9.66699 2.66699L13.3337 6.33366" stroke="#727272" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14.0001 14L11.1335 11.1333M12.6667 7.33333C12.6667 10.2789 10.2789 12.6667 7.33333 12.6667C4.38781 12.6667 2 10.2789 2 7.33333C2 4.38781 4.38781 2 7.33333 2C10.2789 2 12.6667 4.38781 12.6667 7.33333Z" stroke="#737373" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.3337 4.66699H7.33366M9.33366 11.3337H3.33366M9.33366 11.3337C9.33366 12.4382 10.2291 13.3337 11.3337 13.3337C12.4382 13.3337 13.3337 12.4382 13.3337 11.3337C13.3337 10.2291 12.4382 9.33366 11.3337 9.33366C10.2291 9.33366 9.33366 10.2291 9.33366 11.3337ZM6.66699 4.66699C6.66699 5.77156 5.77156 6.66699 4.66699 6.66699C3.56242 6.66699 2.66699 5.77156 2.66699 4.66699C2.66699 3.56242 3.56242 2.66699 4.66699 2.66699C5.77156 2.66699 6.66699 3.56242 6.66699 4.66699Z" stroke="#727272" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.1998 11.2L14.7998 11.2L9.9998 16L5.1998 11.2Z" fill="#727272" fill-opacity="0.3"/>
|
|
3
|
+
<path d="M14.7998 8.7998L5.1998 8.7998L9.99981 3.9998L14.7998 8.7998Z" fill="#727272"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M7.99989 11.8336L3.88522 13.997L4.67122 9.41496L1.33789 6.17029L5.93789 5.50363L7.99522 1.33496L10.0526 5.50363L14.6526 6.17029L11.3192 9.41496L12.1052 13.997L7.99989 11.8336Z" fill="#007CF5" stroke="#007CF5" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M7.99989 11.8336L3.88522 13.997L4.67122 9.41496L1.33789 6.17029L5.93789 5.50363L7.99522 1.33496L10.0526 5.50363L14.6526 6.17029L11.3192 9.41496L12.1052 13.997L7.99989 11.8336Z" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6 2H3.33333C2.97971 2 2.64057 2.14048 2.39052 2.39052C2.14048 2.64057 2 2.97971 2 3.33333V6M6 2H12.6667C13.0203 2 13.3594 2.14048 13.6095 2.39052C13.8595 2.64057 14 2.97971 14 3.33333V6M6 2V14M2 6V12.6667C2 13.0203 2.14048 13.3594 2.39052 13.6095C2.64057 13.8595 2.97971 14 3.33333 14H6M2 6H14M14 6V12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14H6" stroke="#0A0A0A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2.66699 4.66699H13.3337" stroke="#E80600" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M6.66699 7.33301V11.333" stroke="#E80600" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M9.33301 7.33301V11.333" stroke="#E80600" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M3.33301 4.66699L3.99967 12.667C3.99967 13.0206 4.14015 13.3598 4.3902 13.6098C4.64025 13.8598 4.97939 14.0003 5.33301 14.0003H10.6663C11.02 14.0003 11.3591 13.8598 11.6092 13.6098C11.8592 13.3598 11.9997 13.0206 11.9997 12.667L12.6663 4.66699" stroke="#E80600" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M6 4.66667V2.66667C6 2.48986 6.07024 2.32029 6.19526 2.19526C6.32029 2.07024 6.48986 2 6.66667 2H9.33333C9.51014 2 9.67971 2.07024 9.80474 2.19526C9.92976 2.32029 10 2.48986 10 2.66667V4.66667" stroke="#E80600" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-ui-checks-grid" viewBox="0 0 16 16">
|
|
2
|
+
<path d="M2 10h3a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1m9-9h3a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1m0 9a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1zm0-10a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM2 9a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2zm7 2a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2zM0 2a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm5.354.854a.5.5 0 1 0-.708-.708L3 3.793l-.646-.647a.5.5 0 1 0-.708.708l1 1a.5.5 0 0 0 .708 0z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-x" viewBox="0 0 16 16">
|
|
2
|
+
<path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14.0001 14L11.1335 11.1333M12.6667 7.33333C12.6667 10.2789 10.2789 12.6667 7.33333 12.6667C4.38781 12.6667 2 10.2789 2 7.33333C2 4.38781 4.38781 2 7.33333 2C10.2789 2 12.6667 4.38781 12.6667 7.33333Z" stroke="#737373" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M7.58309 3.91699L7.58909 3.91733L7.59442 3.91766L7.62209 3.91933L7.62576 3.91999H7.62942L7.64209 3.92299L7.65942 3.92566L7.66476 3.92766L7.66842 3.92799L7.67809 3.93166L7.69542 3.93633L7.70176 3.93933L7.70676 3.94066L7.71609 3.94533L7.72942 3.95099L7.73642 3.95499L7.74376 3.95833L7.75142 3.96333L7.76176 3.96899L7.77309 3.97699L7.77909 3.98066L7.78342 3.98466L7.79142 3.99033L7.80409 4.00166L7.81142 4.00733L7.81409 4.01066L7.81876 4.01466L7.83076 4.02833L7.83942 4.03733L7.84142 4.04033C7.88142 4.08933 7.90676 4.14766 7.91409 4.21133L7.91442 4.21533L7.91509 4.22899L7.91642 4.25033V6.25033H9.58309C9.64151 6.25031 9.69891 6.26565 9.74954 6.29481C9.80016 6.32397 9.84224 6.36592 9.87154 6.41646C9.90084 6.467 9.91635 6.52435 9.91651 6.58277C9.91666 6.64119 9.90146 6.69863 9.87242 6.74933L9.85242 6.77966L7.18576 10.4463C6.99642 10.7073 6.58309 10.573 6.58309 10.2503V8.25033H4.91642C4.858 8.25034 4.8006 8.235 4.74998 8.20584C4.69935 8.17669 4.65728 8.13473 4.62798 8.08419C4.59867 8.03365 4.58316 7.9763 4.58301 7.91788C4.58285 7.85946 4.59806 7.80202 4.62709 7.75133L4.64709 7.72099L7.31376 4.05433L7.31709 4.04999L7.32309 4.04199L7.33409 4.02933L7.34009 4.02199L7.34309 4.01933L7.34742 4.01466L7.36076 4.00266L7.37009 3.99399L7.37276 3.99199C7.41183 3.96002 7.45764 3.93734 7.50676 3.92566L7.51042 3.92533L7.51942 3.92366L7.54409 3.91933L7.54776 3.91899L7.56142 3.91833L7.58309 3.91699Z" fill="#727272"/>
|
|
4
|
+
</svg>
|
package/src/favicon.ico
ADDED
|
Binary file
|
package/src/index.html
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>DataGridWorkspace</title>
|
|
6
|
+
<base href="/">
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
9
|
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet">
|
|
10
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Audiowide">
|
|
11
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter">
|
|
12
|
+
<script async src="https://docs.opencv.org/4.x/opencv.js"></script>
|
|
13
|
+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
|
|
14
|
+
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<app-root></app-root>
|
|
18
|
+
</body>
|
|
19
|
+
</html>
|
package/src/main.ts
ADDED
package/src/styles.scss
ADDED