@avakhula/ui 0.0.10

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 (194) hide show
  1. package/.babelrc.json +14 -0
  2. package/.eslintrc.cjs +15 -0
  3. package/.nvmrc +1 -0
  4. package/.prettierrc.json +1 -0
  5. package/.storybook/intelliboardTheme.js +10 -0
  6. package/.storybook/main.js +25 -0
  7. package/.storybook/manager.js +7 -0
  8. package/.storybook/preview-head.html +11 -0
  9. package/.storybook/preview.js +24 -0
  10. package/.storybook/scss-loader.scss +6 -0
  11. package/.storybook/withSource.js +97 -0
  12. package/README.md +35 -0
  13. package/dist/favicon.ico +0 -0
  14. package/dist/index.mjs +19366 -0
  15. package/dist/index.umd.js +209 -0
  16. package/dist/style.css +1 -0
  17. package/index.html +21 -0
  18. package/package.json +63 -0
  19. package/public/favicon.ico +0 -0
  20. package/src/App.vue +37 -0
  21. package/src/EventEmmiter.js +19 -0
  22. package/src/assets/scss/mixins/dropdown-list-item.scss +45 -0
  23. package/src/assets/scss/mixins/tooltip-position.scss +147 -0
  24. package/src/assets/scss/mixins.scss +21 -0
  25. package/src/assets/scss/reset.scss +12 -0
  26. package/src/assets/scss/style.scss +73 -0
  27. package/src/assets/scss/typography.scss +155 -0
  28. package/src/assets/scss/variables/colors.scss +115 -0
  29. package/src/assets/scss/variables/shadows.scss +17 -0
  30. package/src/components/Accordion/Accordion.scss +94 -0
  31. package/src/components/Accordion/Accordion.stories.js +41 -0
  32. package/src/components/Accordion/Accordion.vue +104 -0
  33. package/src/components/Accordion/readme.mdx +38 -0
  34. package/src/components/Alert/Alert.stories.js +69 -0
  35. package/src/components/Alert/Alert.vue +131 -0
  36. package/src/components/Alert/alert.scss +166 -0
  37. package/src/components/Alert/constants.js +6 -0
  38. package/src/components/Alert/readme.mdx +63 -0
  39. package/src/components/Badge/Badge.stories.js +53 -0
  40. package/src/components/Badge/Badge.vue +58 -0
  41. package/src/components/Badge/readme.mdx +38 -0
  42. package/src/components/Breadcrumbs/Breadcrumbs.vue +98 -0
  43. package/src/components/Breadcrumbs/breadcrumbs.scss +77 -0
  44. package/src/components/Breadcrumbs/breadcrumbs.stories.js +37 -0
  45. package/src/components/Button/Button.stories.js +124 -0
  46. package/src/components/Button/Button.vue +165 -0
  47. package/src/components/Button/button.scss +217 -0
  48. package/src/components/Button/constants.js +8 -0
  49. package/src/components/Button/readme.mdx +118 -0
  50. package/src/components/ButtonGroup/ButtonGroup.stories.js +27 -0
  51. package/src/components/ButtonGroup/ButtonGroup.vue +24 -0
  52. package/src/components/ButtonGroup/readme.mdx +10 -0
  53. package/src/components/Dropdown/Dropdown.spec.js +90 -0
  54. package/src/components/Dropdown/Dropdown.stories.js +48 -0
  55. package/src/components/Dropdown/Dropdown.vue +313 -0
  56. package/src/components/Dropdown/DropdownDivider.vue +15 -0
  57. package/src/components/Dropdown/DropdownItem.vue +59 -0
  58. package/src/components/Dropdown/DropdownList.stories.js +174 -0
  59. package/src/components/Dropdown/DropdownList.vue +93 -0
  60. package/src/components/Dropdown/constants.js +10 -0
  61. package/src/components/Dropdown/readme.mdx +88 -0
  62. package/src/components/Form/CharactersCount.vue +55 -0
  63. package/src/components/Form/Checkbox/Checkbox.scss +226 -0
  64. package/src/components/Form/Checkbox/Checkbox.stories.js +63 -0
  65. package/src/components/Form/Checkbox/Checkbox.vue +128 -0
  66. package/src/components/Form/Checkbox/readme.mdx +69 -0
  67. package/src/components/Form/CheckboxGroup/CheckboxGroup.stories.js +64 -0
  68. package/src/components/Form/CheckboxGroup/CheckboxGroup.vue +87 -0
  69. package/src/components/Form/CheckboxGroup/readme.mdx +56 -0
  70. package/src/components/Form/DatePicker/DatePicker.scss +479 -0
  71. package/src/components/Form/DatePicker/DatePicker.stories.js +78 -0
  72. package/src/components/Form/DatePicker/DatePicker.vue +284 -0
  73. package/src/components/Form/DatePicker/Icons/chevron-back.js +5 -0
  74. package/src/components/Form/DatePicker/Icons/chevron-forward.js +5 -0
  75. package/src/components/Form/DatePicker/readme.mdx +115 -0
  76. package/src/components/Form/FormGroup/FormGroup.stories.js +48 -0
  77. package/src/components/Form/FormGroup/FormGroup.vue +61 -0
  78. package/src/components/Form/FormGroup/FormGroupSet.stories.js +32 -0
  79. package/src/components/Form/FormGroup/FormGroupSet.vue +75 -0
  80. package/src/components/Form/Input/Input.stories.js +137 -0
  81. package/src/components/Form/Input/Input.vue +231 -0
  82. package/src/components/Form/Input/constants.js +5 -0
  83. package/src/components/Form/Input/input.scss +133 -0
  84. package/src/components/Form/Input/readme.mdx +68 -0
  85. package/src/components/Form/Label/Label.stories.js +29 -0
  86. package/src/components/Form/Label/Label.vue +87 -0
  87. package/src/components/Form/Label/readme.mdx +25 -0
  88. package/src/components/Form/PhoneInput/PhoneInput.stories.js +43 -0
  89. package/src/components/Form/PhoneInput/PhoneInput.vue +105 -0
  90. package/src/components/Form/PhoneInput/phoneInput.scss +197 -0
  91. package/src/components/Form/PhoneInput/readme.mdx +37 -0
  92. package/src/components/Form/Radio/Radio.stories.js +34 -0
  93. package/src/components/Form/Radio/Radio.vue +109 -0
  94. package/src/components/Form/Radio/radio.scss +187 -0
  95. package/src/components/Form/Radio/readme.mdx +48 -0
  96. package/src/components/Form/TextEditor/TextEditor.stories.js +58 -0
  97. package/src/components/Form/TextEditor/TextEditor.vue +305 -0
  98. package/src/components/Form/TextEditor/icons/svg/chevron-down.svg +3 -0
  99. package/src/components/Form/TextEditor/icons/toolbarIcons.js +111 -0
  100. package/src/components/Form/TextEditor/plugins/alphabetList.js +43 -0
  101. package/src/components/Form/TextEditor/readme.mdx +59 -0
  102. package/src/components/Form/TextEditor/textEditor.scss +684 -0
  103. package/src/components/Form/Textarea/Textarea.spec.js +107 -0
  104. package/src/components/Form/Textarea/Textarea.stories.js +68 -0
  105. package/src/components/Form/Textarea/Textarea.vue +102 -0
  106. package/src/components/Form/Textarea/readme.mdx +45 -0
  107. package/src/components/Form/Textarea/textarea.scss +84 -0
  108. package/src/components/Form/Toggle/Toggle.stories.js +44 -0
  109. package/src/components/Form/Toggle/Toggle.vue +122 -0
  110. package/src/components/Form/Toggle/readme.mdx +39 -0
  111. package/src/components/Form/Toggle/toggle.scss +166 -0
  112. package/src/components/Icon.vue +41 -0
  113. package/src/components/IconButton/IconButton.scss +91 -0
  114. package/src/components/IconButton/IconButton.stories.js +115 -0
  115. package/src/components/IconButton/IconButton.vue +100 -0
  116. package/src/components/IconButton/constants.js +14 -0
  117. package/src/components/IconButton/readme.mdx +66 -0
  118. package/src/components/List.vue +150 -0
  119. package/src/components/Modal/Modal.stories.js +48 -0
  120. package/src/components/Modal/Modal.vue +231 -0
  121. package/src/components/Modal/readme.mdx +76 -0
  122. package/src/components/Pagination/LimitSelector.vue +73 -0
  123. package/src/components/Pagination/Pagination.stories.js +54 -0
  124. package/src/components/Pagination/Pagination.vue +227 -0
  125. package/src/components/Pagination/pagination.scss +189 -0
  126. package/src/components/Popover/Popover.stories.js +46 -0
  127. package/src/components/Popover/Popover.vue +81 -0
  128. package/src/components/Popover/constants.js +14 -0
  129. package/src/components/Popover/popover.scss +26 -0
  130. package/src/components/Popover/readme.mdx +42 -0
  131. package/src/components/ProgressBar/ProgressBar.stories.js +90 -0
  132. package/src/components/ProgressBar/ProgressBar.vue +58 -0
  133. package/src/components/ProgressBar/constants.js +6 -0
  134. package/src/components/ProgressBar/progressBar.scss +116 -0
  135. package/src/components/ProgressBar/readme.mdx +67 -0
  136. package/src/components/Sorting/Sorting.stories.js +35 -0
  137. package/src/components/Sorting/Sorting.vue +128 -0
  138. package/src/components/Sorting/constants.js +10 -0
  139. package/src/components/Sorting/sorting.scss +87 -0
  140. package/src/components/SplitButton/SplitButton.stories.js +39 -0
  141. package/src/components/SplitButton/SplitButton.vue +132 -0
  142. package/src/components/SplitButton/SplitButtonItem.vue +34 -0
  143. package/src/components/SplitButton/constants.js +4 -0
  144. package/src/components/SplitButton/readme.mdx +77 -0
  145. package/src/components/SplitButton/splitButton.scss +161 -0
  146. package/src/components/StatusIndicator/StatusIndicator.stories.js +40 -0
  147. package/src/components/StatusIndicator/StatusIndicator.vue +52 -0
  148. package/src/components/StatusIndicator/constants.js +10 -0
  149. package/src/components/StatusIndicator/icons.js +48 -0
  150. package/src/components/StatusIndicator/readme.mdx +21 -0
  151. package/src/components/Table/Cells/Cell.vue +71 -0
  152. package/src/components/Table/Cells/CheckboxCell.vue +48 -0
  153. package/src/components/Table/Row.vue +26 -0
  154. package/src/components/Table/Table.stories.js +59 -0
  155. package/src/components/Table/Table.vue +36 -0
  156. package/src/components/Tabs/Tab.vue +37 -0
  157. package/src/components/Tabs/TabDropdown.vue +93 -0
  158. package/src/components/Tabs/Tabs.stories.js +57 -0
  159. package/src/components/Tabs/Tabs.vue +94 -0
  160. package/src/components/Tabs/tabs.scss +157 -0
  161. package/src/components/TagPill/TagPill.stories.js +30 -0
  162. package/src/components/TagPill/TagPill.vue +133 -0
  163. package/src/components/TagPill/constants.js +9 -0
  164. package/src/components/TagPill/readme.mdx +37 -0
  165. package/src/components/ToggleTip/ToggleTip.stories.js +98 -0
  166. package/src/components/ToggleTip/ToggleTip.vue +112 -0
  167. package/src/components/ToggleTip/constants.js +14 -0
  168. package/src/components/ToggleTip/readme.mdx +46 -0
  169. package/src/components/ToggleTip/toggleTip.scss +55 -0
  170. package/src/components/Tooltip/Tooltip.stories.js +56 -0
  171. package/src/components/Tooltip/Tooltip.vue +49 -0
  172. package/src/components/Tooltip/readme.mdx +43 -0
  173. package/src/components/TreeSelect/Option.vue +325 -0
  174. package/src/components/TreeSelect/Select.stories.js +349 -0
  175. package/src/components/TreeSelect/Select.vue +909 -0
  176. package/src/components/TreeSelect/TreeSelect.stories.js +270 -0
  177. package/src/components/TreeSelect/scss/option.scss +204 -0
  178. package/src/components/TreeSelect/scss/select.scss +166 -0
  179. package/src/constants/events.js +2 -0
  180. package/src/constants/keyCodes.js +8 -0
  181. package/src/directives/outside/outside.js +81 -0
  182. package/src/directives/outside/outside.stories.js +29 -0
  183. package/src/directives/outside/readme.mdx +24 -0
  184. package/src/helpers/generateUID.js +3 -0
  185. package/src/helpers/getHrefFromID.js +3 -0
  186. package/src/helpers/multiLineOverflows.js +3 -0
  187. package/src/helpers/removeEvents.js +9 -0
  188. package/src/index.js +49 -0
  189. package/src/main.js +12 -0
  190. package/src/stories/link.readme.mdx +57 -0
  191. package/src/stories/link.stories.js +59 -0
  192. package/static/Logo.svg +25 -0
  193. package/static/docks/button.pdf +147566 -0
  194. package/vite.config.js +47 -0
