@itfin/components 1.4.35 → 1.5.0
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/package.json +17 -20
- package/src/ITFSettings.js +6 -0
- package/src/assets/scss/_css_variables.scss +2 -7
- package/src/assets/scss/_dark-theme.scss +2 -12
- package/src/assets/scss/_variables.scss +34 -9
- package/src/assets/scss/components/_button.scss +147 -10
- package/src/assets/scss/components/_checkbox.scss +9 -0
- package/src/assets/scss/components/_datepicker.scss +3 -3
- package/src/assets/scss/components/_pagination.scss +4 -1
- package/src/assets/scss/components/_popover.scss +22 -0
- package/src/assets/scss/components/_segmeneted-control.scss +19 -8
- package/src/assets/scss/components/_select.scss +6 -8
- package/src/assets/scss/components/_text-field.scss +27 -11
- package/src/assets/scss/components/select/_dropdown-menu.scss +1 -0
- package/src/assets/scss/components/select/_dropdown-toggle.scss +0 -1
- package/src/assets/scss/directives/tooltip.scss +10 -5
- package/src/assets/scss/main.scss +48 -0
- package/src/components/alert/AlertBanner.vue +75 -0
- package/src/components/app/App.vue +1 -1
- package/src/components/button/Button.vue +3 -1
- package/src/components/button/NativeButton.js +4 -0
- package/src/components/button/index.stories.js +2 -2
- package/src/components/checkbox/Checkbox.vue +2 -1
- package/src/components/checkbox/RadioBox.vue +1 -2
- package/src/components/copyToClipboard/CopyToClipboard.vue +4 -1
- package/src/components/customize/PropertiesList.vue +0 -2
- package/src/components/customize/PropertiesPopupMenu.vue +1 -1
- package/src/components/customize/PropertyItem.vue +6 -24
- package/src/components/datepicker/DatePicker.vue +3 -1
- package/src/components/datepicker/DatePickerInline.vue +2 -2
- package/src/components/datepicker/DateRangePickerInline.vue +6 -1
- package/src/components/dropdown/Dropdown.vue +1 -1
- package/src/components/dropdown/DropdownMenu.vue +1 -1
- package/src/components/editable/EditButton.vue +1 -1
- package/src/components/filter/FilterBadge.vue +20 -1
- package/src/components/filter/FilterFacetsList.vue +67 -13
- package/src/components/filter/FilterPanel.vue +39 -14
- package/src/components/filter/NewFilter.vue +305 -0
- package/src/components/form/Label.vue +5 -5
- package/src/components/icon/components/nomi-ai-alt.vue +5 -0
- package/src/components/icon/components/nomi-arrow-right.vue +4 -0
- package/src/components/icon/components/nomi-bell.vue +5 -0
- package/src/components/icon/components/nomi-calendar-payment.vue +10 -0
- package/src/components/icon/components/nomi-card-plus.vue +1 -0
- package/src/components/icon/components/nomi-cash-provider.vue +9 -0
- package/src/components/icon/components/nomi-cash-repeat.vue +6 -0
- package/src/components/icon/components/nomi-category-edit.vue +5 -0
- package/src/components/icon/components/nomi-chavron-up.vue +4 -0
- package/src/components/icon/components/nomi-chavron_down.vue +4 -0
- package/src/components/icon/components/nomi-chavron_up.vue +4 -0
- package/src/components/icon/components/nomi-chevron-up.vue +4 -0
- package/src/components/icon/components/nomi-exit-right.vue +4 -0
- package/src/components/icon/components/nomi-help.vue +2 -3
- package/src/components/icon/components/nomi-history.vue +7 -0
- package/src/components/icon/components/nomi-lock.vue +1 -1
- package/src/components/icon/components/nomi-pen-alt.vue +4 -0
- package/src/components/icon/components/nomi-project.vue +2 -2
- package/src/components/icon/components/nomi-refresh-off.vue +4 -0
- package/src/components/icon/components/nomi-refresh.vue +4 -0
- package/src/components/icon/components/nomi-scissors.vue +1 -1
- package/src/components/icon/components/nomi-start.vue +28 -0
- package/src/components/icon/components/nomi-table-view.vue +1 -4
- package/src/components/icon/components/nomi-transactions-delete.vue +5 -0
- package/src/components/icon/components/nomi-type-array.vue +6 -0
- package/src/components/icon/components/nomi-type-boolean.vue +5 -0
- package/src/components/icon/components/nomi-type-date.vue +4 -0
- package/src/components/icon/components/nomi-type-null.vue +4 -0
- package/src/components/icon/components/nomi-type-number.vue +4 -0
- package/src/components/icon/components/nomi-type-object.vue +4 -0
- package/src/components/icon/components/nomi-type-string.vue +4 -0
- package/src/components/icon/components/nomi-unarchive.vue +17 -0
- package/src/components/icon/components/nomi-unlink.vue +10 -0
- package/src/components/icon/components/nomi-user.vue +3 -3
- package/src/components/icon/components/nomi-warning-triangle.vue +6 -0
- package/src/components/icon/components/nomi-warning_triangle_filled.vue +6 -0
- package/src/components/icon/convert-icons.js +3 -0
- package/src/components/icon/icons.js +390 -312
- package/src/components/icon/new-icons/ai-alt.svg +4 -0
- package/src/components/icon/new-icons/arrow-right-alt.svg +3 -0
- package/src/components/icon/new-icons/arrow-right.svg +3 -0
- package/src/components/icon/new-icons/arrow_left.svg +3 -0
- package/src/components/icon/new-icons/automation.svg +4 -0
- package/src/components/icon/new-icons/balance.svg +3 -0
- package/src/components/icon/new-icons/balance_turnover.svg +4 -0
- package/src/components/icon/new-icons/bar-horizontal.svg +6 -0
- package/src/components/icon/new-icons/bell.svg +4 -0
- package/src/components/icon/new-icons/calendar-payment.svg +9 -0
- package/src/components/icon/new-icons/card-plus.svg +1 -0
- package/src/components/icon/new-icons/cash-provider.svg +8 -0
- package/src/components/icon/new-icons/cash-repeat.svg +5 -0
- package/src/components/icon/new-icons/cash.svg +3 -0
- package/src/components/icon/new-icons/cashflow.svg +3 -0
- package/src/components/icon/new-icons/category-edit.svg +4 -0
- package/src/components/icon/new-icons/category.svg +4 -0
- package/src/components/icon/new-icons/category_alt.svg +3 -0
- package/src/components/icon/new-icons/chart-bars.svg +5 -0
- package/src/components/icon/new-icons/chart-donut.svg +3 -0
- package/src/components/icon/new-icons/chart-funnel.svg +5 -0
- package/src/components/icon/new-icons/chart-kpi.svg +7 -0
- package/src/components/icon/new-icons/chart-line.svg +4 -0
- package/src/components/icon/new-icons/chart-lines.svg +5 -0
- package/src/components/icon/new-icons/check-alt.svg +3 -0
- package/src/components/icon/new-icons/check.svg +3 -0
- package/src/components/icon/new-icons/chevron-down.svg +3 -0
- package/src/components/icon/new-icons/chevron-left.svg +3 -0
- package/src/components/icon/new-icons/chevron-right.svg +3 -0
- package/src/components/icon/new-icons/chevron-up.svg +3 -0
- package/src/components/icon/new-icons/collapse.svg +6 -0
- package/src/components/icon/new-icons/control-panel.svg +7 -0
- package/src/components/icon/new-icons/credit.svg +3 -0
- package/src/components/icon/new-icons/currencies.svg +3 -0
- package/src/components/icon/new-icons/debt.svg +3 -0
- package/src/components/icon/new-icons/demo.svg +6 -0
- package/src/components/icon/new-icons/dev.svg +3 -0
- package/src/components/icon/new-icons/dots.svg +5 -0
- package/src/components/icon/new-icons/duplicate.svg +4 -0
- package/src/components/icon/new-icons/exit-right.svg +3 -0
- package/src/components/icon/new-icons/export.svg +3 -0
- package/src/components/icon/new-icons/file.svg +3 -0
- package/src/components/icon/new-icons/folder.svg +3 -0
- package/src/components/icon/new-icons/goods-turnover.svg +3 -0
- package/src/components/icon/new-icons/goods.svg +4 -0
- package/src/components/icon/new-icons/help-alt.svg +3 -0
- package/src/components/icon/new-icons/help.svg +2 -3
- package/src/components/icon/new-icons/history.svg +6 -0
- package/src/components/icon/new-icons/integration.svg +3 -0
- package/src/components/icon/new-icons/link.svg +5 -0
- package/src/components/icon/new-icons/lock.svg +1 -1
- package/src/components/icon/new-icons/menu.svg +5 -0
- package/src/components/icon/new-icons/minus.svg +3 -0
- package/src/components/icon/new-icons/payment_calendar.svg +3 -0
- package/src/components/icon/new-icons/pc.svg +3 -0
- package/src/components/icon/new-icons/pen-alt.svg +3 -0
- package/src/components/icon/new-icons/planFact.svg +4 -0
- package/src/components/icon/new-icons/pnl.svg +7 -0
- package/src/components/icon/new-icons/project.svg +2 -2
- package/src/components/icon/new-icons/project_alt.svg +3 -0
- package/src/components/icon/new-icons/project_alt2.svg +3 -0
- package/src/components/icon/new-icons/promo.svg +3 -0
- package/src/components/icon/new-icons/refresh-off.svg +3 -0
- package/src/components/icon/new-icons/refresh.svg +3 -0
- package/src/components/icon/new-icons/scissors.svg +1 -1
- package/src/components/icon/new-icons/segment.svg +3 -0
- package/src/components/icon/new-icons/start.svg +27 -0
- package/src/components/icon/new-icons/strongbox.svg +3 -0
- package/src/components/icon/new-icons/subscription.svg +3 -0
- package/src/components/icon/new-icons/table-view.svg +1 -4
- package/src/components/icon/new-icons/time.svg +3 -0
- package/src/components/icon/new-icons/transactions_alt.svg +6 -0
- package/src/components/icon/new-icons/transactions_delete.svg +4 -0
- package/src/components/icon/new-icons/type-array.svg +5 -0
- package/src/components/icon/new-icons/type-boolean.svg +4 -0
- package/src/components/icon/new-icons/type-date.svg +3 -0
- package/src/components/icon/new-icons/type-null.svg +3 -0
- package/src/components/icon/new-icons/type-number.svg +3 -0
- package/src/components/icon/new-icons/type-object.svg +3 -0
- package/src/components/icon/new-icons/type-string.svg +3 -0
- package/src/components/icon/new-icons/types.svg +6 -0
- package/src/components/icon/new-icons/unarchive.svg +16 -0
- package/src/components/icon/new-icons/unlink.svg +9 -0
- package/src/components/icon/new-icons/user.svg +3 -3
- package/src/components/icon/new-icons/user_plus.svg +10 -0
- package/src/components/icon/new-icons/warehouse.svg +3 -0
- package/src/components/icon/new-icons/warning_triangle.svg +5 -0
- package/src/components/icon/new-icons/warning_triangle_filled.svg +5 -0
- package/src/components/kanban/BoardCard.vue +1 -1
- package/src/components/kanban/BoardCardTimer.vue +1 -1
- package/src/components/modal/DeleteConfirmModal.vue +10 -6
- package/src/components/modal/ItemEditor.vue +1 -1
- package/src/components/modal/Modal.vue +1 -1
- package/src/components/overlay/SensitiveOverlay.vue +2 -4
- package/src/components/panels/Panel.vue +110 -23
- package/src/components/panels/PanelItemEdit.vue +1 -1
- package/src/components/panels/PanelList.vue +65 -11
- package/src/components/popover/Popover.vue +105 -22
- package/src/components/segmented-control/SegmentedControl.vue +9 -3
- package/src/components/sortable/draggable.js +1 -1
- package/src/components/table/Table2.vue +8 -3
- package/src/components/table/TableBody.vue +17 -16
- package/src/components/table/TableGroup.vue +38 -12
- package/src/components/table/TableHeader.vue +83 -73
- package/src/components/table/TableRows.vue +15 -9
- package/src/components/table/mobile.js +4 -0
- package/src/components/table/table2.scss +9 -0
- package/src/components/text-field/MoneyField.vue +10 -4
- package/src/components/text-field/TextField.vue +17 -8
- package/src/components/tree/TreeEditor.vue +3 -2
- package/src/components/view/View.vue +86 -214
- package/src/directives/appendToBody.js +1 -0
- package/src/helpers/validators.js +9 -35
- package/src/helpers/validators.spec.js +11 -48
- package/src/locales/en.js +4 -6
- package/src/locales/pl.js +158 -0
- package/src/locales/uk.js +6 -7
- package/src/components/icon/components/nomi-calendar-view.vue +0 -4
- package/src/components/icon/components/nomi-kanban-view.vue +0 -6
- package/src/components/icon/components/nomi-list-view.vue +0 -7
- package/src/components/icon/components/nomi-table-config.vue +0 -9
- package/src/components/icon/new-icons/calendar-view.svg +0 -3
- package/src/components/icon/new-icons/kanban-view.svg +0 -5
- package/src/components/icon/new-icons/list-view.svg +0 -6
- package/src/components/icon/new-icons/table-config.svg +0 -8
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<template><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24.000000" height="24.000000" fill="none">
|
|
2
|
+
<path id="Vector" d="M4 12.5C4 10.5109 4.79018 8.60322 6.1967 7.1967C7.60322 5.79018 9.51088 5 11.5 5C13.5967 5.00789 15.6092 5.82602 17.1167 7.28333L19 9.16667M19 5L19 9.16667L14.8333 9.16667M19 12.5C19 14.4891 18.2098 16.3968 16.8033 17.8033C15.3968 19.2098 13.4891 20 11.5 20C9.40329 19.9921 7.39081 19.174 5.88333 17.7167L4 15.8333M8.16667 15.8333L4 15.8333L4 20" fill-rule="evenodd" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.20000005" />
|
|
3
|
+
</svg>
|
|
4
|
+
</template>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
<template><svg style="transform: rotate(-90deg);" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="-1 -1 19 19">
|
|
2
|
-
<path d="M3.5 3.5c-.614-.884-.074-1.962.858-2.5L8 7.226 11.642 1c.932.538 1.472 1.616.858 2.5L8.81 8.61l1.556 2.661a2.5 2.5 0 1 1-.794.637L8 9.73l-1.572 2.177a2.5 2.5 0 1 1-.794-.637L7.19 8.61zm2.5 10a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0m7 0a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0"/>
|
|
2
|
+
<path fill="currentColor" d="M3.5 3.5c-.614-.884-.074-1.962.858-2.5L8 7.226 11.642 1c.932.538 1.472 1.616.858 2.5L8.81 8.61l1.556 2.661a2.5 2.5 0 1 1-.794.637L8 9.73l-1.572 2.177a2.5 2.5 0 1 1-.794-.637L7.19 8.61zm2.5 10a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0m7 0a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0"/>
|
|
3
3
|
</svg>
|
|
4
4
|
</template>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<template><svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32.000000" height="32.000000" fill="none" clip-path="url(#clipPath_0)" customFrame="url(#clipPath_0)">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="clipPath_0">
|
|
4
|
+
<rect width="32.000000" height="32.000000" x="0.000000" y="0.000000" rx="6.153846" fill="rgb(255,255,255)" />
|
|
5
|
+
</clipPath>
|
|
6
|
+
</defs>
|
|
7
|
+
<rect id="start" width="32.000000" height="32.000000" x="0.000000" y="0.000000" rx="6.153846" />
|
|
8
|
+
<path id="Vector" d="M22.8126 9.55948C22.7556 9.49796 22.6869 9.44902 22.6108 9.41564C22.5348 9.38226 22.4529 9.36515 22.3701 9.36533L22.3653 9.36533C22.1623 9.40866 21.9797 9.48171 21.8173 9.58448L21.8246 9.58031C21.5497 9.72252 21.2585 9.88194 20.9511 10.0586C20.617 10.2472 20.2663 10.4031 19.9038 10.5244L19.8592 10.5377C19.4846 10.674 19.0908 10.7466 18.6934 10.7527L18.6901 10.7527L18.6495 10.7535C18.3467 10.7535 18.0602 10.6819 17.8052 10.5535L17.8166 10.5585C17.1534 10.2247 16.4688 9.93765 15.7676 9.69946L15.6425 9.66197C15.0154 9.46353 14.3626 9.3638 13.7063 9.36617L13.6536 9.36617L13.656 9.36617C12.1713 9.43417 10.7233 9.86189 9.43046 10.6144L9.47673 10.5894C9.152 10.7543 8.92307 10.8818 8.77369 10.976L8.62513 9.85861C8.87777 9.63392 9.05479 9.33306 9.13092 8.99897C9.20706 8.66488 9.17842 8.31464 9.04909 7.99825C8.91976 7.68186 8.69635 7.41549 8.41076 7.23717C8.12516 7.05885 7.79198 6.97769 7.45877 7.00527C7.12556 7.03286 6.80936 7.16778 6.55531 7.39078C6.30125 7.61378 6.12233 7.91345 6.04407 8.24703C5.96582 8.5806 5.99224 8.93102 6.11957 9.24827C6.24689 9.56551 6.4686 9.83337 6.75306 10.0136L6.75955 10.0178L8.90277 26.1701C8.96691 26.6409 9.35658 26.9992 9.82744 27C9.8729 27 9.91837 26.9969 9.9622 26.9908L9.95733 26.9917C10.0798 26.9752 10.1979 26.934 10.3048 26.8704C10.4117 26.8068 10.5052 26.7222 10.5801 26.6213C10.655 26.5205 10.7096 26.4054 10.741 26.2828C10.7723 26.1602 10.7797 26.0324 10.7627 25.9068L10.7635 25.9118L9.90132 19.42C11.1393 18.7113 12.5183 18.3013 13.9337 18.221L13.9588 18.2202L13.9661 18.2202C14.4686 18.2202 14.9533 18.3018 15.4063 18.4535L15.373 18.4443C15.7821 18.5697 16.1772 18.739 16.5518 18.9492L16.5201 18.9326C16.8238 19.1084 17.1793 19.2734 17.5495 19.4067L17.5966 19.4217C17.9611 19.5617 18.3825 19.6433 18.8217 19.6467L18.8233 19.6467C20.1328 19.5616 21.4021 19.1488 22.5203 18.4443L22.4854 18.4651C22.6348 18.3901 22.7647 18.2965 22.8751 18.1843C22.9647 18.0745 23.0089 17.9331 22.9985 17.7902L22.9985 17.7919L22.9985 10.0136C22.9988 9.92914 22.9824 9.84551 22.9503 9.76774C22.9182 9.68998 22.8711 9.6197 22.8118 9.56115L22.8126 9.55948Z" opacity="0" fill="currentColor" fill-rule="nonzero" />
|
|
9
|
+
<path id="Vector" d="M9.26667 17.1765L9.26667 23.8823C9.26667 24.199 9.15787 24.4646 8.94027 24.6792C8.72267 24.8938 8.45369 25.0007 8.13333 25C7.81298 24.9993 7.544 24.892 7.3264 24.6781C7.1088 24.4643 7 24.199 7 23.8823L7 7.11765C7 6.80098 7.1088 6.53573 7.3264 6.32188C7.544 6.10804 7.81298 6.00075 8.13333 6L16.265 6C16.5294 6 16.7656 6.08382 16.9733 6.25147C17.1811 6.41912 17.3133 6.63333 17.37 6.89412L17.6533 8.23529L22.8667 8.23529C23.1878 8.23529 23.4571 8.34259 23.6747 8.55718C23.8923 8.77176 24.0008 9.03702 24 9.35294L24 18.2941C24 18.6108 23.8912 18.8764 23.6736 19.091C23.456 19.3056 23.187 19.4125 22.8667 19.4118L17.0017 19.4118C16.7372 19.4118 16.5011 19.3279 16.2933 19.1603C16.0856 18.9926 15.9533 18.7784 15.8967 18.5176L15.6133 17.1765L9.26667 17.1765Z" opacity="0" fill="currentColor" fill-rule="nonzero" />
|
|
10
|
+
<path id="Vector" d="M16.1098 10.0207L26.7746 13.7236C27.0751 13.8338 27.0751 14.2764 26.7746 14.3866L25.0518 14.9672L25.0518 16.957C25.2158 17.0403 25.3524 17.2061 25.3524 17.3987L25.3524 18.145C25.3524 18.3108 25.2699 18.4487 25.1334 18.5321L25.5164 19.3608C25.0518 19.6099 24.3957 19.6099 23.9302 19.3608L24.2858 18.5321C24.1767 18.4487 24.0942 18.3108 24.0942 18.145L24.0942 17.3987C24.0942 17.2052 24.2033 17.0394 24.3673 16.957L24.3673 15.2162L16.1092 18.0896C16.0267 18.1173 15.9726 18.1173 15.8902 18.0896L5.22544 14.3867C4.92485 14.2765 4.92485 13.8339 5.22544 13.7237L15.8902 10.0208C15.9726 9.99306 16.0267 9.99306 16.1092 10.0208L16.1098 10.0207ZM22.3172 16.6247L22.3172 21.0729C18.1066 23.6424 13.8948 23.6424 9.68414 21.0729L9.68414 16.6247L15.6725 18.697C15.8915 18.7803 16.1097 18.7803 16.3287 18.697L22.3172 16.6247Z" opacity="0" fill="currentColor" fill-rule="evenodd" />
|
|
11
|
+
<g id="Group">
|
|
12
|
+
<g id="Group">
|
|
13
|
+
<path id="Vector" d="M16 6C10.4842 6 6 10.4842 6 16C6 21.5158 10.4842 26 16 26C21.5158 26 26 21.5158 26 16C26 10.4842 21.5158 6 16 6ZM20.0421 12.8421L16.7789 20.9895C16.5474 21.6 15.6632 21.5368 15.4947 20.9053L14.6737 17.7684C14.6105 17.5368 14.4211 17.3474 14.1895 17.2842L11.0526 16.4632C10.4211 16.2947 10.3789 15.4316 10.9684 15.1789L19.1579 11.9579C19.7053 11.7474 20.2526 12.2947 20.0421 12.8421Z" fill="currentColor" fill-rule="nonzero" />
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
<g id="Group" opacity="0">
|
|
17
|
+
<path id="Vector" d="M24 8L21 8" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" />
|
|
18
|
+
<path id="Vector" d="M0 0L4 0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" transform="matrix(0,1,-1,0,17,6)" />
|
|
19
|
+
<path id="Vector" d="M17 8L6 8" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" />
|
|
20
|
+
<path id="Vector" d="M10 15L6 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" />
|
|
21
|
+
<path id="Vector" d="M0 0L4 0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" transform="matrix(0,1,-1,0,14,13)" />
|
|
22
|
+
<path id="Vector" d="M25 15L14 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" />
|
|
23
|
+
<path id="Vector" d="M24 22L21 22" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" />
|
|
24
|
+
<path id="Vector" d="M0 0L4 0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" transform="matrix(0,1,-1,0,17,20)" />
|
|
25
|
+
<path id="Vector" d="M17 22L6 22" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" />
|
|
26
|
+
</g>
|
|
27
|
+
</svg>
|
|
28
|
+
</template>
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
|
|
3
|
-
<path d="M6 14L18 14" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M6 10L18 10" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M10 6L10 18" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.43934 6.43934C5 6.87868 5 7.58579 5 9V9.4L8.4 9.4L8.4 6H8C6.58579 6 5.87868 6 5.43934 6.43934ZM5 10.6L8.4 10.6L8.4 13.4H5V10.6ZM5 14.6V15C5 16.4142 5 17.1213 5.43934 17.5607C5.87868 18 6.58579 18 8 18H8.4L8.4 14.6H5ZM9.6 14.6V18H16C17.4142 18 18.1213 18 18.5607 17.5607C19 17.1213 19 16.4142 19 15V14.6L9.6 14.6ZM19 13.4V10.6L9.6 10.6V13.4L19 13.4ZM9.6 6V9.4L19 9.4V9C19 7.58579 19 6.87868 18.5607 6.43934C18.1213 6 17.4142 6 16 6H9.6Z" fill="currentColor"/>
|
|
6
3
|
</svg>
|
|
7
4
|
</template>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15.4287 4C17.5836 4 18.6606 4.00047 19.3301 4.66992C19.9995 5.33938 20 6.41639 20 8.57129V15.0283C19.8358 15.0102 19.669 15 19.5 15C17.0147 15 15 17.0147 15 19.5C15 19.669 15.0102 19.8358 15.0283 20H8.57129C6.41639 20 5.33938 19.9995 4.66992 19.3301C4.00047 18.6606 4 17.5836 4 15.4287V8.57129C4 6.41639 4.00047 5.33938 4.66992 4.66992C5.33938 4.00047 6.41639 4 8.57129 4H15.4287ZM14.209 12.1338C14.0306 11.9554 13.7411 11.9557 13.5625 12.1338C13.384 12.3123 13.384 12.6017 13.5625 12.7803L14.6094 13.8281H8.39941C8.14713 13.8282 7.94261 14.0329 7.94238 14.2852C7.94238 14.5376 8.14698 14.7431 8.39941 14.7432H14.6104L13.5625 15.791C13.384 15.9695 13.384 16.259 13.5625 16.4375C13.7411 16.6156 14.0306 16.6159 14.209 16.4375L16.0371 14.6094C16.2152 14.431 16.2151 14.1414 16.0371 13.9629L14.209 12.1338ZM10.5518 7.5625C10.3733 7.38408 10.0838 7.38432 9.90527 7.5625L8.07617 9.3916C7.89785 9.57015 7.89771 9.85962 8.07617 10.0381L9.90527 11.8662C10.0839 12.0441 10.3734 12.0445 10.5518 11.8662C10.7297 11.6879 10.7295 11.3982 10.5518 11.2197L9.50293 10.1719H15.7139C15.9658 10.1715 16.1705 9.96678 16.1709 9.71484C16.1709 9.46257 15.9661 9.25815 15.7139 9.25781H9.50293L10.5518 8.20898C10.7297 8.03065 10.7295 7.74097 10.5518 7.5625Z" fill="currentColor"/>
|
|
3
|
+
<path d="M19.5 16C21.433 16 23 17.567 23 19.5C23 21.433 21.433 23 19.5 23C17.567 23 16 21.433 16 19.5C16 17.567 17.567 16 19.5 16ZM18.125 18.9258C17.7938 18.9319 17.5302 19.2049 17.5361 19.5361C17.5422 19.8673 17.8154 20.1308 18.1465 20.125L20.9248 20.0742C21.256 20.0681 21.5187 19.7951 21.5127 19.4639C21.5066 19.1326 21.2336 18.869 20.9023 18.875L18.125 18.9258Z" fill="currentColor"/>
|
|
4
|
+
</svg>
|
|
5
|
+
</template>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M19.125 4.125H4.875C4.46079 4.125 4.125 4.46079 4.125 4.875V19.125C4.125 19.5392 4.46079 19.875 4.875 19.875H19.125C19.5392 19.875 19.875 19.5392 19.875 19.125V4.875C19.875 4.46079 19.5392 4.125 19.125 4.125Z" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M12 4.125V19.875" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M19.875 12H4.125" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
6
|
+
</template>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.5 6H7.5C4.18629 6 1.5 8.68629 1.5 12C1.5 15.3137 4.18629 18 7.5 18H16.5C19.8137 18 22.5 15.3137 22.5 12C22.5 8.68629 19.8137 6 16.5 6Z" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M16.5 15C18.1569 15 19.5 13.6569 19.5 12C19.5 10.3431 18.1569 9 16.5 9C14.8431 9 13.5 10.3431 13.5 12C13.5 13.6569 14.8431 15 16.5 15Z" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|
|
5
|
+
</template>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.44444 3V6.6M15.5556 3V6.6M4 10.2H20M5.77778 4.8H18.2222C19.2041 4.8 20 5.60589 20 6.6V19.2C20 20.1941 19.2041 21 18.2222 21H5.77778C4.79594 21 4 20.1941 4 19.2V6.6C4 5.60589 4.79594 4.8 5.77778 4.8Z" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
4
|
+
</template>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M20.5 3L3 20.5M20.5 11.75C20.5 16.5825 16.5825 20.5 11.75 20.5C6.9175 20.5 3 16.5825 3 11.75C3 6.9175 6.9175 3 11.75 3C16.5825 3 20.5 6.9175 20.5 11.75Z" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
4
|
+
</template>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8 3H7C6.46957 3 5.96086 3.21071 5.58579 3.58579C5.21071 3.96086 5 4.46957 5 5V10C5 10.5304 4.78929 11.0391 4.41421 11.4142C4.03914 11.7893 3.53043 12 3 12C3.53043 12 4.03914 12.2107 4.41421 12.5858C4.78929 12.9609 5 13.4696 5 14V19C5 20.1 5.9 21 7 21H8M16 21H17C17.5304 21 18.0391 20.7893 18.4142 20.4142C18.7893 20.0391 19 19.5304 19 19V14C19 12.9 19.9 12 21 12C20.4696 12 19.9609 11.7893 19.5858 11.4142C19.2107 11.0391 19 10.5304 19 10V5C19 4.46957 18.7893 3.96086 18.4142 3.58579C18.0391 3.21071 17.5304 3 17 3H16" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
4
|
+
</template>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6 18.75L11.454 5.66536C11.5052 5.54235 11.5918 5.43727 11.7027 5.36336C11.8136 5.28944 11.9439 5.25 12.0771 5.25C12.2104 5.25 12.3407 5.28944 12.4516 5.36336C12.5625 5.43727 12.649 5.54235 12.7003 5.66536L18.1529 18.75M7.76082 14.699H16.3921" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
4
|
+
</template>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<template><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24.000000" height="24.000000" fill="none">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="clipPath_0">
|
|
4
|
+
<rect width="19.200001" height="19.200001" x="2.399902" y="2.400024" fill="rgb(255,255,255)" />
|
|
5
|
+
</clipPath>
|
|
6
|
+
</defs>
|
|
7
|
+
<rect id="Filled/unarchive" width="24.000000" height="24.000000" x="0.000000" y="0.000000" fill="rgb(255,255,255)" fill-opacity="0" />
|
|
8
|
+
<path id="Vector" d="M17.9998 10.3L17.9998 16.9C17.9998 17.1918 17.8839 17.4716 17.6776 17.6779C17.4713 17.8842 17.1915 18 16.8998 18L5.8998 18C5.60807 18 5.32828 17.8842 5.12199 17.6779C4.9157 17.4716 4.7998 17.1918 4.7998 16.9L4.7998 10.3C4.7998 10.0083 4.9157 9.72852 5.12199 9.52223C5.32828 9.31594 5.60807 9.20005 5.8998 9.20005L16.8998 9.20005C17.1915 9.20005 17.4713 9.31594 17.6776 9.52223C17.8839 9.72852 17.9998 10.0083 17.9998 10.3ZM6.4498 8.10005L16.3498 8.10005C16.4957 8.10005 16.6356 8.0421 16.7387 7.93896C16.8419 7.83581 16.8998 7.69592 16.8998 7.55005C16.8998 7.40418 16.8419 7.26429 16.7387 7.16114C16.6356 7.058 16.4957 7.00005 16.3498 7.00005L6.4498 7.00005C6.30394 7.00005 6.16404 7.058 6.0609 7.16114C5.95775 7.26429 5.8998 7.40418 5.8998 7.55005C5.8998 7.69592 5.95775 7.83581 6.0609 7.93896C6.16404 8.0421 6.30394 8.10005 6.4498 8.10005ZM7.5498 5.90005L15.2498 5.90005C15.3957 5.90005 15.5356 5.8421 15.6387 5.73896C15.7419 5.63581 15.7998 5.49592 15.7998 5.35005C15.7998 5.20418 15.7419 5.06429 15.6387 4.96114C15.5356 4.858 15.3957 4.80005 15.2498 4.80005L7.5498 4.80005C7.40394 4.80005 7.26404 4.858 7.1609 4.96114C7.05775 5.06429 6.9998 5.20418 6.9998 5.35005C6.9998 5.49592 7.05775 5.63581 7.1609 5.73896C7.26404 5.8421 7.40394 5.90005 7.5498 5.90005Z" opacity="0" fill="currentColor" fill-rule="nonzero" />
|
|
9
|
+
<g id="Eye" opacity="0" clip-path="url(#clipPath_0)" customFrame="url(#clipPath_0)">
|
|
10
|
+
<rect id="Eye" width="19.200001" height="19.200001" x="2.399902" y="2.400024" opacity="0" fill="rgb(255,255,255)" fill-opacity="0" />
|
|
11
|
+
<path id="Vector" d="M20.9482 11.757C20.922 11.6978 20.2867 10.2885 18.8745 8.87625C16.9927 6.9945 14.616 6 12 6C9.38399 6 7.00724 6.9945 5.12549 8.87625C3.71324 10.2885 3.07499 11.7 3.05174 11.757C3.01763 11.8337 3 11.9168 3 12.0007C3 12.0847 3.01763 12.1678 3.05174 12.2445C3.07799 12.3038 3.71324 13.7123 5.12549 15.1245C7.00724 17.0055 9.38399 18 12 18C14.616 18 16.9927 17.0055 18.8745 15.1245C20.2867 13.7123 20.922 12.3038 20.9482 12.2445C20.9824 12.1678 21 12.0847 21 12.0007C21 11.9168 20.9824 11.8337 20.9482 11.757ZM12 15C11.4066 15 10.8266 14.8241 10.3333 14.4944C9.83994 14.1648 9.45542 13.6962 9.22835 13.1481C9.00129 12.5999 8.94188 11.9967 9.05764 11.4147C9.17339 10.8328 9.45912 10.2982 9.87867 9.87868C10.2982 9.45912 10.8328 9.1734 11.4147 9.05764C11.9967 8.94189 12.5999 9.0013 13.148 9.22836C13.6962 9.45542 14.1648 9.83994 14.4944 10.3333C14.824 10.8266 15 11.4067 15 12C15 12.7956 14.6839 13.5587 14.1213 14.1213C13.5587 14.6839 12.7956 15 12 15Z" fill="rgb(167,175,187)" fill-rule="nonzero" />
|
|
12
|
+
</g>
|
|
13
|
+
<path id="Subtract" d="M19.3271 8C19.47 7.99923 19.6121 8.02741 19.7432 8.08301C19.8741 8.13862 19.992 8.22077 20.0889 8.32324C20.1857 8.42567 20.2592 8.54685 20.3057 8.67871C20.3521 8.81071 20.3703 8.95075 20.3584 9.08984L19.7988 15.0312L19.1934 14.4697L19.1914 14.4678L19.0615 14.3594C18.7932 14.1566 18.4738 14.0378 18.1455 14.0078L17.9814 14C17.5412 14 17.1041 14.1606 16.7705 14.4678L16.7686 14.4697L14.502 16.5693L14.4736 16.5957L14.4473 16.625C14.15 16.9467 13.9822 17.3754 14.001 17.8271C14.0198 18.2787 14.2225 18.6913 14.542 18.9873C14.5467 18.9917 14.5519 18.9957 14.5566 19L6.82617 19C6.31281 19.0021 5.81651 18.8169 5.43555 18.4805C5.0546 18.144 4.81555 17.6802 4.76562 17.1807L4.00391 9.09082C3.9914 8.95164 4.00855 8.81095 4.05469 8.67871C4.10086 8.54654 4.17557 8.42491 4.27246 8.32227C4.36934 8.21976 4.48719 8.13849 4.61816 8.08301C4.74936 8.02744 4.89121 7.9989 5.03418 8L19.3271 8ZM15.3193 18.3291C15.3136 18.3253 15.3074 18.3223 15.3018 18.3184L15.2217 18.2539C15.2519 18.2819 15.2849 18.3065 15.3193 18.3291ZM15.0488 17.5127C15.0508 17.5078 15.0526 17.5029 15.0547 17.498L15.1006 17.4102C15.0802 17.443 15.0632 17.4774 15.0488 17.5127ZM10.1357 10C9.8645 10 9.6039 10.1054 9.41211 10.293C9.22033 10.4805 9.11232 10.7348 9.1123 11C9.1123 11.2652 9.22034 11.5195 9.41211 11.707C9.6039 11.8946 9.8645 12 10.1357 12L14.2266 12C14.4977 11.9999 14.7575 11.8945 14.9492 11.707C15.141 11.5195 15.249 11.2652 15.249 11C15.249 10.7348 15.141 10.4805 14.9492 10.293C14.7575 10.1055 14.4976 10.0001 14.2266 10L10.1357 10Z" fill="currentColor" fill-rule="nonzero" />
|
|
14
|
+
<path id="Vector" d="M6.04422 5L13.2033 5C13.4745 5 13.7347 5.10536 13.9265 5.29289C14.1183 5.48043 14.226 5.73478 14.226 6L18.3169 6C18.5882 6 18.8483 6.10535 19.0401 6.2929C19.2319 6.48043 19.3396 6.73478 19.3396 7L5.02148 7L5.02148 6C5.02148 5.73478 5.12924 5.48043 5.32103 5.29289C5.51282 5.10536 5.77297 5 6.04422 5Z" fill="currentColor" fill-rule="nonzero" />
|
|
15
|
+
<path id="Vector" d="M20.4766 18.2903C20.3425 18.4207 20.161 18.4938 19.9719 18.4938C19.7828 18.4938 19.6014 18.4207 19.4672 18.2903L18.5366 17.3874L18.5366 21.3001C18.5366 21.4857 18.4612 21.6637 18.327 21.795C18.1927 21.9263 18.0106 22 17.8208 22C17.6309 22 17.4488 21.9263 17.3146 21.795C17.1804 21.6637 17.1049 21.4857 17.1049 21.3001L17.1049 17.3874L16.1815 18.2903C16.0445 18.405 15.8684 18.4649 15.6882 18.4581C15.5081 18.4513 15.3372 18.3782 15.2097 18.2536C15.0822 18.1289 15.0075 17.9618 15.0005 17.7857C14.9936 17.6095 15.0549 17.4373 15.1721 17.3034L17.3197 15.2035C17.4538 15.0732 17.6352 15 17.8244 15C18.0135 15 18.1949 15.0732 18.329 15.2035L20.4766 17.3034C20.6099 17.4345 20.6848 17.6119 20.6848 17.7968C20.6848 17.9817 20.6099 18.1592 20.4766 18.2903Z" fill="currentColor" fill-rule="nonzero" />
|
|
16
|
+
</svg>
|
|
17
|
+
</template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<template><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24.000000" height="24.000000" fill="none">
|
|
2
|
+
<rect id="outline/link disconnected" width="24.000000" height="24.000000" x="0.000000" y="0.000000" fill="rgb(255,255,255)" fill-opacity="0" />
|
|
3
|
+
<path id="Vector 50" d="M0 -8.74228e-08L1.5 0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.200000" transform="matrix(4.37114e-08,1,-1,4.37114e-08,10,5.5)" />
|
|
4
|
+
<path id="Vector 52" d="M0 -8.74228e-08L1.5 0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.200000" transform="matrix(4.37114e-08,1,-1,4.37114e-08,14,17)" />
|
|
5
|
+
<path id="Vector 51" d="M5.5 10L7 10" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.200000" />
|
|
6
|
+
<path id="Vector 53" d="M17 14L18.5 14" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.200000" />
|
|
7
|
+
<path id="Vector 45" d="M16 12L17 11C18.1046 9.89543 18.1046 8.10457 17 7C15.8954 5.89543 14.1046 5.89543 13 7L12 8" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.200000" />
|
|
8
|
+
<path id="Vector 46" d="M4 7L5 6C6.10457 4.89543 6.10457 3.10457 5 2C3.89543 0.89543 2.10457 0.89543 1 2L0 3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.200000" transform="matrix(-1,0,0,-1,12,19)" />
|
|
9
|
+
</svg>
|
|
10
|
+
</template>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
<template><svg width="
|
|
2
|
-
<circle cx="
|
|
3
|
-
<path d="
|
|
1
|
+
<template><svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="15.9998" cy="11.3333" r="3.33333" fill="currentColor"/>
|
|
3
|
+
<path d="M10.6054 24C9.29221 24 8.63561 24 8.23231 23.44C7.82902 22.88 8.00385 22.3808 8.35352 21.3824C8.40585 21.233 8.46271 21.085 8.52407 20.9385C8.93073 19.9679 9.52677 19.086 10.2782 18.3431C11.0296 17.6003 11.9216 17.011 12.9034 16.609C13.8851 16.2069 14.9374 16 16 16C17.0626 16 18.1149 16.2069 19.0966 16.609C20.0784 17.011 20.9704 17.6003 21.7218 18.3431C22.4732 19.086 23.0693 19.9679 23.4759 20.9385C23.5373 21.085 23.5941 21.233 23.6465 21.3824C23.9961 22.3808 24.171 22.88 23.7677 23.44C23.3644 24 22.7078 24 21.3946 24L10.6054 24Z" fill="currentColor"/>
|
|
4
4
|
</svg>
|
|
5
5
|
</template>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12 9.75V13.5" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M10.7062 3.74999L2.45625 18C2.32482 18.2276 2.25551 18.4858 2.25528 18.7487C2.25505 19.0115 2.32389 19.2698 2.45492 19.4977C2.58595 19.7256 2.77456 19.915 3.00185 20.0471C3.22914 20.1791 3.48714 20.2491 3.75 20.25H20.25C20.5129 20.2491 20.7709 20.1791 20.9981 20.0471C21.2254 19.915 21.414 19.7256 21.5451 19.4977C21.6761 19.2698 21.7449 19.0115 21.7447 18.7487C21.7445 18.4858 21.6752 18.2276 21.5437 18L13.2937 3.74999C13.1633 3.52206 12.975 3.33263 12.7478 3.20088C12.5206 3.06914 12.2626 2.99976 12 2.99976C11.7374 2.99976 11.4794 3.06914 11.2522 3.20088C11.025 3.33263 10.8367 3.52206 10.7062 3.74999V3.74999Z" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M12 17.8125C12.5178 17.8125 12.9375 17.3928 12.9375 16.875C12.9375 16.3572 12.5178 15.9375 12 15.9375C11.4822 15.9375 11.0625 16.3572 11.0625 16.875C11.0625 17.3928 11.4822 17.8125 12 17.8125Z" fill="currentColor"/>
|
|
5
|
+
</svg>
|
|
6
|
+
</template>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<template><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24.000000" height="24.000000" fill="none" customFrame="#000000">
|
|
2
|
+
<rect id="icon variants/warning" width="24.000000" height="24.000000" x="0.000000" y="0.000000" fill="rgb(255,255,255)" fill-opacity="0" />
|
|
3
|
+
<path id="Vector" d="M0 0L24 0L24 24L0 24L0 0ZM0.75 23.25L0.75 0.75L23.25 0.75L23.25 23.25L0.75 23.25Z" opacity="0" fill="rgb(57,130,65)" fill-rule="evenodd" />
|
|
4
|
+
<path id="Vector" d="M21.7063 17.7604L13.8573 4.08226C13.6694 3.75329 13.3988 3.48004 13.0727 3.29004C12.7467 3.10004 12.3767 3 12 3C11.6233 3 11.2533 3.10004 10.9273 3.29004C10.6012 3.48004 10.3306 3.75329 10.1427 4.08226L10.1427 4.08226L2.29373 17.7604C2.10305 18.0877 2.00172 18.46 2.00002 18.8396C1.99832 19.2191 2.09631 19.5923 2.28404 19.9214C2.47177 20.2504 2.74255 20.5235 3.06889 20.7129C3.39523 20.9024 3.76551 21.0014 4.14211 21L19.8579 21C20.2345 21.0014 20.6048 20.9024 20.9311 20.7129C21.2574 20.5235 21.5282 20.2504 21.716 19.9214C21.9037 19.5923 22.0017 19.2191 22 18.8396C21.9983 18.46 21.8969 18.0877 21.7063 17.7604L21.7063 17.7604ZM11.2856 10.2014C11.2856 10.0105 11.3609 9.82739 11.4949 9.69239C11.6288 9.55738 11.8105 9.48153 12 9.48153C12.1895 9.48153 12.3712 9.55738 12.5051 9.69239C12.6391 9.82739 12.7144 10.0105 12.7144 10.2014L12.7144 13.801C12.7144 13.9919 12.6391 14.175 12.5051 14.31C12.3712 14.445 12.1895 14.5209 12 14.5209C11.8105 14.5209 11.6288 14.445 11.4949 14.31C11.3609 14.175 11.2856 13.9919 11.2856 13.801L11.2856 10.2014ZM12 18.1204C11.7881 18.1204 11.5809 18.057 11.4047 17.9384C11.2285 17.8197 11.0911 17.6511 11.01 17.4538C10.9289 17.2564 10.9077 17.0393 10.9491 16.8298C10.9904 16.6204 11.0925 16.428 11.2423 16.2769C11.3922 16.1259 11.5831 16.0231 11.791 15.9814C11.9988 15.9397 12.2143 15.9611 12.4101 16.0429C12.6059 16.1246 12.7732 16.263 12.8909 16.4406C13.0087 16.6182 13.0715 16.8269 13.0715 17.0405C13.0715 17.3269 12.9586 17.6016 12.7577 17.8041C12.5567 18.0066 12.2842 18.1204 12 18.1204Z" fill="currentColor" fill-rule="nonzero" />
|
|
5
|
+
</svg>
|
|
6
|
+
</template>
|
|
@@ -17,6 +17,9 @@ async function bootstrap() {
|
|
|
17
17
|
});
|
|
18
18
|
}));
|
|
19
19
|
await Promise.all(fs.readdirSync(fromNewFolder).map((file) => {
|
|
20
|
+
if (file.includes('.DS_Store')) {
|
|
21
|
+
return;
|
|
22
|
+
}
|
|
20
23
|
return new Promise((resolve) => {
|
|
21
24
|
fs.readFile(`${fromNewFolder}/${file}`, { encoding: 'utf-8' }, (err, data) => {
|
|
22
25
|
fs.writeFile(`${toFolder}/nomi-${file.replace('.svg', '.vue')}`, `<template>${data}</template>`, (err) => {
|