imbric-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (397) hide show
  1. package/.babelrc.json +3 -0
  2. package/.commitlintrc.json +3 -0
  3. package/.dockerignore +14 -0
  4. package/.editorconfig +13 -0
  5. package/.eslintignore +1 -0
  6. package/.eslintrc.json +36 -0
  7. package/.huskyrc.json +6 -0
  8. package/.lintstagedrc.json +5 -0
  9. package/.nvmrc +1 -0
  10. package/.prettierignore +1 -0
  11. package/.prettierrc.json +4 -0
  12. package/.releaserc.json +13 -0
  13. package/.storybook/main.js +13 -0
  14. package/.storybook/preview-head.html +2 -0
  15. package/.storybook/preview.js +53 -0
  16. package/.stylelintrc.json +14 -0
  17. package/.vscode/launch.json +15 -0
  18. package/.vscode/settings.json +3 -0
  19. package/CHANGELOG.md +0 -0
  20. package/Dockerfile +17 -0
  21. package/README.md +69 -0
  22. package/atoms/AlertModal/AlertModal.js +69 -0
  23. package/atoms/AlertModal/AlertModal.module.css +3 -0
  24. package/atoms/AlertModal/AlertModal.stories.js +30 -0
  25. package/atoms/AlertModal/constants.js +4 -0
  26. package/atoms/AlertModal/index.js +3 -0
  27. package/atoms/Avatar/Avatar.js +36 -0
  28. package/atoms/Avatar/Avatar.module.css +3 -0
  29. package/atoms/Avatar/Avatar.stories.js +29 -0
  30. package/atoms/Avatar/__snapshots__/Avatar.stories.js.snap +105 -0
  31. package/atoms/Avatar/constants.js +3 -0
  32. package/atoms/Avatar/helpers.js +7 -0
  33. package/atoms/Avatar/index.js +3 -0
  34. package/atoms/Button/Button.js +83 -0
  35. package/atoms/Button/Button.module.css +85 -0
  36. package/atoms/Button/Button.stories.js +47 -0
  37. package/atoms/Button/Button.test.js +60 -0
  38. package/atoms/Button/__snapshots__/Button.stories.js.snap +191 -0
  39. package/atoms/Button/constants.js +3 -0
  40. package/atoms/Button/index.js +3 -0
  41. package/atoms/Card/Card.js +48 -0
  42. package/atoms/Card/Card.module.css +52 -0
  43. package/atoms/Card/Card.stories.js +41 -0
  44. package/atoms/Card/__snapshots__/Card.stories.js.snap +136 -0
  45. package/atoms/Card/constants.js +4 -0
  46. package/atoms/Card/index.js +3 -0
  47. package/atoms/Check/Check.js +28 -0
  48. package/atoms/Check/Check.module.css +11 -0
  49. package/atoms/Check/Check.stories.js +15 -0
  50. package/atoms/Check/__snapshots__/Check.stories.js.snap +67 -0
  51. package/atoms/Check/index.js +2 -0
  52. package/atoms/Checkbox/Checkbox.js +77 -0
  53. package/atoms/Checkbox/Checkbox.module.css +60 -0
  54. package/atoms/Checkbox/Checkbox.stories.js +30 -0
  55. package/atoms/Checkbox/constants.js +1 -0
  56. package/atoms/Checkbox/index.js +3 -0
  57. package/atoms/Divider/Divider.js +22 -0
  58. package/atoms/Divider/Divider.module.css +25 -0
  59. package/atoms/Divider/Divider.stories.js +23 -0
  60. package/atoms/Divider/__snapshots__/Divider.stories.js.snap +22 -0
  61. package/atoms/Divider/constants.js +3 -0
  62. package/atoms/Divider/index.js +3 -0
  63. package/atoms/Heading/Heading.js +37 -0
  64. package/atoms/Heading/Heading.module.css +70 -0
  65. package/atoms/Heading/Heading.stories.js +46 -0
  66. package/atoms/Heading/__snapshots__/Heading.stories.js.snap +189 -0
  67. package/atoms/Heading/constants.js +5 -0
  68. package/atoms/Heading/index.js +3 -0
  69. package/atoms/Icon/Icon.js +66 -0
  70. package/atoms/Icon/Icon.module.css +142 -0
  71. package/atoms/Icon/Icon.stories.js +48 -0
  72. package/atoms/Icon/__snapshots__/Icon.stories.js.snap +1311 -0
  73. package/atoms/Icon/constants.js +1091 -0
  74. package/atoms/Icon/helpers.js +9 -0
  75. package/atoms/Icon/index.js +3 -0
  76. package/atoms/Input/Input.js +229 -0
  77. package/atoms/Input/Input.module.css +83 -0
  78. package/atoms/Input/Input.stories.js +38 -0
  79. package/atoms/Input/__snapshots__/Input.stories.js.snap +101 -0
  80. package/atoms/Input/constants.js +3 -0
  81. package/atoms/Input/index.js +3 -0
  82. package/atoms/Label/Label.js +31 -0
  83. package/atoms/Label/Label.module.css +42 -0
  84. package/atoms/Label/Label.stories.js +26 -0
  85. package/atoms/Label/constants.js +1 -0
  86. package/atoms/Label/index.js +3 -0
  87. package/atoms/LinkItem/LinkItem.js +38 -0
  88. package/atoms/LinkItem/LinkItem.module.css +19 -0
  89. package/atoms/LinkItem/LinkItem.stories.js +30 -0
  90. package/atoms/LinkItem/__snapshots__/Link.stories.js.snap +118 -0
  91. package/atoms/LinkItem/constants.js +5 -0
  92. package/atoms/LinkItem/index.js +3 -0
  93. package/atoms/Loading/Loading.js +30 -0
  94. package/atoms/Loading/Loading.module.css +51 -0
  95. package/atoms/Loading/Loading.stories.js +17 -0
  96. package/atoms/Loading/__snapshots__/Loading.stories.js.snap +26 -0
  97. package/atoms/Loading/index.js +2 -0
  98. package/atoms/Modal/Modal.js +121 -0
  99. package/atoms/Modal/Modal.module.css +142 -0
  100. package/atoms/Modal/Modal.stories.js +43 -0
  101. package/atoms/Modal/__snapshots__/Modal.stories.js.snap +239 -0
  102. package/atoms/Modal/constants.js +1 -0
  103. package/atoms/Modal/index.js +3 -0
  104. package/atoms/Paragraph/Paragraph.js +56 -0
  105. package/atoms/Paragraph/Paragraph.module.css +72 -0
  106. package/atoms/Paragraph/Paragraph.stories.js +52 -0
  107. package/atoms/Paragraph/__snapshots__/Paragraph.stories.js.snap +230 -0
  108. package/atoms/Paragraph/constants.js +5 -0
  109. package/atoms/Paragraph/index.js +3 -0
  110. package/atoms/Picture/Picture.js +47 -0
  111. package/atoms/Picture/Picture.module.css +16 -0
  112. package/atoms/Picture/Picture.stories.js +32 -0
  113. package/atoms/Picture/__snapshots__/Picture.stories.js.snap +156 -0
  114. package/atoms/Picture/index.js +2 -0
  115. package/atoms/Tab/Tab.js +41 -0
  116. package/atoms/Tab/Tab.module.css +17 -0
  117. package/atoms/Tab/Tab.stories.js +27 -0
  118. package/atoms/Tab/constants.js +1 -0
  119. package/atoms/Tab/index.js +3 -0
  120. package/atoms/Textarea/Textarea.js +137 -0
  121. package/atoms/Textarea/Textarea.module.css +54 -0
  122. package/atoms/Textarea/Textarea.stories.js +16 -0
  123. package/atoms/Textarea/__snapshots__/Textarea.stories.js.snap +25 -0
  124. package/atoms/Textarea/index.js +2 -0
  125. package/atoms/Toggle/Toggle.js +56 -0
  126. package/atoms/Toggle/Toggle.module.css +41 -0
  127. package/atoms/Toggle/Toggle.stories.js +21 -0
  128. package/atoms/Toggle/constants.js +1 -0
  129. package/atoms/Toggle/index.js +3 -0
  130. package/codecov.yml +2 -0
  131. package/helpers/storybook.js +29 -0
  132. package/helpers/storybook.test.js +40 -0
  133. package/helpers/styles.js +37 -0
  134. package/helpers/styles.test.js +222 -0
  135. package/hocs/withStyles.js +17 -0
  136. package/hook/useAddColumn.js +40 -0
  137. package/hook/useMedia.js +22 -0
  138. package/hook/useStateDate.js +25 -0
  139. package/hook/useTable.js +54 -0
  140. package/index.js +71 -0
  141. package/jest.config.js +23 -0
  142. package/jest.setup.js +13 -0
  143. package/layout/CenteredContent/CenteredContent.js +30 -0
  144. package/layout/CenteredContent/CenteredContent.module.css +12 -0
  145. package/layout/CenteredContent/CenteredContent.stories.js +22 -0
  146. package/layout/CenteredContent/__snapshots__/CenteredContent.stories.js.snap +27 -0
  147. package/layout/CenteredContent/index.js +2 -0
  148. package/layout/Container/Container.js +29 -0
  149. package/layout/Container/Container.module.css +14 -0
  150. package/layout/Container/Container.stories.js +22 -0
  151. package/layout/Container/__snapshots__/Container.stories.js.snap +27 -0
  152. package/layout/Container/index.js +2 -0
  153. package/layout/DynamicTable/DynamicTable.js +372 -0
  154. package/layout/DynamicTable/DynamicTable.module.css +76 -0
  155. package/layout/DynamicTable/DynamicTable.stories.js +79 -0
  156. package/layout/DynamicTable/constants.js +323 -0
  157. package/layout/DynamicTable/index.js +3 -0
  158. package/layout/FlexColumnContent/FlexColumnContent.js +26 -0
  159. package/layout/FlexColumnContent/FlexColumnContent.module.css +5 -0
  160. package/layout/FlexColumnContent/FlexColumnContent.stories.js +28 -0
  161. package/layout/FlexColumnContent/constants.js +1 -0
  162. package/layout/FlexColumnContent/index.js +3 -0
  163. package/layout/FullHeightContent/FullHeightContent.js +40 -0
  164. package/layout/FullHeightContent/FullHeightContent.module.css +21 -0
  165. package/layout/FullHeightContent/FullHeightContent.stories.js +22 -0
  166. package/layout/FullHeightContent/__snapshots__/FullHeightContent.stories.js.snap +41 -0
  167. package/layout/FullHeightContent/index.js +2 -0
  168. package/layout/Navbar/Navbar.js +247 -0
  169. package/layout/Navbar/Navbar.module.css +35 -0
  170. package/layout/Navbar/Navbar.stories.js +20 -0
  171. package/layout/Navbar/constants.js +35 -0
  172. package/layout/Navbar/index.js +2 -0
  173. package/layout/Sidebar/Sidebar.js +115 -0
  174. package/layout/Sidebar/Sidebar.module.css +387 -0
  175. package/layout/Sidebar/Sidebar.stories.js +28 -0
  176. package/layout/Sidebar/constants.js +228 -0
  177. package/layout/Sidebar/index.js +3 -0
  178. package/layout/Spacer/Spacer.js +40 -0
  179. package/layout/Spacer/Spacer.module.css +12 -0
  180. package/layout/Spacer/Spacer.stories.js +25 -0
  181. package/layout/Spacer/__snapshots__/Spacer.stories.js.snap +97 -0
  182. package/layout/Spacer/components/Horizontal/Horizontal.js +43 -0
  183. package/layout/Spacer/components/Horizontal/Horizontal.stories.js +32 -0
  184. package/layout/Spacer/components/Horizontal/__snapshots__/Horizontal.stories.js.snap +97 -0
  185. package/layout/Spacer/components/Horizontal/index.js +1 -0
  186. package/layout/Spacer/components/Vertical/Vertical.js +31 -0
  187. package/layout/Spacer/components/Vertical/Vertical.stories.js +25 -0
  188. package/layout/Spacer/components/Vertical/__snapshots__/Vertical.stories.js.snap +85 -0
  189. package/layout/Spacer/components/Vertical/index.js +1 -0
  190. package/layout/Spacer/components/index.js +2 -0
  191. package/layout/Spacer/constants.js +5 -0
  192. package/layout/Spacer/helpers.js +3 -0
  193. package/layout/Spacer/index.js +3 -0
  194. package/molecules/Accordion/Accordion.js +70 -0
  195. package/molecules/Accordion/Accordion.module.css +12 -0
  196. package/molecules/Accordion/Accordion.stories.js +31 -0
  197. package/molecules/Accordion/__snapshots__/Accordion.stories.js.snap +228 -0
  198. package/molecules/Accordion/index.js +2 -0
  199. package/molecules/AddButton/AddButton.js +137 -0
  200. package/molecules/AddButton/AddButton.module.css +128 -0
  201. package/molecules/AddButton/AddButton.stories.js +47 -0
  202. package/molecules/AddButton/__snapshots__/AddButton.stories.js.snap +326 -0
  203. package/molecules/AddButton/constants.js +6 -0
  204. package/molecules/AddButton/handlers.js +58 -0
  205. package/molecules/AddButton/handlers.test.js +19 -0
  206. package/molecules/AddButton/helpers.js +6 -0
  207. package/molecules/AddButton/helpers.test.js +41 -0
  208. package/molecules/AddButton/hooks.js +14 -0
  209. package/molecules/AddButton/index.js +3 -0
  210. package/molecules/ButtonIcon/ButtonIcon.js +41 -0
  211. package/molecules/ButtonIcon/ButtonIcon.stories.js +27 -0
  212. package/molecules/ButtonIcon/__snapshots__/ButtonIcon.stories.js.snap +178 -0
  213. package/molecules/ButtonIcon/constants.js +6 -0
  214. package/molecules/ButtonIcon/index.js +2 -0
  215. package/molecules/CardDefault/CardDefault.js +65 -0
  216. package/molecules/CardDefault/CardDefault.module.css +19 -0
  217. package/molecules/CardDefault/CardDefault.stories.js +23 -0
  218. package/molecules/CardDefault/constants.js +1 -0
  219. package/molecules/CardDefault/index.js +3 -0
  220. package/molecules/CardProductTypesBooking/CardProductTypesBooking.js +89 -0
  221. package/molecules/CardProductTypesBooking/CardProductTypesBooking.module.css +118 -0
  222. package/molecules/CardProductTypesBooking/CardProductTypesBooking.stories.js +25 -0
  223. package/molecules/CardProductTypesBooking/constants.js +1 -0
  224. package/molecules/CardProductTypesBooking/index.js +3 -0
  225. package/molecules/CardServiceDetail/CardServiceDetail.js +400 -0
  226. package/molecules/CardServiceDetail/CardServiceDetail.module.css +222 -0
  227. package/molecules/CardServiceDetail/CardServiceDetail.stories.js +23 -0
  228. package/molecules/CardServiceDetail/constants.js +1 -0
  229. package/molecules/CardServiceDetail/index.js +3 -0
  230. package/molecules/CardServices/CardServices.js +461 -0
  231. package/molecules/CardServices/CardServices.module.css +213 -0
  232. package/molecules/CardServices/CardServices.stories.js +41 -0
  233. package/molecules/CardServices/constants.js +5 -0
  234. package/molecules/CardServices/index.js +3 -0
  235. package/molecules/CardServicesFinalized/CardServicesFinalized.js +381 -0
  236. package/molecules/CardServicesFinalized/CardServicesFinalized.module.css +213 -0
  237. package/molecules/CardServicesFinalized/CardServicesFinalized.stories.js +23 -0
  238. package/molecules/CardServicesFinalized/constants.js +1 -0
  239. package/molecules/CardServicesFinalized/index.js +3 -0
  240. package/molecules/CheckList/CheckList.js +135 -0
  241. package/molecules/CheckList/CheckList.module.css +94 -0
  242. package/molecules/CheckList/CheckList.stories.js +25 -0
  243. package/molecules/CheckList/constants.js +23 -0
  244. package/molecules/CheckList/index.js +3 -0
  245. package/molecules/ColumnTable/ColumnTable.js +154 -0
  246. package/molecules/ColumnTable/ColumnTable.module.css +51 -0
  247. package/molecules/ColumnTable/ColumnTable.stories.js +26 -0
  248. package/molecules/ColumnTable/constants.js +117 -0
  249. package/molecules/ColumnTable/index.js +3 -0
  250. package/molecules/DatePicker/DatePicker.js +242 -0
  251. package/molecules/DatePicker/DatePicker.module.css +38 -0
  252. package/molecules/DatePicker/DatePicker.stories.js +23 -0
  253. package/molecules/DatePicker/constants.js +3 -0
  254. package/molecules/DatePicker/index.js +3 -0
  255. package/molecules/DatePickerTime/DatePickerTime.js +133 -0
  256. package/molecules/DatePickerTime/DatePickerTime.module.css +3 -0
  257. package/molecules/DatePickerTime/DatePickerTime.stories.js +18 -0
  258. package/molecules/DatePickerTime/constants.js +1 -0
  259. package/molecules/DatePickerTime/index.js +3 -0
  260. package/molecules/Dropdown/Dropdown.js +62 -0
  261. package/molecules/Dropdown/Dropdown.module.css +52 -0
  262. package/molecules/Dropdown/Dropdown.stories.js +41 -0
  263. package/molecules/Dropdown/__snapshots__/Dropdown.stories.js.snap +181 -0
  264. package/molecules/Dropdown/index.js +2 -0
  265. package/molecules/DynamicSelect/DynamicSelect.js +186 -0
  266. package/molecules/DynamicSelect/DynamicSelect.module.css +10 -0
  267. package/molecules/DynamicSelect/DynamicSelect.stories.js +32 -0
  268. package/molecules/DynamicSelect/constants.js +7 -0
  269. package/molecules/DynamicSelect/index.js +3 -0
  270. package/molecules/Error/Error.js +35 -0
  271. package/molecules/Error/Error.module.css +12 -0
  272. package/molecules/Error/Error.stories.js +18 -0
  273. package/molecules/Error/__snapshots__/Error.stories.js.snap +134 -0
  274. package/molecules/Error/index.js +2 -0
  275. package/molecules/FooterTable/FooterTable.js +166 -0
  276. package/molecules/FooterTable/FooterTable.module.css +63 -0
  277. package/molecules/FooterTable/FooterTable.stories.js +23 -0
  278. package/molecules/FooterTable/constants.js +9 -0
  279. package/molecules/FooterTable/index.js +3 -0
  280. package/molecules/IconLabel/IconLabel.js +83 -0
  281. package/molecules/IconLabel/IconLabel.module.css +16 -0
  282. package/molecules/IconLabel/IconLabel.stories.js +25 -0
  283. package/molecules/IconLabel/__snapshots__/IconLabel.stories.js.snap +211 -0
  284. package/molecules/IconLabel/constants.js +6 -0
  285. package/molecules/IconLabel/index.js +3 -0
  286. package/molecules/InputAutocomplete/InputAutocomplete.js +221 -0
  287. package/molecules/InputAutocomplete/InputAutocomplete.module.css +55 -0
  288. package/molecules/InputAutocomplete/InputAutocomplete.stories.js +23 -0
  289. package/molecules/InputAutocomplete/constants.js +1 -0
  290. package/molecules/InputAutocomplete/index.js +3 -0
  291. package/molecules/ItemMenu/ItemMenu.js +134 -0
  292. package/molecules/ItemMenu/ItemMenu.module.css +363 -0
  293. package/molecules/ItemMenu/ItemMenu.stories.js +42 -0
  294. package/molecules/ItemMenu/constants.js +36 -0
  295. package/molecules/ItemMenu/index.js +3 -0
  296. package/molecules/LoadingError/LoadingError.js +31 -0
  297. package/molecules/LoadingError/LoadingError.stories.js +24 -0
  298. package/molecules/LoadingError/__snapshots__/LoadingError.stories.js.snap +109 -0
  299. package/molecules/LoadingError/index.js +1 -0
  300. package/molecules/RowTable/RowTable.js +928 -0
  301. package/molecules/RowTable/RowTable.module.css +63 -0
  302. package/molecules/RowTable/RowTable.stories.js +26 -0
  303. package/molecules/RowTable/constants.js +798 -0
  304. package/molecules/RowTable/index.js +3 -0
  305. package/molecules/Score/Score.js +61 -0
  306. package/molecules/Score/Score.module.css +11 -0
  307. package/molecules/Score/Score.stories.js +13 -0
  308. package/molecules/Score/__snapshots__/Score.stories.js.snap +100 -0
  309. package/molecules/Score/faces/happy.svg +7 -0
  310. package/molecules/Score/faces/normal.svg +6 -0
  311. package/molecules/Score/faces/sad.svg +6 -0
  312. package/molecules/Score/index.js +2 -0
  313. package/molecules/Tabs/Tabs.js +59 -0
  314. package/molecules/Tabs/Tabs.module.css +13 -0
  315. package/molecules/Tabs/Tabs.stories.js +34 -0
  316. package/molecules/Tabs/constants.js +34 -0
  317. package/molecules/Tabs/index.js +3 -0
  318. package/molecules/Task/Task.js +114 -0
  319. package/molecules/Task/Task.module.css +47 -0
  320. package/molecules/Task/Task.stories.js +47 -0
  321. package/molecules/Task/__snapshots__/Task.stories.js.snap +953 -0
  322. package/molecules/Task/constants.js +1 -0
  323. package/molecules/Task/index.js +3 -0
  324. package/molecules/TaskCounter/TaskCounter.js +74 -0
  325. package/molecules/TaskCounter/TaskCounter.module.css +11 -0
  326. package/molecules/TaskCounter/TaskCounter.stories.js +26 -0
  327. package/molecules/TaskCounter/__snapshots__/TaskCounter.stories.js.snap +177 -0
  328. package/molecules/TaskCounter/index.js +2 -0
  329. package/package.json +119 -0
  330. package/pages/Login/Login.js +102 -0
  331. package/pages/Login/Login.module.css +5 -0
  332. package/pages/Login/Login.stories.js +23 -0
  333. package/pages/Login/constants.js +1 -0
  334. package/pages/Login/index.js +3 -0
  335. package/pages/Login/validation/loginSchema.js +5 -0
  336. package/public/favicon.ico +0 -0
  337. package/public/static/google-maps.png +0 -0
  338. package/public/static/images/folders-folder.svg +26 -0
  339. package/public/static/images/permissions.svg +14 -0
  340. package/public/static/images/reports-results.svg +18 -0
  341. package/public/static/logo.svg +19 -0
  342. package/public/static/logologin.png +0 -0
  343. package/public/static/logologin.svg +16 -0
  344. package/public/static/logologintagos.svg +19 -0
  345. package/public/static/logotipo.svg +50 -0
  346. package/public/static/logotipoS.svg +26 -0
  347. package/public/static/taxisvalencia_logod.png +0 -0
  348. package/scripts/build-tokens.js +40 -0
  349. package/scripts/create-component.js +128 -0
  350. package/storybook.test.js +13 -0
  351. package/styles/GrupoMutua.css +391 -0
  352. package/styles/default.css +391 -0
  353. package/styles/globals.css +1524 -0
  354. package/styles/radiotaxiaragon.css +391 -0
  355. package/styles/spartan.css +391 -0
  356. package/styles/tagos.css +391 -0
  357. package/styles/taxisvalencia.css +391 -0
  358. package/styles/tokens.css +391 -0
  359. package/templates/component/Component.js +22 -0
  360. package/templates/component/Component.module.css +3 -0
  361. package/templates/component/Component.stories.js +23 -0
  362. package/templates/component/constants.js +1 -0
  363. package/templates/component/index.js +3 -0
  364. package/tokens/Token/Helper.js +30 -0
  365. package/tokens/Token/Token.js +13 -0
  366. package/tokens/Token/Token.module.css +64 -0
  367. package/tokens/Token/components/Color.js +21 -0
  368. package/tokens/Token/components/Color.stories.js +126 -0
  369. package/tokens/Token/components/FontFamily.js +24 -0
  370. package/tokens/Token/components/FontFamily.stories.js +32 -0
  371. package/tokens/Token/components/FontSize.js +24 -0
  372. package/tokens/Token/components/FontSize.stories.js +31 -0
  373. package/tokens/Token/components/FontWeight.js +24 -0
  374. package/tokens/Token/components/FontWeight.stories.js +31 -0
  375. package/tokens/Token/components/Spacing.js +24 -0
  376. package/tokens/Token/components/Spacing.stories.js +29 -0
  377. package/tokens/Token/components/__snapshots__/Color.stories.js.snap +7169 -0
  378. package/tokens/Token/components/__snapshots__/FontFamily.stories.js.snap +133 -0
  379. package/tokens/Token/components/__snapshots__/FontSize.stories.js.snap +261 -0
  380. package/tokens/Token/components/__snapshots__/FontWeight.stories.js.snap +317 -0
  381. package/tokens/Token/components/__snapshots__/Spacing.stories.js.snap +229 -0
  382. package/tokens/Token/components/index.js +5 -0
  383. package/tokens/Token/helpers.js +17 -0
  384. package/tokens/Token/index.js +1 -0
  385. package/tokens/index.js +472 -0
  386. package/utils/isEmpty.js +28 -0
  387. package/utils/isEmpty.test.js +125 -0
  388. package/utils/isObject.js +4 -0
  389. package/utils/keyboardCodes.js +6 -0
  390. package/utils/testUtils/matchMediaMock.js +14 -0
  391. package/utils/testUtils/svgrMock.js +2 -0
  392. package/utils/toCapitalize.js +4 -0
  393. package/utils/toKebabCase.js +8 -0
  394. package/utils/toPascalCase.js +20 -0
  395. package/webpack/cssModules.js +30 -0
  396. package/webpack/loadConfigs.js +6 -0
  397. package/webpack/reactInlineSvg.js +22 -0
