work-workflow-tests 0.0.1

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.
Files changed (88) hide show
  1. package/README.md +93 -0
  2. package/dist/arrow.svg +3 -0
  3. package/dist/back_button.svg +10 -0
  4. package/dist/connectall.svg +10 -0
  5. package/dist/delete.svg +8 -0
  6. package/dist/doworks_icon.svg +4 -0
  7. package/dist/flow.svg +10 -0
  8. package/dist/index.css +1 -0
  9. package/dist/tick_circle.svg +4 -0
  10. package/dist/vector.svg +9 -0
  11. package/dist/vite.svg +1 -0
  12. package/dist/workflow.es.js +22408 -0
  13. package/dist/workflow.umd.js +188 -0
  14. package/dist/workflow_delete.svg +8 -0
  15. package/dist/workflow_east.svg +8 -0
  16. package/package.json +88 -0
  17. package/types/App.d.ts +0 -0
  18. package/types/Backup.d.ts +0 -0
  19. package/types/components/Automation/AutoComp.d.ts +2 -0
  20. package/types/components/Automation/Automation.d.ts +22 -0
  21. package/types/components/Automation/ListOfAutomation.d.ts +2 -0
  22. package/types/components/Automation/index.d.ts +3 -0
  23. package/types/components/Automation/types.d.ts +18 -0
  24. package/types/components/AutomationBage/index.d.ts +2 -0
  25. package/types/components/Condition/constants.d.ts +498 -0
  26. package/types/components/Condition/index.d.ts +2 -0
  27. package/types/components/CustomEdge/CustomEdge.d.ts +3 -0
  28. package/types/components/CustomNode/FieldNode.d.ts +3 -0
  29. package/types/components/CustomNode/OptionFieldNode.d.ts +3 -0
  30. package/types/components/FieldAutomationModal/index.d.ts +3 -0
  31. package/types/components/FlowPreview/index.d.ts +6 -0
  32. package/types/components/Form/Meeting.d.ts +2 -0
  33. package/types/components/Form/MoveRecordToWork.d.ts +10 -0
  34. package/types/components/Form/MultiSelectWithSearch.d.ts +3 -0
  35. package/types/components/Form/Notification.d.ts +2 -0
  36. package/types/components/Form/NotificationUser.d.ts +2 -0
  37. package/types/components/Form/OrnageSwitch.d.ts +6 -0
  38. package/types/components/Form/OwnerList.d.ts +8 -0
  39. package/types/components/Form/Task.d.ts +2 -0
  40. package/types/components/Form/WorkspaceDroopdown.d.ts +2 -0
  41. package/types/components/Form/multi-user-field.d.ts +15 -0
  42. package/types/components/Form/query.d.ts +4 -0
  43. package/types/components/MiniFlow/MiniFlowCanvas.d.ts +2 -0
  44. package/types/components/MiniFlow/index.d.ts +3 -0
  45. package/types/components/Sections/ConfigAutoSection.d.ts +3 -0
  46. package/types/components/Sections/Configuration.d.ts +9 -0
  47. package/types/components/Sections/index.d.ts +3 -0
  48. package/types/components/Sections/types.d.ts +22 -0
  49. package/types/components/WorkflowCanvas/WorkflowCanvas.d.ts +9 -0
  50. package/types/components/WorkflowCanvas/WorkflowCanvas.stories.d.ts +6 -0
  51. package/types/components/WorkflowCanvas/index.d.ts +22 -0
  52. package/types/components/WorkflowModal/FlowCanvas.d.ts +11 -0
  53. package/types/components/WorkflowModal/FlowEdgeDrawer.d.ts +3 -0
  54. package/types/components/WorkflowModal/constants.d.ts +428 -0
  55. package/types/components/WorkflowModal/index.d.ts +3 -0
  56. package/types/components/WorkflowModal/services.d.ts +25 -0
  57. package/types/components/WorkflowModal/types.d.ts +65 -0
  58. package/types/config/index.d.ts +16 -0
  59. package/types/constants/apiRoutes.d.ts +118 -0
  60. package/types/constants/common.d.ts +798 -0
  61. package/types/constants/emailApiRoutes.d.ts +18 -0
  62. package/types/constants/enum.d.ts +24 -0
  63. package/types/constants/index.d.ts +5 -0
  64. package/types/constants/regex.d.ts +45 -0
  65. package/types/constants/routes.d.ts +12 -0
  66. package/types/constants/theme.d.ts +88 -0
  67. package/types/context/AppContext.d.ts +2 -0
  68. package/types/context/AppProvider.d.ts +2 -0
  69. package/types/index.d.ts +7 -0
  70. package/types/main.d.ts +0 -0
  71. package/types/services/api/api.d.ts +20 -0
  72. package/types/services/api/api.service.d.ts +18 -0
  73. package/types/services/api/database.d.ts +9 -0
  74. package/types/services/aws/aws-exports.d.ts +17 -0
  75. package/types/services/aws/aws-helpers.d.ts +21 -0
  76. package/types/services/aws/aws-services.d.ts +22 -0
  77. package/types/services/common.service.d.ts +7 -0
  78. package/types/services/graphql-client.d.ts +9 -0
  79. package/types/services/helper/service.d.ts +1 -0
  80. package/types/services/lodash.service.d.ts +30 -0
  81. package/types/stories/Button.d.ts +15 -0
  82. package/types/stories/Button.stories.d.ts +23 -0
  83. package/types/stories/Header.d.ts +12 -0
  84. package/types/stories/Header.stories.d.ts +18 -0
  85. package/types/stories/Page.d.ts +3 -0
  86. package/types/stories/Page.stories.d.ts +12 -0
  87. package/types/types/common.d.ts +9 -0
  88. package/types/utils/errorMessage.d.ts +38 -0