@@ -0,0 +1,29 @@
1
+ import { ref } from "vue";
2
+ import IbButton from "../../components/Button/Button.vue";
3
+ import { OutsideDirective } from "./outside";
4
+ import readme from "./readme.mdx";
5
+
6
+ export default {
7
+ title: "directives/outside",
8
+ component: OutsideDirective,
9
+ parameters: {
10
+ docs: {
11
+ page: readme,
12
+ },
13
+ },
14
+ };
15
+
16
+ const Template = (args) => ({
17
+ components: { IbButton },
18
+ directives: { outside: OutsideDirective },
19
+ setup() {
20
+ const clicks = ref(0);
21
+ const clickOutside = () => (clicks.value += 1);
22
+
23
+ return { args, clicks, clickOutside };
24
+ },
25
+ template:
26
+ '<ib-button v-outside="clickOutside" v-bind="args">Click outside me: {{ clicks }}</ib-button>',
27
+ });
28
+
29
+ export const Default = Template.bind({});
@@ -0,0 +1,24 @@
1
+ # OutsideDirectives
2
+
3
+ A Vue Directive to call a callback when a click occurs outside of the element the directive is bound to. Any clicks on the element or any descendant elements are ignored.
4
+
5
+ ## Usage
6
+
7
+ ```html
8
+ <script>
9
+ import { OutsideDirective as Outside } from "ib/ui";// change when we deployed on npm
10
+
11
+ export default {
12
+ directives: { Outside },
13
+ methods: {
14
+ onClick(event) {
15
+ console.log("User clicked somewhere outside of this component", event);
16
+ },
17
+ },
18
+ };
19
+ </script>
20
+
21
+ <template>
22
+ <div v-outside="onClick">Click anywhere but here</div>
23
+ </template>
24
+ ```
@@ -0,0 +1,3 @@
1
+ export default function generateUID() {
2
+ return "_" + Math.random().toString(36).substr(2, 9);
3
+ }
@@ -0,0 +1,3 @@
1
+ export default function getHrefFromId(id) {
2
+ return "#" + id.toLowerCase().replace(/ /g, "-");
3
+ };
@@ -0,0 +1,3 @@
1
+ export default function multiLineOverflows(el) {
2
+ return el.scrollHeight > el.clientHeight;
3
+ }
@@ -0,0 +1,9 @@
1
+ export default function removeEvents(attrList) {
2
+ for (let prop in attrList) {
3
+ if (prop.startsWith("on")) {
4
+ delete attrList[prop];
5
+ }
6
+ }
7
+
8
+ return attrList;
9
+ }
package/src/index.js ADDED
@@ -0,0 +1,49 @@
1
+ export { default as IbIcon } from "./components/Icon.vue";
2
+ export { default as IbAlert } from "./components/Alert/Alert.vue";
3
+ export { default as IbAccordion } from "./components/Accordion/Accordion.vue";
4
+ export { default as IbBadge } from "./components/Badge/Badge.vue";
5
+ export { default as IbButton } from "./components/Button/Button.vue";
6
+ export { default as IbButtonGroup } from "./components/ButtonGroup/ButtonGroup.vue";
7
+ export { default as IbIconButton } from "./components/IconButton/IconButton.vue";
8
+ export { default as IbPopover } from "./components/Popover/Popover.vue";
9
+ export { default as IbTagPill } from "./components/TagPill/TagPill.vue";
10
+ export { default as IbToggleTip } from "./components/ToggleTip/ToggleTip.vue";
11
+ export { default as IbTooltip } from "./components/Tooltip/Tooltip.vue";
12
+ export { default as IbDropdown } from "./components/Dropdown/Dropdown.vue";
13
+ export { default as IbDropdownList } from "./components/Dropdown/DropdownList.vue";
14
+ export { default as IbDropdownItem } from "./components/Dropdown/DropdownItem.vue";
15
+ export { default as IbSplitButton } from "./components/SplitButton/SplitButton.vue";
16
+ export { default as IbSplitButtonItem } from "./components/SplitButton/SplitButtonItem.vue";
17
+ export { default as IbModal } from "./components/Modal/Modal.vue";
18
+ export { default as IbTabs } from "./components/Tabs/Tabs.vue";
19
+ export { default as IbTab } from "./components/Tabs/Tab.vue";
20
+ export { default as IbTabDropdown } from "./components/Tabs/TabDropdown.vue";
21
+ export { default as IbSorting } from "./components/Sorting/Sorting.vue";
22
+ export { default as IbBreadcrumbs } from "./components/Breadcrumbs/Breadcrumbs.vue";
23
+ export { default as IbPagination } from "./components/Pagination/Pagination.vue";
24
+ export { default as IbLimitSelector } from "./components/Pagination/LimitSelector.vue";
25
+ export { default as IbProgressBar } from "./components/ProgressBar/ProgressBar.vue";
26
+ export { default as IbStatusIndicator } from "./components/StatusIndicator/StatusIndicator.vue";
27
+
28
+ // FORM
29
+ export { default as IbInput } from "./components/Form/Input/Input.vue";
30
+ export { default as IbLabel } from "./components/Form/Label/Label.vue";
31
+ export { default as IbFormGroup } from "./components/Form/FormGroup/FormGroup.vue";
32
+ export { default as IbCheckbox } from "./components/Form/Checkbox/Checkbox.vue";
33
+ export { default as IbCheckboxGroup } from "./components/Form/CheckboxGroup/CheckboxGroup.vue";
34
+ export { default as IbRadio } from "./components/Form/Radio/Radio.vue";
35
+ export { default as IbToggle } from "./components/Form/Toggle/Toggle.vue";
36
+ export { default as IbTextarea } from "./components/Form/Textarea/Textarea.vue";
37
+ export { default as IbTreeSelect } from "./components/TreeSelect/Select.vue";
38
+ export { default as IbDatePicker } from "./components/Form/DatePicker/DatePicker.vue";
39
+ export { default as IbPhoneInput } from "./components/Form/PhoneInput/PhoneInput.vue";
40
+ export { default as IbTextEditor } from "./components/Form/TextEditor/TextEditor.vue";
41
+
42
+ // Table
43
+ export { default as IbTable } from "./components/Table/Table.vue";
44
+ export { default as IbRow } from "./components/Table/Row.vue";
45
+ export { default as IbCell } from "./components/Table/Cells/Cell.vue";
46
+ export { default as IbCheckboxCell } from "./components/Table/Cells/CheckboxCell.vue";
47
+
48
+ // Directives
49
+ export { OutsideDirective } from "./directives/outside/outside";
package/src/main.js ADDED
@@ -0,0 +1,12 @@
1
+ import { createApp } from "vue";
2
+ import App from "./App.vue";
3
+ import EventEmitter from "./EventEmmiter";
4
+ import './assets/scss/style.scss'
5
+ const app = createApp(App);
6
+ app.config.globalProperties.$globalEvents = new EventEmitter();
7
+ app.config.globalProperties.$emitEvent = function (event, ...args) {
8
+ this.$emit.apply(this, arguments);
9
+ this.$emit("all", { event, args });
10
+ };
11
+
12
+ app.mount("#app");
@@ -0,0 +1,57 @@
1
+ # IbLink
2
+
3
+ import { Story, Canvas } from "@storybook/addon-docs";
4
+
5
+ ## Inline Link
6
+
7
+ Links are used as navigational elements and can be used on their own or inline with text. They provide a lightweight option for navigation but like other interactive elements, too many links will clutter a page and make it difficult for users to identify their next steps. This is especially true for inline links, which should be used sparingly.
8
+
9
+ ### Usage:
10
+
11
+ For usage need add class `.ib-link` to tag `a`.
12
+
13
+ <Canvas>
14
+ <Story id="links--inline-link" />
15
+ </Canvas>
16
+
17
+ ### Use links when you want users to:
18
+
19
+ - Navigate to a different page within the application
20
+ - Navigate to an entirely different site
21
+ - Jump to an element on the same page
22
+ - Link to emails or phone numbers
23
+
24
+ ### When not to use:
25
+
26
+ Use a button instead of a link for actions that will change data or manipulate how it is displayed, change a state, or trigger an action. Buttons should never be used for navigational actions.
27
+
28
+ ## Standalone Link
29
+
30
+ Links are used as navigational elements and can be used on their own or inline with text. They provide a lightweight option for navigation but like other interactive elements, too many links will clutter a page and make it difficult for users to identify their next steps. This is especially true for inline links, which should be used sparingly.
31
+
32
+ ### Usage:
33
+
34
+ For usage need add class `.ib-standalone-link` to tag `a`.
35
+
36
+ <Canvas>
37
+ <Story id="links--standalone-link" />
38
+ </Canvas>
39
+
40
+ ### Use links when you want users to:
41
+
42
+ - Navigate to a different page within the application
43
+ - Navigate to an entirely different site
44
+ - Jump to an element on the same page
45
+ - Link to emails or phone numbers
46
+
47
+ ### When not to use:
48
+
49
+ Use a button instead of a link for actions that will change data or manipulate how it is displayed, change a state, or trigger an action. Buttons should never be used for navigational actions.
50
+
51
+ ### Usage with icon:
52
+
53
+ The standalone link component can be paired with an icon. Use 16px icons and place them to the right of the link. Icons should always be the same color as the link text.
54
+
55
+ <Canvas>
56
+ <Story id="links--standalone-link-with-icon" />
57
+ </Canvas>
@@ -0,0 +1,59 @@
1
+ import IbIcon from "../components/Icon.vue";
2
+ import readme from "./link.readme.mdx";
3
+
4
+ export default {
5
+ title: "Links",
6
+ parameters: {
7
+ docs: {
8
+ page: readme,
9
+ },
10
+ },
11
+ };
12
+
13
+ const Template = (args) => ({
14
+ setup() {
15
+ return { args };
16
+ },
17
+ template: `
18
+ <div>
19
+ <a href='#' class='ib-link'>Create an account</a>
20
+ <p>
21
+ Now IntelliBoard can analyze students even better. Using <a href='#' class='ib-link'>artificial intelligence systems</a>, IntelliBoard analyzes students and selects the personalized learning that best suits them. The student is offered a list of subjects that best suit his skills and preferences. IntelliBoard takes into account all the behavior, success, even hobbies of students.
22
+ </p>
23
+ </div>
24
+ `,
25
+ });
26
+
27
+ export const InlineLink = Template.bind({});
28
+ InlineLink.args = {};
29
+
30
+ const StandaloneLinkTemplate = (args) => ({
31
+ setup() {
32
+ return { args };
33
+ },
34
+ template: `
35
+ <div>
36
+ <a href='#' class='ib-standalone-link'>Create an account</a>
37
+ </div>
38
+ `,
39
+ });
40
+
41
+ export const StandaloneLink = StandaloneLinkTemplate.bind({});
42
+ StandaloneLink.args = {};
43
+
44
+ const StandaloneLinkTemplateWithIcon = (args) => ({
45
+ components: { IbIcon },
46
+ setup() {
47
+ return { args };
48
+ },
49
+ template: `
50
+ <div>
51
+ <a href='#' class='ib-standalone-link'>
52
+ Create an account
53
+ <ib-icon name="open-outline"></ib-icon>
54
+ </a>
55
+ </div>
56
+ `,
57
+ });
58
+
59
+ export const StandaloneLinkWithIcon = StandaloneLinkTemplateWithIcon.bind({});
@@ -0,0 +1,25 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="179" height="45" viewBox="0 0 179 45" fill="none">
2
+ <path d="M175.957 0.116699C174.277 0.116699 172.933 1.50253 172.933 3.23481C172.933 3.46578 172.933 3.69675 173.045 3.92772L138.211 16.9776C138.547 17.2086 138.995 17.4395 139.219 17.6705L173.381 4.85161C173.941 5.77549 174.949 6.35292 175.957 6.35292C177.637 6.35292 178.981 4.96709 178.981 3.23481C178.981 1.50253 177.637 0.116699 175.957 0.116699ZM175.957 5.42903C174.837 5.42903 173.941 4.50515 173.941 3.3503C173.941 2.19544 174.837 1.27155 175.957 1.27155C177.077 1.27155 177.973 2.19544 177.973 3.3503C177.973 4.50515 177.077 5.42903 175.957 5.42903Z" fill="#1A80FF"/>
3
+ <path d="M18.3664 35.1082L5.8217 39.4967C5.26167 38.5728 4.25361 37.8799 3.13355 37.8799C1.45345 37.8799 0.109375 39.2657 0.109375 40.998C0.109375 42.7303 1.45345 44.1161 3.13355 44.1161C4.81364 44.1161 6.15772 42.7303 6.15772 40.998C6.15772 40.767 6.15772 40.6515 6.15772 40.4206L21.5026 34.8773H18.3664V35.1082ZM3.13355 43.1922C2.01348 43.1922 1.11743 42.2683 1.11743 41.1135C1.11743 39.9586 2.01348 39.0347 3.13355 39.0347C4.25361 39.0347 5.14966 39.9586 5.14966 41.1135C5.14966 42.2683 4.25361 43.1922 3.13355 43.1922Z" fill="#1A80FF"/>
4
+ <path d="M22.627 34.6442L25.8751 33.4893V32.3345L22.627 33.4893V34.6442Z" fill="#1A80FF"/>
5
+ <path d="M32.8125 29.793V30.9479L35.1646 30.1395C35.0526 29.793 35.0526 29.4466 35.0526 29.1001L32.8125 29.793Z" fill="#1A80FF"/>
6
+ <path d="M45.0242 25.4077L42 26.5626V27.2555C42 27.371 42 27.6019 42 27.7174L45.0242 26.6781C45.0242 26.4471 45.0242 26.2161 45.0242 25.9851C45.0242 25.7542 45.0242 25.5232 45.0242 25.4077Z" fill="#1A80FF"/>
7
+ <path d="M54.8743 21.9399L52.4102 22.8638H55.4343C55.4343 22.4019 55.2103 22.1709 54.8743 21.9399Z" fill="#1A80FF"/>
8
+ <path d="M61.3777 20.6712L62.8338 20.0938V18.939L60.9297 19.6319C61.1537 19.9783 61.2657 20.3248 61.3777 20.6712Z" fill="#1A80FF"/>
9
+ <path d="M120.062 23.7912C119.726 22.4054 118.494 21.4815 117.15 21.4815C115.694 21.4815 114.462 22.5209 114.126 23.9067L111.662 22.7519C111.55 23.0983 111.438 23.4448 111.438 23.7912L114.126 25.0616C114.35 26.6784 115.582 27.9487 117.15 27.9487C118.718 27.9487 120.062 26.6784 120.174 25.0616L122.862 24.0222C122.862 23.6758 122.75 23.3293 122.638 22.9828L120.062 23.7912ZM117.15 26.6784C116.03 26.6784 115.134 25.7545 115.134 24.5996C115.134 23.4448 116.03 22.5209 117.15 22.5209C118.27 22.5209 119.166 23.4448 119.166 24.5996C119.166 25.7545 118.27 26.6784 117.15 26.6784Z" fill="#1A80FF"/>
10
+ <path d="M88.0384 11.7829C87.8144 10.1661 86.5823 9.01123 85.0142 9.01123C83.3341 9.01123 81.99 10.3971 81.99 12.1293L80.0859 12.8223V13.9771L82.1021 13.2842C82.5501 14.4391 83.6701 15.3629 85.0142 15.3629C86.4703 15.3629 87.7024 14.3236 88.0384 12.9377L90.7265 14.0926V12.9377L88.0384 11.7829ZM85.0142 14.2081C83.8942 14.2081 82.9981 13.2842 82.9981 12.1293C82.9981 10.9745 83.8942 10.0506 85.0142 10.0506C86.1343 10.0506 87.0303 10.9745 87.0303 12.1293C87.0303 13.2842 86.1343 14.2081 85.0142 14.2081Z" fill="#1A80FF"/>
11
+ <path d="M97.5547 17.3267L100.467 18.7126C100.803 18.4816 101.027 18.2506 101.139 17.9042L97.5547 16.1719V17.3267Z" fill="#1A80FF"/>
12
+ <path d="M12.8762 11.2036V33.9543H7.83594V11.2036H12.8762Z" fill="#0060D6"/>
13
+ <path d="M26.0935 17.0884C23.4053 17.0884 21.8372 18.7052 21.1652 19.7445H21.0532L20.8292 17.4348H16.4609C16.5729 18.9361 16.5729 20.6684 16.5729 22.7472V34.0648H21.5012V24.4795C21.5012 24.0175 21.6132 23.5556 21.7252 23.2091C22.0613 22.2852 22.8453 21.2459 24.1894 21.2459C25.9815 21.2459 26.7655 22.7472 26.7655 24.8259V33.9493H31.6938V24.133C31.8058 19.2826 29.3417 17.0884 26.0935 17.0884Z" fill="#0060D6"/>
14
+ <path d="M40.988 21.2495H44.5722V17.4385H40.988V12.7036L36.0598 13.8585V17.4385H33.9316V21.2495H36.0598V28.0632C36.0598 28.2942 36.0598 28.5251 36.0598 28.7561C36.0598 29.1026 36.0598 29.449 36.1718 29.7955C36.3958 31.1813 36.7318 32.2207 37.4038 32.9136C38.1879 33.722 39.532 34.2994 41.1 34.2994C42.5561 34.2994 43.6762 34.0684 44.3482 33.8375V29.911C44.0122 30.0264 43.4522 30.0264 42.8921 30.0264C41.5481 30.0264 41.1 29.3335 40.988 27.9477C40.988 27.7167 40.988 27.4858 40.988 27.1393V21.2495Z" fill="#0060D6"/>
15
+ <path d="M61.2667 25.2879C61.2667 23.7865 61.0427 22.2852 60.3707 21.0149C60.2587 20.6684 60.0347 20.322 59.8107 20.091C58.6906 18.3587 56.7865 17.0884 53.9863 17.0884C48.722 17.0884 46.2579 21.1304 45.9219 25.0569C45.9219 25.2879 45.9219 25.6343 45.9219 25.8653C45.9219 25.9808 45.9219 26.0963 45.9219 26.2117C46.0339 31.1776 49.1701 34.2957 54.4344 34.2957C56.5625 34.2957 58.5786 33.9493 60.2587 33.2564L59.5866 29.7918C58.2426 30.2537 56.8985 30.4847 55.1064 30.4847C52.7543 30.4847 50.7381 29.4453 50.5141 27.3666H60.8187C61.1547 26.9046 61.2667 26.2117 61.2667 25.2879ZM50.7381 23.7865C50.7381 23.6711 50.7381 23.4401 50.8502 23.3246C51.0742 22.0543 51.9702 20.4375 53.8743 20.4375C54.8824 20.4375 55.5544 20.8994 56.0024 21.4768C56.2265 21.7078 56.3385 22.0543 56.4505 22.4007C56.6745 22.8627 56.6745 23.4401 56.6745 23.7865H50.7381Z" fill="#0060D6"/>
16
+ <path d="M63.8418 8.55322V33.96H70.0021V8.55322H63.8418Z" fill="#1A80FF"/>
17
+ <path d="M72.9102 2.19189V33.9504H79.0705V2.19189H72.9102Z" fill="#1A80FF"/>
18
+ <path d="M82.5469 17.4385V33.9529H87.4752V17.4385H82.5469Z" fill="#1A80FF"/>
19
+ <path d="M107.189 24.3648C106.405 22.979 105.061 22.0551 103.492 21.7087V21.5932C104.053 21.3622 104.613 21.1312 105.061 20.7848C105.397 20.5538 105.621 20.3228 105.957 19.9764C106.853 19.0525 107.189 17.8976 107.189 16.6273C107.189 14.5486 106.069 13.0473 104.501 12.1234C102.932 11.084 101.028 10.853 98.0042 10.853C95.54 10.853 92.8519 11.084 91.5078 11.315V33.7192C92.6279 33.9501 94.42 34.0656 96.8841 34.0656C101.252 34.0656 103.941 33.3727 105.621 31.9869C106.741 31.063 107.637 29.7927 107.861 28.1759C107.861 27.8294 107.973 27.4829 107.973 27.1365C107.973 26.2126 107.749 25.1732 107.189 24.3648ZM96.5481 14.895C96.9961 14.7795 97.5562 14.7795 98.6762 14.7795C100.916 14.7795 102.26 15.7034 102.26 17.4357C102.26 17.7822 102.26 18.0131 102.148 18.2441C102.036 18.5906 101.812 18.8215 101.588 19.168C100.916 19.8609 99.7963 20.2074 98.2282 20.2074H96.5481V14.895ZM96.5481 23.9029H98.2282C100.692 23.9029 102.708 24.8268 102.708 27.1365C102.708 29.5617 100.692 30.4856 98.4522 30.4856C97.5562 30.4856 96.9961 30.4856 96.5481 30.3701V23.9029Z" fill="#0060D6"/>
20
+ <path d="M140.679 29.9073V24.133C140.679 21.5923 140.007 19.3981 138.103 18.1277C137.767 17.8968 137.319 17.6658 136.871 17.5503C135.975 17.2039 134.967 17.0884 133.735 17.0884C130.823 17.0884 128.583 17.8968 127.463 18.5897L128.135 20.8994L128.359 21.9388C129.143 21.4768 130.263 21.0149 131.383 20.7839C131.831 20.6684 132.279 20.6684 132.727 20.6684C135.191 20.6684 135.639 21.9388 135.639 22.7472V22.9781C131.271 22.9781 128.135 24.133 126.791 26.6737C126.454 27.2511 126.342 27.8285 126.23 28.6369C126.23 28.8679 126.23 29.0989 126.23 29.3298C126.23 31.986 128.135 34.4112 131.383 34.4112C133.287 34.4112 134.967 33.7183 135.975 32.3325H136.087L136.423 33.9493H140.903C140.791 33.0254 140.679 31.5241 140.679 29.9073ZM135.863 27.944C135.863 28.2905 135.863 28.5214 135.751 28.8679C135.415 29.9073 134.407 30.8312 133.175 30.8312C132.055 30.8312 131.159 30.1382 131.159 28.8679C131.159 26.9046 133.175 26.2117 135.863 26.3272V27.944Z" fill="#0060D6"/>
21
+ <path d="M144.487 22.8702C144.487 20.445 144.375 18.8282 144.375 17.4424H148.631L148.855 20.445H148.967C149.751 18.0198 151.767 16.9805 153.336 16.9805C153.784 16.9805 154.008 16.9805 154.344 17.096V21.9463C154.008 21.8309 153.56 21.8309 153 21.8309C151.207 21.8309 149.975 22.8702 149.527 24.487C149.415 24.8335 149.415 25.1799 149.415 25.6419V34.0723H144.487V22.8702Z" fill="#0060D6"/>
22
+ <path d="M171.82 9.93652V28.9916C171.82 30.8394 171.932 32.8027 171.932 33.9575H167.564L167.34 31.5323H167.228C166.22 33.3801 164.316 34.304 162.188 34.304C158.38 34.304 155.355 30.9549 155.355 25.8735C155.355 20.3302 158.716 17.0966 162.524 17.0966C164.54 17.0966 165.996 17.7895 166.78 18.9444H166.892V9.93652H171.82ZM166.78 24.3722C166.78 24.1412 166.78 23.6793 166.668 23.4483C166.332 22.0625 165.324 20.9077 163.756 20.9077C161.516 20.9077 160.284 22.9864 160.284 25.6426C160.284 28.4142 161.628 30.262 163.756 30.262C165.212 30.262 166.332 29.2226 166.668 27.8368C166.78 27.4903 166.78 27.1439 166.78 26.6819V24.3722Z" fill="#0060D6"/>
23
+ <path d="M125.782 22.7556C125.67 22.4091 125.67 22.0627 125.558 21.7162C124.438 18.0207 121.077 15.48 117.157 15.48C113.349 15.48 110.101 17.9052 108.869 21.3697C108.757 21.7162 108.645 22.0627 108.533 22.4091C108.421 22.9865 108.309 23.564 108.309 24.1414C108.309 24.2569 108.309 24.4879 108.309 24.6033C108.309 25.8737 108.533 27.0285 108.981 28.1834C110.325 31.417 113.461 33.7267 117.157 33.7267C118.949 33.7267 120.629 33.1493 122.085 32.2254C122.645 31.8789 123.205 31.417 123.653 30.8396C124.326 30.0312 124.998 29.2228 125.334 28.1834C125.558 27.606 125.782 26.9131 125.894 26.2201C126.006 25.6427 126.006 25.1808 126.006 24.6033C126.006 24.0259 126.006 23.333 125.782 22.7556ZM117.157 31.648C113.349 31.648 110.325 28.5298 110.325 24.6033C110.325 24.1414 110.325 23.6795 110.437 23.2175C110.549 22.8711 110.549 22.5246 110.661 22.1781C111.557 19.4065 114.133 17.5587 117.045 17.5587C120.069 17.5587 122.645 19.6375 123.541 22.4091C123.653 22.7556 123.765 23.102 123.765 23.4485C123.877 23.7949 123.877 24.1414 123.877 24.6033C123.989 28.5298 120.853 31.648 117.157 31.648Z" fill="white"/>
24
+ <path d="M131.942 39.3855L124.326 31.5325L123.653 30.8396C124.326 30.0312 124.998 29.2228 125.334 28.1834C125.558 27.606 125.782 26.9131 125.894 26.2201C126.006 25.6427 126.006 25.1808 126.006 24.6033C126.006 24.0259 125.894 23.333 125.782 22.7556C125.67 22.4091 125.67 22.0627 125.558 21.7162C124.438 18.0207 121.077 15.48 117.157 15.48C113.349 15.48 110.101 17.9052 108.869 21.3697C108.757 21.7162 108.645 22.0627 108.533 22.4091C108.421 22.9865 108.309 23.564 108.309 24.1414C108.309 24.2569 108.309 24.4879 108.309 24.6033C108.309 25.8737 108.533 27.0285 108.981 28.1834C110.325 31.417 113.461 33.7267 117.157 33.7267C118.949 33.7267 120.629 33.1493 122.085 32.2254L122.869 33.0338L130.598 41.0023C130.822 41.2333 131.046 41.3487 131.382 41.3487C131.606 41.3487 131.942 41.2333 132.054 41.0023C132.278 40.5403 132.278 39.8474 131.942 39.3855ZM110.325 24.6033C110.325 24.1414 110.325 23.6795 110.437 23.2175C110.549 22.8711 110.549 22.5246 110.661 22.1781C111.557 19.4065 114.133 17.5587 117.045 17.5587C120.069 17.5587 122.645 19.6375 123.541 22.4091C123.653 22.7556 123.765 23.102 123.765 23.4485C123.877 23.7949 123.877 24.1414 123.877 24.6033C123.877 28.5298 120.853 31.648 117.045 31.648C113.349 31.648 110.325 28.5298 110.325 24.6033Z" fill="#0060D6"/>
25
+ </svg>