@@ -0,0 +1 @@
1
+ export const options = { types: ['active', 'standby'] }
@@ -0,0 +1,3 @@
1
+ export { default, Task } from './Task'
2
+ export { options } from './constants'
3
+ export { default as styles } from './Task.module.css'
@@ -0,0 +1,74 @@
1
+ import React from 'react'
2
+ import PropTypes from 'prop-types'
3
+
4
+ import Paragraph from '../../atoms/Paragraph'
5
+ import Divider from '../../atoms/Divider'
6
+ import Spacer from '../../layout/Spacer'
7
+ import Accordion from '../Accordion'
8
+
9
+ import styles from './TaskCounter.module.css'
10
+ import withStyles from '../../hocs/withStyles'
11
+
12
+ export const TaskCounter = ({
13
+ title,
14
+ children,
15
+ current,
16
+ total,
17
+ isToggleable,
18
+ onToggle,
19
+ getStyles,
20
+ defaultIsCollapsed,
21
+ }) => {
22
+ if (isToggleable) {
23
+ return (
24
+ <Accordion
25
+ title={title}
26
+ addons={{
27
+ append: (
28
+ <Paragraph weight="medium" isInline>
29
+ {total ? `${current}/${total}` : current}
30
+ </Paragraph>
31
+ ),
32
+ }}
33
+ onToggle={onToggle}
34
+ defaultIsCollapsed={defaultIsCollapsed}
35
+ >
36
+ {children}
37
+ </Accordion>
38
+ )
39
+ }
40
+
41
+ return (
42
+ <div className={getStyles('task-counter')}>
43
+ <div className={getStyles('container')}>
44
+ <Paragraph weight="medium">{title}</Paragraph>
45
+ <Paragraph weight="medium" isInline>
46
+ {total ? `${current}/${total}` : current}
47
+ </Paragraph>
48
+ </div>
49
+ <Spacer.Vertical size="xs" />
50
+ <Divider />
51
+ {children}
52
+ </div>
53
+ )
54
+ }
55
+
56
+ TaskCounter.propTypes = {
57
+ title: PropTypes.string.isRequired,
58
+ getStyles: PropTypes.func.isRequired,
59
+ current: PropTypes.number.isRequired,
60
+ children: PropTypes.node,
61
+ onToggle: PropTypes.func,
62
+ isToggleable: PropTypes.bool,
63
+ total: PropTypes.number,
64
+ defaultIsCollapsed: PropTypes.bool,
65
+ }
66
+
67
+ TaskCounter.defaultProps = {
68
+ getStyles: () => {},
69
+ onToggle: () => {},
70
+ current: 0,
71
+ defaultIsCollapsed: true,
72
+ }
73
+
74
+ export default withStyles(styles)(TaskCounter)
@@ -0,0 +1,11 @@
1
+ .task-counter {
2
+ width: 100%;
3
+ }
4
+
5
+ .container {
6
+ display: flex;
7
+ align-items: center;
8
+ justify-content: space-between;
9
+ line-height: 1;
10
+ text-transform: uppercase;
11
+ }
@@ -0,0 +1,26 @@
1
+ import { TaskCounter, styles } from '.'
2
+
3
+ import { getTemplate } from '../../helpers/storybook'
4
+
5
+ const Template = getTemplate(TaskCounter, styles)
6
+
7
+ export default {
8
+ title: 'Molecules/TaskCounter',
9
+ component: TaskCounter,
10
+ args: {
11
+ title: 'Em Sméagol body.',
12
+ current: 2,
13
+ children:
14
+ "Fells defeated veins this. There and Back Again. A Hobbit's Tale. Loved lucky Istari difficult lay? Dale fellow's rioting. Blanket Misty Mountain started rival wriggles flatten convinced succumbed closing? Slug town fond pipe-weed flatten recognizes Goblins! Innards pouf admirable freely nothingness sleepless exactly afternoon cruelty Bofur? Craftsmen tested fair Alfrid gets figure words winter's field offer healed squash? These galumphing Grima tread mustn't seen melt ideal picked recover employment. Nazgûl alas luckiest?",
15
+ },
16
+ }
17
+
18
+ export const Default = Template.bind({})
19
+ export const Total = Template.bind({})
20
+ Total.args = { total: 10 }
21
+
22
+ export const Toggleable = Template.bind({})
23
+ Toggleable.args = {
24
+ isToggleable: true,
25
+ total: 10,
26
+ }
@@ -0,0 +1,177 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`Storyshots Molecules/TaskCounter Default 1`] = `
4
+ <div
5
+ style={
6
+ Object {
7
+ "alignContent": "flex-start",
8
+ "display": "flex",
9
+ "flexDirection": "column",
10
+ "flexWrap": "wrap",
11
+ "gap": "10px 30px",
12
+ "height": "100%",
13
+ "justifyContent": "flex-start",
14
+ "maxHeight": "auto",
15
+ }
16
+ }
17
+ >
18
+ <div
19
+ className="task-counter"
20
+ >
21
+ <div
22
+ className="container"
23
+ >
24
+ <p
25
+ className="paragraph color-base size-md weight-medium"
26
+ >
27
+ Em Sméagol body.
28
+ </p>
29
+ <p
30
+ className="paragraph color-base size-md weight-medium is-inline"
31
+ >
32
+ 2
33
+ </p>
34
+ </div>
35
+ <div
36
+ className="spacer vertical"
37
+ style={
38
+ Object {
39
+ "height": 5,
40
+ }
41
+ }
42
+ />
43
+ <div
44
+ className="divider"
45
+ />
46
+ Fells defeated veins this. There and Back Again. A Hobbit's Tale. Loved lucky Istari difficult lay? Dale fellow's rioting. Blanket Misty Mountain started rival wriggles flatten convinced succumbed closing? Slug town fond pipe-weed flatten recognizes Goblins! Innards pouf admirable freely nothingness sleepless exactly afternoon cruelty Bofur? Craftsmen tested fair Alfrid gets figure words winter's field offer healed squash? These galumphing Grima tread mustn't seen melt ideal picked recover employment. Nazgûl alas luckiest?
47
+ </div>
48
+ </div>
49
+ `;
50
+
51
+ exports[`Storyshots Molecules/TaskCounter Toggleable 1`] = `
52
+ <div
53
+ style={
54
+ Object {
55
+ "alignContent": "flex-start",
56
+ "display": "flex",
57
+ "flexDirection": "column",
58
+ "flexWrap": "wrap",
59
+ "gap": "10px 30px",
60
+ "height": "100%",
61
+ "justifyContent": "flex-start",
62
+ "maxHeight": "auto",
63
+ }
64
+ }
65
+ >
66
+ <div
67
+ className="accordion"
68
+ >
69
+ <div
70
+ className="container"
71
+ onClick={[Function]}
72
+ >
73
+ <div
74
+ className="icon color-inverted size-sm background-muted"
75
+ style={
76
+ Object {
77
+ "height": 25,
78
+ "width": 25,
79
+ }
80
+ }
81
+ >
82
+ <svg
83
+ height={25}
84
+ viewBox="0 0 15 9"
85
+ width={25}
86
+ xmlns="http://www.w3.org/2000/svg"
87
+ >
88
+ <path
89
+ clipRule="evenodd"
90
+ d="M7.82633 8.70623L0.882568 1.54063L1.89405 0.496826L7.82633 6.61863L13.7586 0.496826L14.7701 1.54063L7.82633 8.70623Z"
91
+ fillRule="evenodd"
92
+ />
93
+ </svg>
94
+ </div>
95
+ <div
96
+ className="spacer horizontal"
97
+ style={
98
+ Object {
99
+ "height": "100%",
100
+ "maxHeight": "auto",
101
+ "width": 15,
102
+ }
103
+ }
104
+ />
105
+ <p
106
+ className="paragraph color-base size-md weight-medium"
107
+ >
108
+ Em Sméagol body.
109
+ </p>
110
+ <p
111
+ className="paragraph color-base size-md weight-medium is-inline"
112
+ >
113
+ 2/10
114
+ </p>
115
+ </div>
116
+ <div
117
+ className="spacer vertical"
118
+ style={
119
+ Object {
120
+ "height": 5,
121
+ }
122
+ }
123
+ />
124
+ <div
125
+ className="divider"
126
+ />
127
+ </div>
128
+ </div>
129
+ `;
130
+
131
+ exports[`Storyshots Molecules/TaskCounter Total 1`] = `
132
+ <div
133
+ style={
134
+ Object {
135
+ "alignContent": "flex-start",
136
+ "display": "flex",
137
+ "flexDirection": "column",
138
+ "flexWrap": "wrap",
139
+ "gap": "10px 30px",
140
+ "height": "100%",
141
+ "justifyContent": "flex-start",
142
+ "maxHeight": "auto",
143
+ }
144
+ }
145
+ >
146
+ <div
147
+ className="task-counter"
148
+ >
149
+ <div
150
+ className="container"
151
+ >
152
+ <p
153
+ className="paragraph color-base size-md weight-medium"
154
+ >
155
+ Em Sméagol body.
156
+ </p>
157
+ <p
158
+ className="paragraph color-base size-md weight-medium is-inline"
159
+ >
160
+ 2/10
161
+ </p>
162
+ </div>
163
+ <div
164
+ className="spacer vertical"
165
+ style={
166
+ Object {
167
+ "height": 5,
168
+ }
169
+ }
170
+ />
171
+ <div
172
+ className="divider"
173
+ />
174
+ Fells defeated veins this. There and Back Again. A Hobbit's Tale. Loved lucky Istari difficult lay? Dale fellow's rioting. Blanket Misty Mountain started rival wriggles flatten convinced succumbed closing? Slug town fond pipe-weed flatten recognizes Goblins! Innards pouf admirable freely nothingness sleepless exactly afternoon cruelty Bofur? Craftsmen tested fair Alfrid gets figure words winter's field offer healed squash? These galumphing Grima tread mustn't seen melt ideal picked recover employment. Nazgûl alas luckiest?
175
+ </div>
176
+ </div>
177
+ `;
@@ -0,0 +1,2 @@
1
+ export { default, TaskCounter } from './TaskCounter'
2
+ export { default as styles } from './TaskCounter.module.css'
package/package.json ADDED
@@ -0,0 +1,119 @@
1
+ {
2
+ "name": "imbric-theme",
3
+ "version": "0.1.0",
4
+ "description": "Components library IMBRIC",
5
+ "private": false,
6
+ "main": "index.js",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://bitbucket.org/jorgemuriel/imbric-storybook/src/master/"
10
+ },
11
+ "engines": {
12
+ "node": ">=16.13.2",
13
+ "yarn": ">=1.22.17"
14
+ },
15
+ "scripts": {
16
+ "build:storybook": "build-storybook",
17
+ "build:tokens": "node ./scripts/build-tokens",
18
+ "build": "run-s build:tokens build:storybook",
19
+ "build:docs": "yarn build:tokens && yarn build:storybook --docs --no-manager-cache",
20
+ "cc": "node ./scripts/create-component",
21
+ "commit": "cz",
22
+ "deploy:prod": "run-s build:docs deploy:vercel:prod",
23
+ "deploy:stag": "run-s build deploy:vercel:stag",
24
+ "deploy:vercel:prod": "vercel --prod",
25
+ "deploy:vercel:stag": "vercel",
26
+ "dev:storybook": "start-storybook -p 6006",
27
+ "dev:tokens": "watch 'yarn build:tokens' ./tokens",
28
+ "dev": "concurrently 'npm:dev:*'",
29
+ "lint:css:fix": "yarn lint:css:prettier:fix && yarn lint:css:stylelint:fix",
30
+ "lint:css:prettier:fix": "yarn lint:css:prettier --write",
31
+ "lint:css:prettier": "prettier '**/*.css' --list-different --ignore-path .gitignore",
32
+ "lint:css:stylelint:fix": "yarn lint:css:stylelint --fix",
33
+ "lint:css:stylelint": "stylelint '**/*.css' --ignore-path .gitignore",
34
+ "lint:css": "run-s lint:css:stylelint lint:css:prettier",
35
+ "lint:fix": "run-p lint:js:fix lint:json:fix lint:css:fix",
36
+ "lint:js:fix": "yarn lint:js --fix",
37
+ "lint:js": "eslint --cache --ignore-path .gitignore '**/*.js'",
38
+ "lint:json:fix": "yarn lint:json --write",
39
+ "lint:json": "prettier '**/*.json' --list-different --ignore-path .gitignore",
40
+ "lint": "run-p lint:js lint:json lint:css",
41
+ "test:coverage": "yarn test --coverage",
42
+ "test:coverage:html": "yarn test:coverage & open coverage/lcov-report/index.html",
43
+ "test:watch": "CONSOLE_LEVEL=debug yarn test --watch",
44
+ "test": "jest"
45
+ },
46
+ "keywords": [
47
+ "react",
48
+ "components"
49
+ ],
50
+ "author": "imbric",
51
+ "license": "MIT",
52
+ "dependencies": {
53
+ "classnames": "2.3.1",
54
+ "formik": "2.2.9",
55
+ "moment": "2.29.3",
56
+ "moment-timezone": "0.5.34",
57
+ "react-date-range": "1.4.0",
58
+ "react-datepicker": "4.10.0",
59
+ "react-icons": "4.3.1",
60
+ "react-moment": "1.1.2",
61
+ "react-router": "6.3.0",
62
+ "react-router-dom": "6.3.0",
63
+ "react-select": "5.3.2",
64
+ "react-spinners": "0.13.4",
65
+ "react-tooltip": "4.4.0",
66
+ "storybook-addon-theme-changer": "0.1.2",
67
+ "sweetalert2": "11.4.14",
68
+ "sweetalert2-react-content": "5.0.0",
69
+ "yup": "0.32.11"
70
+ },
71
+ "devDependencies": {
72
+ "@babel/core": "7.11.6",
73
+ "@babel/preset-env": "7.11.5",
74
+ "@babel/preset-react": "7.10.4",
75
+ "@commitlint/cli": "11.0.0",
76
+ "@commitlint/config-conventional": "11.0.0",
77
+ "@semantic-release/changelog": "5.0.1",
78
+ "@semantic-release/git": "9.0.0",
79
+ "@storybook/addon-actions": "6.4.21",
80
+ "@storybook/addon-essentials": "6.4.21",
81
+ "@storybook/addon-links": "6.4.21",
82
+ "@storybook/addon-storyshots": "6.4.21",
83
+ "@storybook/react": "6.4.21",
84
+ "@svgr/webpack": "5.5.0",
85
+ "@testing-library/react": "12.0.0",
86
+ "babel-jest": "26.3.0",
87
+ "babel-loader": "8.1.0",
88
+ "chromatic": "5.2.0",
89
+ "commitizen": "4.2.2",
90
+ "concurrently": "5.3.0",
91
+ "enquirer": "2.3.6",
92
+ "eslint": "7.8.1",
93
+ "eslint-config-prettier": "6.11.0",
94
+ "eslint-plugin-prettier": "3.1.4",
95
+ "eslint-plugin-react": "7.20.6",
96
+ "eslint-plugin-storybook": "0.5.8",
97
+ "husky": "7.0.4",
98
+ "identity-obj-proxy": "3.0.0",
99
+ "jest": "26.4.2",
100
+ "lint-staged": "10.3.0",
101
+ "minireset.css": "0.0.6",
102
+ "next": "11",
103
+ "npm-run-all": "4.1.5",
104
+ "prettier": "2.1.1",
105
+ "react": "18",
106
+ "react-dom": "18",
107
+ "react-is": "18",
108
+ "react-test-renderer": "18",
109
+ "semantic-release": "17.1.2",
110
+ "stylelint": "13.7.2",
111
+ "stylelint-config-idiomatic-order": "8.1.0",
112
+ "stylelint-config-recommended": "3.0.0",
113
+ "watch": "1.0.2"
114
+ },
115
+ "peerDependencies": {
116
+ "react": "18",
117
+ "react-dom": "18"
118
+ }
119
+ }
@@ -0,0 +1,102 @@
1
+ import React, { useState } from 'react'
2
+ import PropTypes from 'prop-types'
3
+ import { useRouter } from 'next/router'
4
+ import styles from './Login.module.css'
5
+ import { options } from './constants'
6
+ import withStyles from '../../hocs/withStyles'
7
+ import Picture from '../../atoms/Picture'
8
+ import Divider from '../../atoms/Divider'
9
+ import Button from '../../atoms/Button'
10
+ import Input from '../../atoms/Input'
11
+ import Label from '../../atoms/Label'
12
+ import Spacer from '../../layout/Spacer'
13
+ import CenteredContent from '../../layout/CenteredContent'
14
+ import { loginSchema } from './validation/loginSchema'
15
+
16
+
17
+ export const Login = ({ children, getStyles }) => {
18
+
19
+
20
+ const router = useRouter()
21
+ // const [formValues, setFormValues] = useState({})
22
+
23
+ // const onChange = (key) => (event) => {
24
+ // const { value } = event.target
25
+ // setFormValues({ ...formValues, [key]: value })
26
+ // }
27
+
28
+
29
+
30
+ return (
31
+
32
+ <div className={getStyles('login')}>
33
+
34
+ <CenteredContent >
35
+
36
+ <Picture
37
+ src={router.basePath + "/static/logologin.svg"}
38
+ width={170}
39
+ />
40
+
41
+ <Spacer.Vertical size="md" />
42
+ <Divider color="highlight" />
43
+ <Spacer.Vertical size="md" />
44
+
45
+ <form id='loginform' onSubmit={handleSubmit}>
46
+
47
+ <Label >Email</Label>
48
+
49
+ <Input
50
+ id='email'
51
+ // value={formValues.email}
52
+ type="text"
53
+ name='email'
54
+ // onChange={formik.handleChange}
55
+ placeholder="Introduce tu email"
56
+ />
57
+
58
+ {/* <Label color="muted" isHint> {formik.errors.email}</Label> */}
59
+
60
+ <Spacer.Vertical size="md" />
61
+
62
+ <Label >Contraseña</Label>
63
+
64
+ <Input
65
+ id='password'
66
+ // value={formValues.password}
67
+ type="password"
68
+ name='password'
69
+ // onChange={formik.handleChange}
70
+ placeholder="Introduce tu contraseña"
71
+ />
72
+
73
+ {/* <Label color="muted" isHint> {formik.errors.password}</Label> */}
74
+
75
+ <Spacer.Vertical size="md" />
76
+
77
+ {/* <Button type='primary' isMuted={!(formik.isValid && formik.dirty)}> Acceder </Button> */}
78
+
79
+ </form>
80
+
81
+ {children}
82
+
83
+ </CenteredContent>
84
+
85
+ </div>
86
+ )
87
+
88
+
89
+
90
+ }
91
+
92
+ Login.propTypes = {
93
+ children: PropTypes.node,
94
+ getStyles: PropTypes.func.isRequired,
95
+ // type: PropTypes.oneOf(options.types),
96
+ }
97
+
98
+ Login.defaultProps = {
99
+ getStyles: () => { },
100
+ }
101
+
102
+ export default withStyles(styles)(Login)
@@ -0,0 +1,5 @@
1
+ .login {
2
+ display: flex;
3
+ max-width: 400px;
4
+ min-width: 300px;
5
+ }
@@ -0,0 +1,23 @@
1
+ import { Login, styles, options } from '.'
2
+
3
+ import {
4
+ getTemplate,
5
+ getListTemplate,
6
+ getOptionsArgTypes,
7
+ } from '../../helpers/storybook'
8
+
9
+ const Template = getTemplate(Login, styles)
10
+ const ListTemplate = getListTemplate(Login, styles)
11
+
12
+ export default {
13
+ title: 'Pages/Login',
14
+ component: Login,
15
+ args: {},
16
+ argTypes: {
17
+ // types: getOptionsArgTypes(options.types),
18
+ },
19
+ }
20
+
21
+ export const Default = Template.bind({})
22
+ // export const List = ListTemplate.bind({})
23
+ // List.args = { items: options.types.map((type) => ({ type })) }
@@ -0,0 +1 @@
1
+ export const options = { types: [] }
@@ -0,0 +1,3 @@
1
+ export { default, Login } from './Login'
2
+ export { options } from './constants'
3
+ export { default as styles } from './Login.module.css'
@@ -0,0 +1,5 @@
1
+ import * as Yup from 'yup'
2
+ export const loginSchema = Yup.object().shape({
3
+ email: Yup.string().email().required('Required'),
4
+ password: Yup.string().required('Required').min(3, 'Too Short!'),
5
+ })
Binary file
Binary file
@@ -0,0 +1,26 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.4.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <path d="M23.2,5.1H12.8L9.4,1.7H0v5.8v14c0,0.4,0.3,0.8,0.8,0.8h22.5c0.4,0,0.8-0.3,0.8-0.8V5.8C24,5.4,23.7,5.1,23.2,5.1z
8
+ M1.5,3.2h7.3l1.9,1.8H1.5V3.2z M22.5,20.8h-21V6.6h21V20.8z"/>
9
+ </g>
10
+ </g>
11
+ <g>
12
+ <g>
13
+ <rect x="4.8" y="9.3" width="14.3" height="1.5"/>
14
+ </g>
15
+ </g>
16
+ <g>
17
+ <g>
18
+ <rect x="4.8" y="12.9" width="14.3" height="1.5"/>
19
+ </g>
20
+ </g>
21
+ <g>
22
+ <g>
23
+ <rect x="4.8" y="16.5" width="14.3" height="1.5"/>
24
+ </g>
25
+ </g>
26
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.4.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
5
+ <path d="M21.6,21.7H2.2c-1.1,0-2.1-0.9-2.1-2.1v-14c0-1.1,0.9-2.1,2.1-2.1h7.6c0.6,0,1,0.4,1,1s-0.4,1-1,1H2.2c0,0-0.1,0-0.1,0.1v14
6
+ c0,0,0,0.1,0.1,0.1h19.4c0,0,0.1,0,0.1-0.1V15c0-0.6,0.4-1,1-1s1,0.4,1,1v4.6C23.7,20.7,22.8,21.7,21.6,21.7z"/>
7
+ <path d="M9.7,12.5H4.3c-0.6,0-1-0.4-1-1s0.4-1,1-1h5.4c0.6,0,1,0.4,1,1S10.3,12.5,9.7,12.5z"/>
8
+ <path d="M19.5,16.8H4.3c-0.6,0-1-0.4-1-1s0.4-1,1-1h15.1c0.6,0,1,0.4,1,1S20,16.8,19.5,16.8z"/>
9
+ <path d="M17.3,11.9c-2.3,0-4.2-1.9-4.2-4.2s1.9-4.2,4.2-4.2s4.2,1.9,4.2,4.2S19.6,11.9,17.3,11.9z M17.3,5.5c-1.2,0-2.2,1-2.2,2.2
10
+ s1,2.2,2.2,2.2s2.2-1,2.2-2.2S18.5,5.5,17.3,5.5z"/>
11
+ <path d="M11,16.8c-0.1,0-0.2,0-0.2,0c-0.5-0.1-0.9-0.7-0.7-1.2c0.8-3.3,3.7-5.6,7.1-5.6c2.7,0,5.2,1.5,6.5,4
12
+ c0.3,0.5,0.1,1.1-0.4,1.3c-0.5,0.3-1.1,0.1-1.3-0.4c-0.9-1.8-2.7-2.9-4.7-2.9c-2.4,0-4.5,1.7-5.1,4.1C11.9,16.5,11.5,16.8,11,16.8z"
13
+ />
14
+ </svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.4.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <path d="M9.2,1.6c-0.5,0-1,0.4-1,1V4h1.7V3.9c0-0.3,0.3-0.6,0.6-0.6h11.2c0.3,0,0.6,0.3,0.6,0.6V12c0,0.2-0.2,0.4-0.4,0.4v1.7h1
8
+ c0.5,0,1-0.4,1-1V2.6c0-0.5-0.4-1-1-1H9.2z"/>
9
+ <path d="M5,7.2h1.6c0-0.3,0.3-0.6,0.6-0.6h11C18.6,6.6,19,7,19,7.5v7.8c0,0.2-0.2,0.4-0.4,0.4h-0.2v1.6h1.2c0.5,0,1-0.4,1-1V5.8
10
+ c0-0.5-0.4-0.9-0.9-0.9H5.9c-0.5,0-1,0.4-1,1L5,7.2L5,7.2z"/>
11
+ <g>
12
+ <path d="M7.3,10.3c0.6,0,1.2,0.4,1.4,1l0.5,1.1v0h4.6c0.9,0,1.5,0.7,1.5,1.6l0,6.5c0,0.7-0.4,1.3-1.6,1.3c0,0,0,0,0,0l-10.9,0
13
+ c-0.5,0-0.9-0.4-0.9-0.9V15v-2.7V12c0-0.9,0.7-1.6,1.5-1.6H7.3 M7.3,8.3H3.5C1.6,8.3,0,10,0,12v0.4V15v5.7c0,1.6,1.3,2.9,2.9,2.9
14
+ l10.9,0c2.5,0,3.6-1.7,3.6-3.3l0-6.5c0-2-1.6-3.6-3.5-3.6h-3.3C9.9,9.1,8.7,8.3,7.3,8.3L7.3,8.3z"/>
15
+ </g>
16
+ </g>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="52px" height="52px" viewBox="0 0 52 52" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>MKP</title>
4
+ <defs>
5
+ <filter id="filter">
6
+ <feColorMatrix type="matrix" values="0 0 0 0 0.262745 0 0 0 0 0.329412 0 0 0 0 0.866667 0 0 0 1.000000 0" />
7
+ </filter>
8
+ </defs>
9
+ <g fill="none" stroke="none">
10
+ <g filter="url(#filter)">
11
+ <g>
12
+ <rect x="0" y="4.26325641e-14" width="52" height="52" />
13
+ <path d="M23.2968,26.3643 L11.87,19.9731 C11.606,19.8255 11.3864,19.6106 11.2335,19.3506 C11.0806,19.0905 11,18.7947 11,18.4934 C11,18.1921 11.0806,17.8963 11.2335,17.6362 C11.3864,17.3762 11.606,17.1613 11.87,17.0137 L23.2967,10.6222 C24.026,10.2143 24.8484,10 25.6849,10 C26.5215,10 27.3439,10.2143 28.0731,10.6222 L39.4999,17.0137 C39.7638,17.1613 39.9835,17.3762 40.1364,17.6362 C40.2893,17.8963 40.3699,18.1921 40.3699,18.4934 C40.3699,18.7947 40.2893,19.0905 40.1364,19.3506 C39.9835,19.6106 39.7638,19.8255 39.4999,19.9731 L28.0731,26.3643 C27.3439,26.7722 26.5215,26.9864 25.6849,26.9864 C24.8484,26.9864 24.026,26.7722 23.2968,26.3643 Z" id="Path" fill="#2196F3" fill-rule="nonzero" transform="translate(25.684950, 18.493200) rotate(180.000000) translate(-25.684950, -18.493200)" />
14
+ <path d="M23.2349,37.8879 L6.87,28.7347 C6.6061,28.5871 6.3864,28.3722 6.2335,28.1122 C6.0806,27.8521 6,27.5563 6,27.255 C6,26.9537 6.0806,26.6578 6.2335,26.3978 C6.3864,26.1377 6.6061,25.9229 6.87,25.7752 L23.2349,16.6221 C23.9641,16.2143 24.7865,16 25.623,16 C26.4595,16 27.2819,16.2143 28.0111,16.6221 L44.376,25.7752 C44.6399,25.9229 44.8596,26.1377 45.0125,26.3978 C45.1654,26.6578 45.246,26.9537 45.246,27.255 C45.246,27.5563 45.1654,27.8521 45.0125,28.1122 C44.8596,28.3722 44.6399,28.5871 44.376,28.7347 L28.0111,37.8879 C27.2819,38.2957 26.4595,38.5099 25.623,38.5099 C24.7865,38.5099 23.9641,38.2957 23.2349,37.8879 Z" id="Path" fill="#2196F3" fill-rule="nonzero" opacity="0.7" transform="translate(25.623000, 27.254950) rotate(180.000000) translate(-25.623000, -27.254950)" />
15
+ <path d="M23.6157447,51.02171 L0.86859567,38.2985735 C0.605087772,38.1511153 0.385747448,37.9366669 0.233097764,37.6769927 C0.0804480806,37.4174184 0,37.1220028 0,36.8211961 C0,36.5203894 0.0804480806,36.2250736 0.233097764,35.9653994 C0.385747448,35.7058251 0.605087772,35.4912769 0.86859567,35.3439185 L23.6158446,22.6210616 C24.3438508,22.2138793 25.1649044,22 26.0000349,22 C26.8351655,22 27.6562191,22.2138793 28.3842253,22.6210616 L51.1314243,35.3439185 C51.3948923,35.4912769 51.6142326,35.7058251 51.7668823,35.9653994 C51.919532,36.2250736 52,36.5203894 52,36.8211961 C52,37.1220028 51.919532,37.4174184 51.7668823,37.6769927 C51.6142326,37.9366669 51.3948923,38.1511153 51.1314243,38.2985735 L28.3842253,51.02171 C27.6562191,51.4288424 26.8351655,51.6427915 26.0000349,51.6427915 C25.1649044,51.6427915 24.3438508,51.4288424 23.6157447,51.02171 Z" id="Path" fill="#2196F3" fill-rule="nonzero" opacity="0.4" transform="translate(26.000000, 36.821396) rotate(180.000000) translate(-26.000000, -36.821396)" />
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </svg>
Binary file