package/README.md ADDED
@@ -0,0 +1,93 @@
1
+ # workflow
2
+
3
+
4
+
5
+ ## Getting started
6
+
7
+ To make it easy for you to get started with GitLab, here's a list of recommended next steps.
8
+
9
+ Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
10
+
11
+ ## Add your files
12
+
13
+ - [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
14
+ - [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
15
+
16
+ ```
17
+ cd existing_repo
18
+ git remote add origin https://calib.dev/doworks/workflow.git
19
+ git branch -M main
20
+ git push -uf origin main
21
+ ```
22
+
23
+ ## Integrate with your tools
24
+
25
+ - [ ] [Set up project integrations](https://calib.dev/doworks/workflow/-/settings/integrations)
26
+
27
+ ## Collaborate with your team
28
+
29
+ - [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
30
+ - [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
31
+ - [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
32
+ - [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
33
+ - [ ] [Set auto-merge](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
34
+
35
+ ## Test and Deploy
36
+
37
+ Use the built-in continuous integration in GitLab.
38
+
39
+ - [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
40
+ - [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
41
+ - [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
42
+ - [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
43
+ - [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
44
+
45
+ ***
46
+
47
+ # Editing this README
48
+
49
+ When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thanks to [makeareadme.com](https://www.makeareadme.com/) for this template.
50
+
51
+ ## Suggestions for a good README
52
+
53
+ Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
54
+
55
+ ## Name
56
+ Choose a self-explaining name for your project.
57
+
58
+ ## Description
59
+ Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
60
+
61
+ ## Badges
62
+ On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
63
+
64
+ ## Visuals
65
+ Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
66
+
67
+ ## Installation
68
+ Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
69
+
70
+ ## Usage
71
+ Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
72
+
73
+ ## Support
74
+ Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
75
+
76
+ ## Roadmap
77
+ If you have ideas for releases in the future, it is a good idea to list them in the README.
78
+
79
+ ## Contributing
80
+ State if you are open to contributions and what your requirements are for accepting them.
81
+
82
+ For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
83
+
84
+ You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
85
+
86
+ ## Authors and acknowledgment
87
+ Show your appreciation to those who have contributed to the project.
88
+
89
+ ## License
90
+ For open source projects, say how it is licensed.
91
+
92
+ ## Project status
93
+ If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
package/dist/arrow.svg ADDED
@@ -0,0 +1,3 @@
1
+ <svg width="31" height="8" viewBox="0 0 31 8" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M30.3536 4.35355C30.5488 4.15829 30.5488 3.84171 30.3536 3.64645L27.1716 0.464466C26.9763 0.269204 26.6597 0.269204 26.4645 0.464466C26.2692 0.659728 26.2692 0.976311 26.4645 1.17157L29.2929 4L26.4645 6.82843C26.2692 7.02369 26.2692 7.34027 26.4645 7.53553C26.6597 7.7308 26.9763 7.7308 27.1716 7.53553L30.3536 4.35355ZM0 4V4.5H30V4V3.5H0V4Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.746094" y="1" width="31" height="31" rx="3.5" fill="#F4F4F5"/>
3
+ <rect x="0.746094" y="1" width="31" height="31" rx="3.5" stroke="#E9EAEB"/>
4
+ <mask id="mask0_25970_185309" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="33" height="33">
5
+ <rect x="0.246094" y="0.5" width="32" height="32" fill="#D9D9D9"/>
6
+ </mask>
7
+ <g mask="url(#mask0_25970_185309)">
8
+ <path d="M18.9141 9.31641C19.2319 9.31646 19.4771 9.41675 19.6699 9.60938C19.8629 9.80231 19.9638 10.0481 19.9639 10.3662C19.9639 10.6845 19.8629 10.9301 19.6699 11.123L14.4707 16.3232L14.2939 16.5L14.4707 16.6768L19.6699 21.877C19.8628 22.0699 19.9638 22.3147 19.9639 22.6328C19.9639 22.9511 19.8629 23.1967 19.6699 23.3896C19.477 23.5824 19.2321 23.6826 18.9141 23.6826C18.5958 23.6826 18.3502 23.5826 18.1572 23.3896L12.0234 17.2559C11.9129 17.1452 11.8402 17.0319 11.7988 16.916C11.7536 16.7895 11.7305 16.6512 11.7305 16.5C11.7305 16.3488 11.7537 16.2105 11.7988 16.084C11.8403 15.968 11.9127 15.854 12.0234 15.7432L18.1572 9.60938C18.3502 9.41654 18.5959 9.31641 18.9141 9.31641Z" fill="#8F949A" stroke="#F4F4F5" stroke-width="0.5"/>
9
+ </g>
10
+ </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
+ <rect x="0.3125" y="0.3125" width="19.375" height="19.375" rx="9.6875" fill="white"/>
3
+ <rect x="0.3125" y="0.3125" width="19.375" height="19.375" rx="9.6875" stroke="#0060AA" stroke-width="0.625"/>
4
+ <mask id="mask0_33428_341934" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="5" y="5" width="10" height="10">
5
+ <rect x="5" y="5" width="10" height="10" fill="#D9D9D9"/>
6
+ </mask>
7
+ <g mask="url(#mask0_33428_341934)">
8
+ <path d="M11.9215 10.3096H7.1875C7.09882 10.3096 7.02458 10.2797 6.96479 10.2198C6.90493 10.16 6.875 10.0858 6.875 9.99708C6.875 9.9084 6.90493 9.83417 6.96479 9.77438C7.02458 9.71451 7.09882 9.68458 7.1875 9.68458H11.9215L10.5497 8.31281C10.4877 8.2508 10.4572 8.17826 10.4579 8.09521C10.4588 8.01215 10.4893 7.9383 10.5497 7.87365C10.6143 7.80906 10.6886 7.77569 10.7724 7.77354C10.8563 7.77139 10.9306 7.80264 10.9952 7.86729L12.8614 9.73344C12.9004 9.77247 12.9279 9.81361 12.9439 9.85688C12.9599 9.90014 12.9679 9.94688 12.9679 9.99708C12.9679 10.0473 12.9599 10.094 12.9439 10.1373C12.9279 10.1806 12.9004 10.2217 12.8614 10.2607L10.9952 12.1269C10.9332 12.1888 10.8596 12.2194 10.7745 12.2186C10.6893 12.2178 10.6143 12.1851 10.5497 12.1205C10.4893 12.0559 10.4581 11.9827 10.4559 11.9009C10.4538 11.8192 10.485 11.746 10.5497 11.6814L11.9215 10.3096Z" fill="#1C1B1F"/>
9
+ </g>
10
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="mask0_26930_250464" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="17" height="17">
3
+ <rect x="0.75" y="1.1875" width="15" height="15" fill="#D9D9D9" stroke="#363F4A"/>
4
+ </mask>
5
+ <g mask="url(#mask0_26930_250464)">
6
+ <path d="M6.83984 3.11035H9.66016C9.82008 3.11035 9.95583 3.16676 10.0684 3.2793C10.181 3.39193 10.2373 3.52762 10.2373 3.6875V3.7002H12.75C12.8885 3.7002 13.0043 3.74642 13.0977 3.83984C13.191 3.93326 13.2373 4.04903 13.2373 4.1875C13.2373 4.32613 13.1911 4.44196 13.0977 4.53516C13.0043 4.62847 12.8885 4.6748 12.75 4.6748H12.5713V13.1484C12.5713 13.4765 12.4543 13.7576 12.2207 13.9912C11.987 14.2249 11.706 14.3418 11.3779 14.3418H5.12207C4.79397 14.3418 4.51297 14.2249 4.2793 13.9912C4.04567 13.7576 3.92871 13.4765 3.92871 13.1484V4.6748H3.75C3.61148 4.6748 3.49566 4.62761 3.40234 4.53418C3.30926 4.4409 3.26277 4.32567 3.2627 4.1875C3.2627 4.04895 3.30903 3.93302 3.40234 3.83984C3.49566 3.74653 3.61148 3.7002 3.75 3.7002H6.2627V3.6875C6.2627 3.52762 6.31905 3.39193 6.43164 3.2793C6.54417 3.16676 6.67992 3.11035 6.83984 3.11035ZM4.9043 13.1484C4.9043 13.2112 4.92483 13.2637 4.96582 13.3047C5.00686 13.3457 5.05924 13.3662 5.12207 13.3662H11.3779C11.4408 13.3662 11.4931 13.3457 11.5342 13.3047C11.5752 13.2637 11.5957 13.2112 11.5957 13.1484V4.6748H4.9043V13.1484ZM7.01855 6.0332C7.15704 6.0332 7.27295 6.07973 7.36621 6.17285C7.45961 6.26625 7.5068 6.38206 7.50684 6.52051V11.5205C7.50684 11.6589 7.46028 11.7748 7.36719 11.8682C7.27388 11.9615 7.15804 12.0078 7.01953 12.0078C6.88091 12.0078 6.7653 11.9615 6.67188 11.8682C6.57855 11.7747 6.53223 11.659 6.53223 11.5205V6.52051C6.53226 6.38205 6.5787 6.26625 6.67188 6.17285C6.76505 6.07981 6.88036 6.0333 7.01855 6.0332ZM9.48047 6.0332C9.61902 6.0332 9.73473 6.07965 9.82812 6.17285C9.92141 6.26625 9.96774 6.38205 9.96777 6.52051V11.5205C9.96777 11.659 9.92134 11.7747 9.82812 11.8682C9.73493 11.9613 9.61971 12.0077 9.48145 12.0078C9.34288 12.0078 9.22708 11.9614 9.13379 11.8682C9.04036 11.7747 8.99316 11.659 8.99316 11.5205V6.52051C8.9932 6.38207 9.03966 6.26624 9.13281 6.17285C9.22612 6.07954 9.34196 6.03321 9.48047 6.0332Z" fill="#363F4A" stroke="#363F4A" stroke-width="0.025"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="25" height="23" viewBox="0 0 25 23" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.40189 22.0101L0.5 12.8309L4.54243 15.5547C5.03397 15.8859 5.69499 15.8008 6.08657 15.3558L12.0652 8.5625L5.40189 22.0101Z" fill="#FB7000"/>
3
+ <path d="M13.2642 21.9883L8.27344 12.7765L12.3444 15.4613C12.8622 15.8028 13.556 15.6848 13.9318 15.1913L24.7478 0.988281L13.2642 21.9883Z" fill="#FB7000"/>
4
+ </svg>
package/dist/flow.svg ADDED
@@ -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
+ <rect x="0.3125" y="0.3125" width="19.375" height="19.375" rx="9.6875" fill="white"/>
3
+ <rect x="0.3125" y="0.3125" width="19.375" height="19.375" rx="9.6875" stroke="#0060AA" stroke-width="0.625"/>
4
+ <mask id="mask0_33428_341938" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="5" y="5" width="10" height="10">
5
+ <rect x="5" y="5" width="10" height="10" fill="#D9D9D9"/>
6
+ </mask>
7
+ <g mask="url(#mask0_33428_341938)">
8
+ <path d="M8.07674 12.0539C7.81125 12.2755 7.53469 12.3759 7.24705 12.3551C6.95934 12.3343 6.70948 12.236 6.49747 12.0603C6.28539 11.8845 6.14129 11.654 6.06518 11.3688C5.98907 11.0835 6.04101 10.7916 6.22101 10.493L7.0183 9.17323C6.84733 9.03385 6.7115 8.8616 6.6108 8.65646C6.51011 8.45132 6.45976 8.22962 6.45976 7.99135C6.45976 7.56774 6.60893 7.20677 6.90726 6.90844C7.20559 6.6101 7.56657 6.46094 7.99018 6.46094C8.41379 6.46094 8.77476 6.6101 9.07309 6.90844C9.3715 7.20677 9.5207 7.56774 9.5207 7.99135C9.5207 8.41497 9.3715 8.77594 9.07309 9.07427C8.77476 9.37267 8.41379 9.52187 7.99018 9.52187C7.91705 9.52187 7.84521 9.51705 7.77466 9.5074C7.70417 9.49781 7.63712 9.48205 7.57351 9.4601L6.75945 10.8223C6.67237 10.966 6.64539 11.1073 6.67851 11.2461C6.71164 11.385 6.78004 11.498 6.88372 11.585C6.98747 11.6719 7.11115 11.7214 7.25476 11.7332C7.39837 11.7451 7.53723 11.6957 7.67132 11.5851L11.9301 7.9449C12.1924 7.72323 12.4672 7.62323 12.7547 7.6449C13.042 7.66649 13.2934 7.7651 13.5088 7.94073C13.7242 8.11635 13.8699 8.34684 13.9459 8.63219C14.0219 8.9176 13.9685 9.21094 13.7859 9.51219L12.9846 10.8359C13.1555 10.9754 13.2914 11.1467 13.3921 11.35C13.4927 11.5532 13.5431 11.7745 13.5431 12.0139C13.5431 12.4375 13.393 12.7984 13.0927 13.0968C12.7924 13.3951 12.4314 13.5443 12.0098 13.5443C11.5881 13.5443 11.2281 13.3944 10.9298 13.0947C10.6314 12.795 10.4822 12.4347 10.4822 12.0138C10.4822 11.5928 10.6316 11.2326 10.9306 10.9329C11.2296 10.6332 11.5889 10.4833 12.0086 10.4833C12.0822 10.4833 12.1538 10.4888 12.2233 10.4998C12.2928 10.5108 12.3593 10.5272 12.4229 10.5491L13.2434 9.18292C13.3305 9.03924 13.3581 8.89802 13.3262 8.75927C13.2943 8.62052 13.2266 8.50753 13.1231 8.42031C13.0196 8.33309 12.8959 8.28292 12.7523 8.26979C12.6085 8.25674 12.4696 8.30684 12.3356 8.4201L8.07674 12.0539ZM7.99018 8.89687C8.24073 8.89687 8.45428 8.80858 8.6308 8.63198C8.8074 8.45545 8.8957 8.24191 8.8957 7.99135C8.8957 7.74087 8.8074 7.52733 8.6308 7.35073C8.45428 7.1742 8.24073 7.08594 7.99018 7.08594C7.73969 7.08594 7.52615 7.1742 7.34955 7.35073C7.17303 7.52733 7.08476 7.74087 7.08476 7.99135C7.08476 8.24191 7.17303 8.45545 7.34955 8.63198C7.52615 8.80858 7.73969 8.89687 7.99018 8.89687ZM12.0082 12.9193C12.2584 12.9193 12.4726 12.831 12.6508 12.6545C12.829 12.4779 12.9181 12.2643 12.9181 12.0139C12.9181 11.7633 12.829 11.5498 12.6508 11.3732C12.4726 11.1966 12.2584 11.1083 12.0082 11.1083C11.7579 11.1083 11.5452 11.1966 11.37 11.3732C11.1948 11.5498 11.1072 11.7633 11.1072 12.0139C11.1072 12.2643 11.1948 12.4779 11.37 12.6545C11.5452 12.831 11.7579 12.9193 12.0082 12.9193Z" fill="#1C1B1F"/>
9
+ </g>
10
+ </svg>