@bigmath-ui-library/core 2.0.4

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 (229) hide show
  1. package/LICENSE +7 -0
  2. package/LICENSE.md +1 -0
  3. package/README.md +42 -0
  4. package/dist/cjs/index.css +11 -0
  5. package/dist/cjs/index.js +134365 -0
  6. package/dist/esm/index.css +11 -0
  7. package/dist/esm/index.js +134258 -0
  8. package/package.json +58 -0
  9. package/rollup.config.js +73 -0
  10. package/src/BMClassnameSetup.ts +3 -0
  11. package/src/assets/icons/Calendar.svg +6 -0
  12. package/src/assets/icons/Close.svg +40 -0
  13. package/src/assets/icons/Default-Loading-Circles.svg +31 -0
  14. package/src/assets/icons/alert.svg +6 -0
  15. package/src/assets/icons/aws.svg +19 -0
  16. package/src/assets/icons/caret-down.svg +3 -0
  17. package/src/assets/icons/check.svg +6 -0
  18. package/src/assets/icons/circle-check-solid.svg +7 -0
  19. package/src/assets/icons/circle-check.svg +6 -0
  20. package/src/assets/icons/circle-selected.svg +3 -0
  21. package/src/assets/icons/circle-unselected.svg +3 -0
  22. package/src/assets/icons/close-basic.svg +3 -0
  23. package/src/assets/icons/close_collapse.svg +3 -0
  24. package/src/assets/icons/copy.svg +3 -0
  25. package/src/assets/icons/drag.svg +3 -0
  26. package/src/assets/icons/expand-more.svg +3 -0
  27. package/src/assets/icons/failed-solid.svg +7 -0
  28. package/src/assets/icons/globe.svg +3 -0
  29. package/src/assets/icons/google-cloud.svg +6 -0
  30. package/src/assets/icons/in-active.svg +4 -0
  31. package/src/assets/icons/info-solid.svg +6 -0
  32. package/src/assets/icons/info.svg +6 -0
  33. package/src/assets/icons/k8s.svg +4 -0
  34. package/src/assets/icons/lock-locked.svg +5 -0
  35. package/src/assets/icons/microsoft-azure.svg +9 -0
  36. package/src/assets/icons/onprem.svg +3 -0
  37. package/src/assets/icons/pencil.svg +3 -0
  38. package/src/assets/icons/search.svg +6 -0
  39. package/src/assets/icons/shield.svg +4 -0
  40. package/src/assets/icons/star.svg +3 -0
  41. package/src/assets/icons/success-tick.svg +3 -0
  42. package/src/assets/icons/timer.svg +3 -0
  43. package/src/assets/icons/visibility-off.svg +6 -0
  44. package/src/assets/icons/visibility.svg +6 -0
  45. package/src/assets/icons/warning.svg +6 -0
  46. package/src/bma/components/BMButton/BMButton.tsx +34 -0
  47. package/src/bma/components/BMButton/index.ts +1 -0
  48. package/src/bma/components/BMInput/BMInput.tsx +13 -0
  49. package/src/bma/components/BMInput/BMInputField.tsx +7 -0
  50. package/src/bma/components/BMInput/BMSearch.tsx +6 -0
  51. package/src/bma/components/BMInput/index.ts +3 -0
  52. package/src/bma/index.ts +3 -0
  53. package/src/bma/package.json +4 -0
  54. package/src/bma/theme/BMAutocomplete.ts +12 -0
  55. package/src/bma/theme/BMInput.ts +46 -0
  56. package/src/bma/theme/theme.ts +15 -0
  57. package/src/bma/theme/themeUtils.ts +10 -0
  58. package/src/components/BMAccordion/BMAccordion.tsx +150 -0
  59. package/src/components/BMAccordion/index.ts +1 -0
  60. package/src/components/BMAddSection/BMAddSection.tsx +38 -0
  61. package/src/components/BMAddSection/index.ts +1 -0
  62. package/src/components/BMAlert/BMAlert.tsx +168 -0
  63. package/src/components/BMAlert/index.ts +1 -0
  64. package/src/components/BMAutoComplete/BMAutoComplete.tsx +86 -0
  65. package/src/components/BMAutoComplete/index.ts +1 -0
  66. package/src/components/BMAvatar/BMAvatar.tsx +45 -0
  67. package/src/components/BMAvatar/index.ts +1 -0
  68. package/src/components/BMButton/BMButton.tsx +46 -0
  69. package/src/components/BMButton/BMButtonGroup.tsx +46 -0
  70. package/src/components/BMButton/BMSplitButton.tsx +72 -0
  71. package/src/components/BMButton/index.ts +3 -0
  72. package/src/components/BMCheckbox/BMCheckbox.tsx +44 -0
  73. package/src/components/BMCheckbox/BMCheckboxField.tsx +41 -0
  74. package/src/components/BMCheckbox/index.ts +2 -0
  75. package/src/components/BMCloudSelect/BMCloudList.tsx +43 -0
  76. package/src/components/BMCloudSelect/BMCloudSelect.tsx +109 -0
  77. package/src/components/BMCloudSelect/BMCloudSelectField.tsx +46 -0
  78. package/src/components/BMCloudSelect/index.ts +3 -0
  79. package/src/components/BMCodeBlock/BMCodeBlock.tsx +233 -0
  80. package/src/components/BMCodeBlock/index.ts +1 -0
  81. package/src/components/BMDatePicker/BMDatePicker.tsx +187 -0
  82. package/src/components/BMDatePicker/index.ts +1 -0
  83. package/src/components/BMDropdown/BMDropdown.tsx +107 -0
  84. package/src/components/BMDropdown/index.ts +1 -0
  85. package/src/components/BMForm/BMFormControlLabel.tsx +23 -0
  86. package/src/components/BMForm/BMLabel.tsx +24 -0
  87. package/src/components/BMForm/index.ts +2 -0
  88. package/src/components/BMHelloBanner/BMHelloBanner.tsx +68 -0
  89. package/src/components/BMHelloBanner/index.ts +1 -0
  90. package/src/components/BMInput/BMInput.tsx +31 -0
  91. package/src/components/BMInput/BMInputEditableCode.tsx +120 -0
  92. package/src/components/BMInput/BMInputField.tsx +37 -0
  93. package/src/components/BMInput/BMSearch.tsx +17 -0
  94. package/src/components/BMInput/BMStripeInput.tsx +24 -0
  95. package/src/components/BMInput/index.ts +5 -0
  96. package/src/components/BMLoadingBox/BMLoadingBox.tsx +45 -0
  97. package/src/components/BMLoadingBox/index.ts +1 -0
  98. package/src/components/BMMaps/BMMapMarker.css +12 -0
  99. package/src/components/BMMaps/BMMapMarker.tsx +68 -0
  100. package/src/components/BMMaps/BMMaps.tsx +129 -0
  101. package/src/components/BMMaps/MapIcons.tsx +83 -0
  102. package/src/components/BMMaps/icons/GeoPartition.svg +19 -0
  103. package/src/components/BMMaps/icons/GeoPartitionHover.svg +20 -0
  104. package/src/components/BMMaps/icons/MasterPreferred.svg +19 -0
  105. package/src/components/BMMaps/icons/MasterPreferredHover.svg +20 -0
  106. package/src/components/BMMaps/icons/ReadReplica.svg +18 -0
  107. package/src/components/BMMaps/icons/ReadReplicaHover.svg +19 -0
  108. package/src/components/BMMaps/icons/RegionNotSelected.svg +18 -0
  109. package/src/components/BMMaps/icons/RegionNotSelectedHover.svg +19 -0
  110. package/src/components/BMMaps/icons/RegionPreferred.svg +18 -0
  111. package/src/components/BMMaps/icons/RegionPreferredHover.svg +19 -0
  112. package/src/components/BMMaps/icons/RegionSelected.svg +18 -0
  113. package/src/components/BMMaps/icons/RegionSelectedHover.svg +19 -0
  114. package/src/components/BMMaps/index.ts +5 -0
  115. package/src/components/BMMaps/legend/MapLegend.tsx +80 -0
  116. package/src/components/BMMaps/markerTypes.ts +8 -0
  117. package/src/components/BMModal/BMModal.tsx +313 -0
  118. package/src/components/BMModal/index.ts +1 -0
  119. package/src/components/BMMultiEntry/BMMultiEntry.tsx +328 -0
  120. package/src/components/BMMultiEntry/BMMultiEntryField.tsx +47 -0
  121. package/src/components/BMMultiEntry/index.ts +2 -0
  122. package/src/components/BMMultiLevelStepper/BMMultiLevelStepper.tsx +191 -0
  123. package/src/components/BMMultiLevelStepper/index.ts +1 -0
  124. package/src/components/BMPagination/BMPagination.tsx +64 -0
  125. package/src/components/BMPagination/index.ts +1 -0
  126. package/src/components/BMPassword/BMPassword.tsx +37 -0
  127. package/src/components/BMPassword/BMPasswordField.tsx +50 -0
  128. package/src/components/BMPassword/index.ts +2 -0
  129. package/src/components/BMProgress/BMProgress.tsx +43 -0
  130. package/src/components/BMProgress/index.ts +1 -0
  131. package/src/components/BMRadio/BMRadio.tsx +162 -0
  132. package/src/components/BMRadio/BMRadioGroupField.tsx +40 -0
  133. package/src/components/BMRadio/index.ts +2 -0
  134. package/src/components/BMSelect/BMSelect.tsx +70 -0
  135. package/src/components/BMSelect/BMSelectField.tsx +47 -0
  136. package/src/components/BMSelect/index.ts +2 -0
  137. package/src/components/BMSlider/BMSlider.tsx +16 -0
  138. package/src/components/BMSlider/index.ts +1 -0
  139. package/src/components/BMSmartStatus/BMSmartStatus.tsx +185 -0
  140. package/src/components/BMSmartStatus/index.tsx +1 -0
  141. package/src/components/BMStatus/BMStatus.tsx +98 -0
  142. package/src/components/BMStatus/index.ts +1 -0
  143. package/src/components/BMTable/BMTable.tsx +131 -0
  144. package/src/components/BMTable/index.ts +1 -0
  145. package/src/components/BMTabs/BMTabs.tsx +50 -0
  146. package/src/components/BMTabs/index.ts +1 -0
  147. package/src/components/BMTag/BMTag.tsx +47 -0
  148. package/src/components/BMTag/index.ts +1 -0
  149. package/src/components/BMTagv2/BMTagv2.tsx +250 -0
  150. package/src/components/BMTagv2/index.ts +1 -0
  151. package/src/components/BMToggle/BMMultiToggleButton.tsx +99 -0
  152. package/src/components/BMToggle/BMToggle.tsx +35 -0
  153. package/src/components/BMToggle/BMToggleField.tsx +28 -0
  154. package/src/components/BMToggle/index.ts +3 -0
  155. package/src/components/BMTooltip/BMTooltip.tsx +52 -0
  156. package/src/components/BMTooltip/index.ts +1 -0
  157. package/src/components/BMWarning/BMWarning.tsx +39 -0
  158. package/src/components/BMWarning/index.ts +1 -0
  159. package/src/components/GenericFailure/GenericFailure.tsx +28 -0
  160. package/src/components/GenericFailure/index.ts +1 -0
  161. package/src/components/NoAccess/NoAccess.tsx +40 -0
  162. package/src/components/NoAccess/NoAccessActionTooltip.tsx +53 -0
  163. package/src/components/NoAccess/NoPermissionModal.tsx +55 -0
  164. package/src/components/NoAccess/index.ts +3 -0
  165. package/src/components/index.ts +34 -0
  166. package/src/index.ts +9 -0
  167. package/src/theme/BMAutoComplete.ts +152 -0
  168. package/src/theme/BMAvatar.ts +5 -0
  169. package/src/theme/BMButton.ts +132 -0
  170. package/src/theme/BMButtonGroup.ts +49 -0
  171. package/src/theme/BMCheckbox.ts +16 -0
  172. package/src/theme/BMFormHelperText.ts +19 -0
  173. package/src/theme/BMInput.ts +120 -0
  174. package/src/theme/BMMaps.ts +9 -0
  175. package/src/theme/BMRadio.ts +10 -0
  176. package/src/theme/BMTabs.ts +79 -0
  177. package/src/theme/BMTag.ts +28 -0
  178. package/src/theme/BMToggle.ts +50 -0
  179. package/src/theme/BMTooltip.ts +34 -0
  180. package/src/theme/theme.ts +326 -0
  181. package/src/theme/variables.ts +152 -0
  182. package/src/types/custom.d.ts +9 -0
  183. package/src/types/svg.d.ts +5 -0
  184. package/stories/BMAButton.stories.tsx +67 -0
  185. package/stories/BMAccordion.stories.tsx +55 -0
  186. package/stories/BMAddSection.stories.tsx +40 -0
  187. package/stories/BMAlert.stories.tsx +33 -0
  188. package/stories/BMAutoComplete.stories.tsx +65 -0
  189. package/stories/BMAvatar.stories.tsx +76 -0
  190. package/stories/BMButton.stories.tsx +57 -0
  191. package/stories/BMButton2.stories.tsx +131 -0
  192. package/stories/BMCheckbox.stories.tsx +23 -0
  193. package/stories/BMCloudSelectField.stories.tsx +40 -0
  194. package/stories/BMCodeBlock.stories.tsx +57 -0
  195. package/stories/BMDatePicker.stories.tsx +88 -0
  196. package/stories/BMDropdown.stories.tsx +84 -0
  197. package/stories/BMGroupButton.stories.tsx +53 -0
  198. package/stories/BMHelloBanner.stories.tsx +33 -0
  199. package/stories/BMInput.stories.tsx +184 -0
  200. package/stories/BMInputEditableCode.stories.tsx +86 -0
  201. package/stories/BMInputField.stories.tsx +50 -0
  202. package/stories/BMLoadingBox.stories.tsx +45 -0
  203. package/stories/BMMaps.stories.tsx +29 -0
  204. package/stories/BMModal.stories.tsx +218 -0
  205. package/stories/BMMultiEntry.stories.tsx +93 -0
  206. package/stories/BMMultiLevelStepper.stories.tsx +87 -0
  207. package/stories/BMPagination.stories.tsx +41 -0
  208. package/stories/BMPassword.stories.tsx +133 -0
  209. package/stories/BMProgress.stories.tsx +60 -0
  210. package/stories/BMRadio.stories.tsx +71 -0
  211. package/stories/BMSelect.stories.tsx +160 -0
  212. package/stories/BMSlider.stories.tsx +74 -0
  213. package/stories/BMSmartStatus.stories.tsx +98 -0
  214. package/stories/BMSplitButton.stories.tsx +32 -0
  215. package/stories/BMStatus.stories.tsx +29 -0
  216. package/stories/BMTable.stories.tsx +350 -0
  217. package/stories/BMTabs.stories.tsx +25 -0
  218. package/stories/BMTag.stories.tsx +63 -0
  219. package/stories/BMTagv2.stories.tsx +288 -0
  220. package/stories/BMToggle.stories.tsx +123 -0
  221. package/stories/BMTooltip.stories.tsx +59 -0
  222. package/stories/BMTypography.stories.tsx +79 -0
  223. package/stories/BMWarning.stories.tsx +55 -0
  224. package/stories/GenericFailure.stories.tsx +47 -0
  225. package/stories/NoAccess.stories.tsx +19 -0
  226. package/stories/NoAccessActionTooltip.stories.tsx +50 -0
  227. package/stories/NoPermissionModal.stories.tsx +46 -0
  228. package/tsconfig.base.json +21 -0
  229. package/tsconfig.build.json +23 -0
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "@bigmath-ui-library/core",
3
+ "version": "2.0.4",
4
+ "description": "",
5
+ "main": "dist/cjs/index.js",
6
+ "module": "dist/esm/index.js",
7
+ "types": "dist/esm/index.d.ts",
8
+ "type": "module",
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1",
11
+ "build": "rollup -c rollup.config.js"
12
+ },
13
+ "publishConfig": {
14
+ "access": "public",
15
+ "registry": "https://registry.npmjs.org/"
16
+ },
17
+ "author": "",
18
+ "license": "ISC",
19
+ "dependencies": {
20
+ "@emotion/react": "11.8.1",
21
+ "@emotion/styled": "11.8.1",
22
+ "@mui/icons-material": "^5.18.0",
23
+ "@mui/material": "6.4.11",
24
+ "@mui/types": "^7.2.21",
25
+ "@mui/x-data-grid": "^9.0.2",
26
+ "@mui/x-date-pickers": "^9.0.2",
27
+ "@types/styled-components": "5.1.34",
28
+ "highlight.js": "^11.11.1",
29
+ "leaflet": "^1.9.4",
30
+ "postcss": "^8.5.10",
31
+ "react-hook-form": "^7.73.1",
32
+ "react-leaflet": "^5.0.0",
33
+ "storybook-addon-pseudo-states": "4.0.2",
34
+ "styled-components": "5.3.11"
35
+ },
36
+ "peerDependencies": {
37
+ "react": "17.0.2",
38
+ "react-dom": "17.0.2"
39
+ },
40
+ "gitHead": "85b0ce59577ae80d1f37b33046ee64b451ff5e45",
41
+ "devDependencies": {
42
+ "@rollup/plugin-alias": "^6.0.0",
43
+ "@rollup/plugin-commonjs": "^29.0.2",
44
+ "@rollup/plugin-node-resolve": "^16.0.3",
45
+ "@svgr/rollup": "^8.1.0",
46
+ "@types/highlight.js": "^9.12.4",
47
+ "@types/leaflet": "^1.9.21",
48
+ "@types/node": "^25.6.0",
49
+ "@types/react": "^19.2.14",
50
+ "@types/react-dom": "^19.2.3",
51
+ "react": "^19.2.5",
52
+ "react-dom": "^19.2.5",
53
+ "rollup": "^4.60.2",
54
+ "rollup-plugin-postcss": "^4.0.2",
55
+ "rollup-plugin-typescript2": "^0.37.0",
56
+ "typescript": "^6.0.3"
57
+ }
58
+ }
@@ -0,0 +1,73 @@
1
+ import resolve from '@rollup/plugin-node-resolve';
2
+ import commonjs from '@rollup/plugin-commonjs';
3
+ import typescript from 'rollup-plugin-typescript2';
4
+ import postcss from 'rollup-plugin-postcss';
5
+ import svgr from '@svgr/rollup';
6
+ import alias from '@rollup/plugin-alias';
7
+ import { createRequire } from 'module';
8
+ import { fileURLToPath } from 'url';
9
+ import { dirname, resolve as pathResolve } from 'path';
10
+
11
+ const __filename = fileURLToPath(import.meta.url);
12
+ const __dirname = dirname(__filename);
13
+
14
+ const require = createRequire(import.meta.url);
15
+ const pkg = require('./package.json');
16
+
17
+ const external = [
18
+ 'react',
19
+ 'react-dom',
20
+ 'react/jsx-runtime',
21
+ /^@mui\//,
22
+ /^@emotion\//,
23
+ 'styled-components',
24
+ /^@types\//,
25
+ ];
26
+
27
+ export default [
28
+ {
29
+ input: 'src/index.ts',
30
+ output: [
31
+ {
32
+ file: pkg.main,
33
+ format: 'cjs',
34
+ sourcemap: false,
35
+ exports: 'named',
36
+ interop: 'auto',
37
+ },
38
+ {
39
+ file: pkg.module,
40
+ format: 'esm',
41
+ sourcemap: false,
42
+ },
43
+ ],
44
+ external,
45
+ plugins: [
46
+ alias({
47
+ entries: [
48
+ { find: '@coreApp/assets/icons', replacement: pathResolve(__dirname, 'src/assets/icons') },
49
+ ],
50
+ }),
51
+ svgr({ exportType: 'default', jsxRuntime: 'classic' }),
52
+ resolve({ extensions: ['.ts', '.tsx', '.js', '.jsx'] }),
53
+ commonjs(),
54
+ postcss({
55
+ extract: 'index.css',
56
+ minimize: true,
57
+ }),
58
+ typescript({
59
+ tsconfig: './tsconfig.build.json',
60
+ abortOnError: false,
61
+ tsconfigOverride: {
62
+ compilerOptions: {
63
+ declaration: false,
64
+ declarationMap: false,
65
+ noUnusedLocals: false,
66
+ noUnusedParameters: false,
67
+ skipLibCheck: true,
68
+ },
69
+ },
70
+ }),
71
+ ],
72
+ },
73
+ ];
@@ -0,0 +1,3 @@
1
+ import { unstable_ClassNameGenerator as ClassNameGenerator } from "@mui/material/className";
2
+
3
+ ClassNameGenerator.configure((componentName) => `yb-${componentName}`);
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <g fill="none" fill-rule="evenodd">
3
+ <polygon points="0 0 24 0 24 24 0 24"/>
4
+ <path fill="currentColor" d="M16.5,2 C16.776,2 17,2.224 17,2.5 L17,2.5 L17,5 L19.5,5 C20.878,5 22,6.121 22,7.5 L22,7.5 L22,19.5 C22,20.879 20.878,22 19.5,22 L19.5,22 L4.5,22 C3.122,22 2,20.879 2,19.5 L2,19.5 L2,7.5 C2,6.121 3.122,5 4.5,5 L4.5,5 L7,5 L7,2.5 C7,2.224 7.224,2 7.5,2 C7.776,2 8,2.224 8,2.5 L8,2.5 L8,5 L16,5 L16,2.5 C16,2.224 16.224,2 16.5,2 Z M21,10 L3,10 L3,19.5 C3,20.327 3.673,21 4.5,21 L4.5,21 L19.5,21 C20.327,21 21,20.327 21,19.5 L21,19.5 L21,10 Z M6.5,18 C6.776,18 7,18.224 7,18.5 C7,18.776 6.776,19 6.5,19 L6.5,19 L5.5,19 C5.224,19 5,18.776 5,18.5 C5,18.224 5.224,18 5.5,18 L5.5,18 Z M12.5,18 C12.776,18 13,18.224 13,18.5 C13,18.776 12.776,19 12.5,19 L12.5,19 L11.5,19 C11.224,19 11,18.776 11,18.5 C11,18.224 11.224,18 11.5,18 L11.5,18 Z M9.5,18 C9.776,18 10,18.224 10,18.5 C10,18.776 9.776,19 9.5,19 L9.5,19 L8.5,19 C8.224,19 8,18.776 8,18.5 C8,18.224 8.224,18 8.5,18 L8.5,18 Z M15.5,18 C15.776,18 16,18.224 16,18.5 C16,18.776 15.776,19 15.5,19 L15.5,19 L14.5,19 C14.224,19 14,18.776 14,18.5 C14,18.224 14.224,18 14.5,18 L14.5,18 Z M18.5,18 C18.776,18 19,18.224 19,18.5 C19,18.776 18.776,19 18.5,19 L18.5,19 L17.5,19 C17.224,19 17,18.776 17,18.5 C17,18.224 17.224,18 17.5,18 L17.5,18 Z M6.5,15 C6.776,15 7,15.224 7,15.5 C7,15.776 6.776,16 6.5,16 L6.5,16 L5.5,16 C5.224,16 5,15.776 5,15.5 C5,15.224 5.224,15 5.5,15 L5.5,15 Z M12.5,15 C12.776,15 13,15.224 13,15.5 C13,15.776 12.776,16 12.5,16 L12.5,16 L11.5,16 C11.224,16 11,15.776 11,15.5 C11,15.224 11.224,15 11.5,15 L11.5,15 Z M9.5,15 C9.776,15 10,15.224 10,15.5 C10,15.776 9.776,16 9.5,16 L9.5,16 L8.5,16 C8.224,16 8,15.776 8,15.5 C8,15.224 8.224,15 8.5,15 L8.5,15 Z M15.5,15 C15.776,15 16,15.224 16,15.5 C16,15.776 15.776,16 15.5,16 L15.5,16 L14.5,16 C14.224,16 14,15.776 14,15.5 C14,15.224 14.224,15 14.5,15 L14.5,15 Z M18.5,15 C18.776,15 19,15.224 19,15.5 C19,15.776 18.776,16 18.5,16 L18.5,16 L17.5,16 C17.224,16 17,15.776 17,15.5 C17,15.224 17.224,15 17.5,15 L17.5,15 Z M6.5,12 C6.776,12 7,12.224 7,12.5 C7,12.776 6.776,13 6.5,13 L6.5,13 L5.5,13 C5.224,13 5,12.776 5,12.5 C5,12.224 5.224,12 5.5,12 L5.5,12 Z M12.5,12 C12.776,12 13,12.224 13,12.5 C13,12.776 12.776,13 12.5,13 L12.5,13 L11.5,13 C11.224,13 11,12.776 11,12.5 C11,12.224 11.224,12 11.5,12 L11.5,12 Z M9.5,12 C9.776,12 10,12.224 10,12.5 C10,12.776 9.776,13 9.5,13 L9.5,13 L8.5,13 C8.224,13 8,12.776 8,12.5 C8,12.224 8.224,12 8.5,12 L8.5,12 Z M15.5,12 C15.776,12 16,12.224 16,12.5 C16,12.776 15.776,13 15.5,13 L15.5,13 L14.5,13 C14.224,13 14,12.776 14,12.5 C14,12.224 14.224,12 14.5,12 L14.5,12 Z M18.5,12 C18.776,12 19,12.224 19,12.5 C19,12.776 18.776,13 18.5,13 L18.5,13 L17.5,13 C17.224,13 17,12.776 17,12.5 C17,12.224 17.224,12 17.5,12 L17.5,12 Z M19.5,6 L4.5,6 C3.673,6 3,6.673 3,7.5 L3,7.5 L3,9 L21,9 L21,7.5 C21,6.673 20.327,6 19.5,6 L19.5,6 Z"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>06F96665-8B17-44ED-B0A9-64EC110C1B2D</title>
4
+ <defs>
5
+ <rect id="path-1" x="0" y="0" width="800" height="600" rx="8"></rect>
6
+ <filter x="-1.9%" y="-2.5%" width="103.8%" height="105.0%" filterUnits="objectBoundingBox" id="filter-3">
7
+ <feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
8
+ <feGaussianBlur stdDeviation="5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
9
+ <feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
10
+ </filter>
11
+ </defs>
12
+ <g id="Clusters---Connect" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
13
+ <g id="Layout/Modal-(Default)" transform="translate(-1088.000000, -84.000000)">
14
+ <g id="Group" fill="#0B1117" opacity="0.75">
15
+ <g id="Rectangle-2">
16
+ <rect id="Rectangle" x="0" y="0" width="1456" height="1024"></rect>
17
+ </g>
18
+ </g>
19
+ <g id="Modal" transform="translate(328.000000, 64.000000)">
20
+ <mask id="mask-2" fill="white">
21
+ <use xlink:href="#path-1"></use>
22
+ </mask>
23
+ <g id="Mask">
24
+ <use fill="black" fill-opacity="1" filter="url(#filter-3)" xlink:href="#path-1"></use>
25
+ <use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-1"></use>
26
+ </g>
27
+ <g id="Group" mask="url(#mask-2)">
28
+ <g id="Header/Modal">
29
+ <rect id="Fill" fill="#FFFFFF" x="0" y="0" width="800" height="64"></rect>
30
+ <circle id="Oval" fill="#F0F4F7" cx="772" cy="32" r="16"></circle>
31
+ <g id="Icon/X-(Large)" transform="translate(760.000000, 20.000000)">
32
+ <polygon id="Path" points="0 0 24 0 24 24 0 24"></polygon>
33
+ <path d="M12,4 C12.2454599,4 12.4496084,4.17687516 12.4919443,4.41012437 L12.5,4.5 L12.5,11.5 L19.5,11.5 C19.7761424,11.5 20,11.7238576 20,12 C20,12.2454599 19.8231248,12.4496084 19.5898756,12.4919443 L19.5,12.5 L12.5,12.5 L12.5,19.5 C12.5,19.7761424 12.2761424,20 12,20 C11.7545401,20 11.5503916,19.8231248 11.5080557,19.5898756 L11.5,19.5 L11.5,12.5 L4.5,12.5 C4.22385763,12.5 4,12.2761424 4,12 C4,11.7545401 4.17687516,11.5503916 4.41012437,11.5080557 L4.5,11.5 L11.5,11.5 L11.5,4.5 C11.5,4.22385763 11.7238576,4 12,4 Z" id="Combined-Shape" fill="#25323D" transform="translate(12.000000, 12.000000) rotate(45.000000) translate(-12.000000, -12.000000) "></path>
34
+ </g>
35
+ </g>
36
+ </g>
37
+ </g>
38
+ </g>
39
+ </g>
40
+ </svg>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display: block; shape-rendering: auto; background-position: initial initial; background-repeat: initial initial;" width="24px" height="24px" viewBox="30 30 40 40" preserveAspectRatio="xMidYMid">
3
+ <circle cx="65" cy="50" fill="#bfcded" r="3">
4
+ <animate attributeName="r" values="1.7999999999999998;1.7999999999999998;3;1.7999999999999998;1.7999999999999998" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" repeatCount="indefinite" begin="-1.8140589569160996s"></animate>
5
+ <animate attributeName="fill" values="#bfcded;#bfcded;#2b59c3;#bfcded;#bfcded" repeatCount="indefinite" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" begin="-1.8140589569160996s"></animate>
6
+ </circle><circle cx="61.490666646784675" cy="59.641814145298085" fill="#bfcded" r="3">
7
+ <animate attributeName="r" values="1.7999999999999998;1.7999999999999998;3;1.7999999999999998;1.7999999999999998" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" repeatCount="indefinite" begin="-1.5873015873015872s"></animate>
8
+ <animate attributeName="fill" values="#bfcded;#bfcded;#2b59c3;#bfcded;#bfcded" repeatCount="indefinite" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" begin="-1.5873015873015872s"></animate>
9
+ </circle><circle cx="52.604722665003955" cy="64.77211629518312" fill="#bfcded" r="3">
10
+ <animate attributeName="r" values="1.7999999999999998;1.7999999999999998;3;1.7999999999999998;1.7999999999999998" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" repeatCount="indefinite" begin="-1.3605442176870748s"></animate>
11
+ <animate attributeName="fill" values="#bfcded;#bfcded;#2b59c3;#bfcded;#bfcded" repeatCount="indefinite" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" begin="-1.3605442176870748s"></animate>
12
+ </circle><circle cx="42.5" cy="62.99038105676658" fill="#bfcded" r="3">
13
+ <animate attributeName="r" values="1.7999999999999998;1.7999999999999998;3;1.7999999999999998;1.7999999999999998" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" repeatCount="indefinite" begin="-1.1337868480725624s"></animate>
14
+ <animate attributeName="fill" values="#bfcded;#bfcded;#2b59c3;#bfcded;#bfcded" repeatCount="indefinite" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" begin="-1.1337868480725624s"></animate>
15
+ </circle><circle cx="35.90461068821138" cy="55.13030214988503" fill="#bfcded" r="3">
16
+ <animate attributeName="r" values="1.7999999999999998;1.7999999999999998;3;1.7999999999999998;1.7999999999999998" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" repeatCount="indefinite" begin="-0.9070294784580498s"></animate>
17
+ <animate attributeName="fill" values="#bfcded;#bfcded;#2b59c3;#bfcded;#bfcded" repeatCount="indefinite" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" begin="-0.9070294784580498s"></animate>
18
+ </circle><circle cx="35.90461068821138" cy="44.86969785011497" fill="#bfcded" r="3">
19
+ <animate attributeName="r" values="1.7999999999999998;1.7999999999999998;3;1.7999999999999998;1.7999999999999998" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" repeatCount="indefinite" begin="-0.6802721088435374s"></animate>
20
+ <animate attributeName="fill" values="#bfcded;#bfcded;#2b59c3;#bfcded;#bfcded" repeatCount="indefinite" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" begin="-0.6802721088435374s"></animate>
21
+ </circle><circle cx="42.49999999999999" cy="37.00961894323342" fill="#bfcded" r="3">
22
+ <animate attributeName="r" values="1.7999999999999998;1.7999999999999998;3;1.7999999999999998;1.7999999999999998" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" repeatCount="indefinite" begin="-0.4535147392290249s"></animate>
23
+ <animate attributeName="fill" values="#bfcded;#bfcded;#2b59c3;#bfcded;#bfcded" repeatCount="indefinite" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" begin="-0.4535147392290249s"></animate>
24
+ </circle><circle cx="52.60472266500395" cy="35.227883704816875" fill="#bfcded" r="3">
25
+ <animate attributeName="r" values="1.7999999999999998;1.7999999999999998;3;1.7999999999999998;1.7999999999999998" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" repeatCount="indefinite" begin="-0.22675736961451246s"></animate>
26
+ <animate attributeName="fill" values="#bfcded;#bfcded;#2b59c3;#bfcded;#bfcded" repeatCount="indefinite" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" begin="-0.22675736961451246s"></animate>
27
+ </circle><circle cx="61.49066664678467" cy="40.35818585470191" fill="#bfcded" r="3">
28
+ <animate attributeName="r" values="1.7999999999999998;1.7999999999999998;3;1.7999999999999998;1.7999999999999998" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" repeatCount="indefinite" begin="0s"></animate>
29
+ <animate attributeName="fill" values="#bfcded;#bfcded;#2b59c3;#bfcded;#bfcded" repeatCount="indefinite" times="0;0.1;0.2;0.3;1" dur="2.0408163265306123s" begin="0s"></animate>
30
+ </circle>
31
+ <!-- [ldio] generated by https://loading.io/ --></svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <g fill="none" fill-rule="evenodd">
3
+ <polygon points="0 0 24 0 24 24 0 24"/>
4
+ <path fill="currentColor" d="M11.9773851,3 C12.8989794,3 13.7528965,3.4640923 14.2506034,4.2241204 L14.3453098,4.38002201 L21.6208037,16.9368409 C22.1201905,17.7726026 22.126747,18.8106335 21.637957,19.6525423 C21.1797163,20.4418318 20.3528527,20.9437927 19.4445732,20.9956732 L19.2619169,21 L4.69285323,21 C3.7218804,20.9932899 2.82857829,20.471935 2.35085442,19.6330157 C1.90497881,18.8500244 1.88465733,17.9019791 2.28657006,17.1051583 L2.37915577,16.9368409 L9.60946032,4.38002201 C10.0883188,3.5280339 10.9943511,3 11.9773851,3 Z M11.9773851,4 C11.4069564,4 10.8784234,4.28032428 10.5581293,4.74714924 L10.4760642,4.87901863 L3.25534717,17.4188042 L3.17942197,17.5555087 C2.92693952,18.0560733 2.94137601,18.6491745 3.21983666,19.1381724 C3.49553946,19.6223274 3.9927852,19.9394898 4.54192782,19.9922419 L4.69285323,20 L19.2382353,20.0002804 L19.3875466,19.9973005 C19.9640801,19.9643692 20.4855596,19.6457935 20.7731412,19.150453 C21.0515768,18.670866 21.0734992,18.090574 20.8349368,17.5868253 L20.7555495,17.4381743 L13.4906485,4.89920791 L13.4140199,4.77195986 C13.0996128,4.29184157 12.5590245,4 11.9773851,4 Z M12,16 C12.5522847,16 13,16.4477153 13,17 C13,17.5522847 12.5522847,18 12,18 C11.4477153,18 11,17.5522847 11,17 C11,16.4477153 11.4477153,16 12,16 Z M12,8 C12.5522847,8 13,8.44771525 13,9 L13,9 L13,14 C13,14.5522847 12.5522847,15 12,15 C11.4477153,15 11,14.5522847 11,14 L11,14 L11,9 C11,8.44771525 11.4477153,8 12,8 Z"/>
5
+ </g>
6
+ </svg>