@steroidsjs/bootstrap 3.0.0-beta.9 → 3.0.0-beta.91

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 (362) hide show
  1. package/README.md +1 -2
  2. package/content/Accordion/AccordionItemView.d.ts +2 -0
  3. package/content/{Collapse/CollapseItemView.js → Accordion/AccordionItemView.js} +47 -22
  4. package/content/Accordion/AccordionItemView.scss +262 -0
  5. package/content/Accordion/AccordionView.d.ts +2 -0
  6. package/content/{Collapse/CollapseView.js → Accordion/AccordionView.js} +3 -3
  7. package/content/Accordion/AccordionView.scss +28 -0
  8. package/content/Alert/AlertView.js +3 -2
  9. package/content/Alert/AlertView.scss +72 -24
  10. package/content/Avatar/AvatarView.js +2 -3
  11. package/content/Avatar/AvatarView.scss +43 -48
  12. package/content/Badge/BadgeView.d.ts +0 -1
  13. package/content/Badge/BadgeView.js +8 -7
  14. package/content/Badge/BadgeView.scss +141 -0
  15. package/content/Calendar/CalendarView.js +1 -1
  16. package/content/Calendar/CalendarView.scss +248 -175
  17. package/content/Calendar/CaptionElement.js +23 -15
  18. package/content/Calendar/CaptionElement.scss +167 -106
  19. package/content/Card/CardView.js +37 -14
  20. package/content/Card/CardView.scss +139 -108
  21. package/content/CopyToClipboard/CopyToClipboardView.d.ts +3 -0
  22. package/content/CopyToClipboard/CopyToClipboardView.js +19 -0
  23. package/content/CopyToClipboard/CopyToClipboardView.scss +41 -0
  24. package/content/Detail/DetailView.scss +79 -57
  25. package/content/DropDown/DropDownView.d.ts +0 -1
  26. package/content/DropDown/DropDownView.js +7 -4
  27. package/content/DropDown/DropDownView.scss +208 -27
  28. package/content/Icon/IconView.d.ts +1 -2
  29. package/content/Icon/IconView.js +2 -2
  30. package/content/Icon/IconView.scss +1 -23
  31. package/content/Menu/MenuItemView.d.ts +2 -0
  32. package/content/Menu/MenuItemView.js +15 -0
  33. package/content/Menu/MenuItemView.scss +67 -0
  34. package/content/Menu/MenuView.d.ts +2 -0
  35. package/content/Menu/MenuView.js +33 -0
  36. package/content/Menu/MenuView.scss +46 -0
  37. package/content/Slider/SliderView.d.ts +2 -0
  38. package/content/Slider/SliderView.js +18 -0
  39. package/content/Slider/SliderView.scss +5 -0
  40. package/form/AutoCompleteField/AutoCompleteFieldView.d.ts +1 -3
  41. package/form/AutoCompleteField/AutoCompleteFieldView.js +62 -9
  42. package/form/AutoCompleteField/AutoCompleteFieldView.scss +199 -142
  43. package/form/Button/ButtonView.d.ts +1 -2
  44. package/form/Button/ButtonView.js +13 -9
  45. package/form/Button/ButtonView.scss +176 -68
  46. package/form/CheckboxField/CheckboxFieldView.d.ts +1 -2
  47. package/form/CheckboxField/CheckboxFieldView.js +6 -4
  48. package/form/CheckboxField/CheckboxFieldView.scss +198 -37
  49. package/form/CheckboxListField/CheckboxListFieldView.d.ts +1 -2
  50. package/form/CheckboxListField/CheckboxListFieldView.js +18 -15
  51. package/form/CheckboxListField/CheckboxListFieldView.scss +7 -41
  52. package/form/DateField/DateFieldView.js +7 -6
  53. package/form/DateField/DateFieldView.scss +15 -70
  54. package/form/DateRangeField/DateRangeFieldView.js +10 -13
  55. package/form/DateRangeField/DateRangeFieldView.scss +42 -73
  56. package/form/DateTimeField/DateTimeFieldView.d.ts +1 -2
  57. package/form/DateTimeField/DateTimeFieldView.js +6 -6
  58. package/form/DateTimeField/DateTimeFieldView.scss +13 -107
  59. package/form/DateTimeRangeField/DateTimeRangeFieldView.js +10 -8
  60. package/form/DateTimeRangeField/DateTimeRangeFieldView.scss +32 -87
  61. package/form/DropDownField/DropDownFieldView.js +35 -47
  62. package/form/DropDownField/DropDownFieldView.scss +382 -181
  63. package/form/DropDownField/utils.d.ts +2 -0
  64. package/form/DropDownField/utils.js +15 -0
  65. package/form/DropDownFieldItem/DropDownFieldItemView.d.ts +2 -0
  66. package/form/DropDownFieldItem/DropDownFieldItemView.js +81 -0
  67. package/form/DropDownFieldItem/DropDownFieldItemView.scss +220 -0
  68. package/form/FieldLayout/FieldLayoutView.d.ts +1 -2
  69. package/form/FieldLayout/FieldLayoutView.js +13 -9
  70. package/form/FieldLayout/FieldLayoutView.scss +116 -19
  71. package/form/FieldList/FieldListItemView.js +6 -4
  72. package/form/FieldList/FieldListItemView.scss +18 -38
  73. package/form/FieldList/FieldListView.js +9 -8
  74. package/form/FieldList/FieldListView.scss +75 -24
  75. package/form/FieldSet/FieldSetView.js +4 -2
  76. package/form/FieldSet/FieldSetView.scss +42 -0
  77. package/form/FileField/FileFieldItemView.d.ts +1 -2
  78. package/form/FileField/FileFieldItemView.js +31 -6
  79. package/form/FileField/FileFieldItemView.scss +259 -14
  80. package/form/FileField/FileFieldView.d.ts +1 -2
  81. package/form/FileField/FileFieldView.js +6 -8
  82. package/form/FileField/FileFieldView.scss +45 -13
  83. package/form/Form/FormView.js +1 -4
  84. package/form/Form/FormView.scss +1 -14
  85. package/form/HtmlField/HtmlFieldView.d.ts +1 -2
  86. package/form/HtmlField/HtmlFieldView.scss +6 -3
  87. package/form/ImageField/ImageFieldView.js +15 -3
  88. package/form/ImageField/ImageFieldView.scss +7 -24
  89. package/form/InputField/InputFieldView.d.ts +1 -2
  90. package/form/InputField/InputFieldView.js +33 -14
  91. package/form/InputField/InputFieldView.scss +267 -99
  92. package/form/NumberField/NumberFieldView.d.ts +1 -2
  93. package/form/NumberField/NumberFieldView.js +19 -13
  94. package/form/NumberField/NumberFieldView.scss +197 -89
  95. package/form/PasswordField/PasswordFieldView.d.ts +1 -2
  96. package/form/PasswordField/PasswordFieldView.js +11 -9
  97. package/form/PasswordField/PasswordFieldView.scss +238 -63
  98. package/form/RadioField/RadioFieldView.d.ts +2 -0
  99. package/form/RadioField/RadioFieldView.js +57 -0
  100. package/form/RadioField/RadioFieldView.scss +228 -0
  101. package/form/RadioListField/RadioListFieldView.d.ts +1 -2
  102. package/form/RadioListField/RadioListFieldView.js +20 -16
  103. package/form/RadioListField/RadioListFieldView.scss +11 -1
  104. package/form/RateField/RateFieldView.js +17 -10
  105. package/form/RateField/RateFieldView.scss +118 -40
  106. package/form/ReCaptchaField/ReCaptchaFieldView.d.ts +1 -2
  107. package/form/ReCaptchaField/ReCaptchaFieldView.js +18 -9
  108. package/form/ReCaptchaField/ReCaptchaFieldView.scss +1 -5
  109. package/form/SliderField/SliderFieldView.d.ts +1 -2
  110. package/form/SliderField/SliderFieldView.js +1 -1
  111. package/form/SliderField/SliderFieldView.scss +338 -299
  112. package/form/SwitcherField/SwitcherFieldView.d.ts +1 -2
  113. package/form/SwitcherField/SwitcherFieldView.js +12 -7
  114. package/form/SwitcherField/SwitcherFieldView.scss +192 -1
  115. package/form/TextField/TextFieldView.d.ts +1 -2
  116. package/form/TextField/TextFieldView.js +10 -2
  117. package/form/TextField/TextFieldView.scss +147 -2
  118. package/form/TimeField/TimeFieldView.d.ts +1 -2
  119. package/form/TimeField/TimeFieldView.js +16 -14
  120. package/form/TimeField/TimeFieldView.scss +22 -68
  121. package/form/TimeField/TimePanelView.scss +65 -68
  122. package/form/TimeRangeField/TimeRangeFieldView.d.ts +2 -0
  123. package/form/TimeRangeField/TimeRangeFieldView.js +67 -0
  124. package/form/TimeRangeField/TimeRangeFieldView.scss +81 -0
  125. package/icons/index.d.ts +2 -0
  126. package/icons/index.js +110 -0
  127. package/icons/svgs/add.svg +4 -0
  128. package/icons/svgs/add_square.svg +5 -0
  129. package/icons/svgs/arrow_down_18x18.svg +4 -0
  130. package/icons/svgs/arrow_down_24x24.svg +4 -0
  131. package/icons/svgs/arrow_drop_down_10x10.svg +3 -0
  132. package/icons/svgs/arrow_left_18x18.svg +4 -0
  133. package/icons/svgs/arrow_left_24x24.svg +4 -0
  134. package/icons/svgs/arrow_right_18x18.svg +4 -0
  135. package/icons/svgs/arrow_right_24x24.svg +5 -0
  136. package/icons/svgs/arrow_up_18x18.svg +4 -0
  137. package/icons/svgs/arrow_up_24x24.svg +4 -0
  138. package/icons/svgs/blank.svg +4 -0
  139. package/icons/svgs/burger.svg +5 -0
  140. package/icons/svgs/calendar_check.svg +5 -0
  141. package/icons/svgs/calendar_range.svg +8 -0
  142. package/icons/svgs/cancel_ellips.svg +4 -0
  143. package/icons/svgs/chart.svg +6 -0
  144. package/icons/svgs/checkmark_12x12.svg +4 -0
  145. package/icons/svgs/checkmark_8x8.svg +4 -0
  146. package/icons/svgs/circle_cross_12x12.svg +4 -0
  147. package/icons/svgs/circle_cross_16x16.svg +4 -0
  148. package/icons/svgs/circle_cross_18x18.svg +4 -0
  149. package/icons/svgs/clip.svg +3 -0
  150. package/icons/svgs/copy.svg +5 -0
  151. package/icons/svgs/cross_12x12.svg +4 -0
  152. package/icons/svgs/cross_4x4.svg +3 -0
  153. package/icons/svgs/cross_8x8.svg +4 -0
  154. package/icons/svgs/cut.svg +3 -0
  155. package/icons/svgs/date_range.svg +8 -0
  156. package/icons/svgs/default_16x16.svg +4 -0
  157. package/icons/svgs/default_24x24.svg +11 -0
  158. package/icons/svgs/double_arrow_down.svg +5 -0
  159. package/icons/svgs/double_arrow_left.svg +5 -0
  160. package/icons/svgs/double_arrow_right.svg +5 -0
  161. package/icons/svgs/double_arrow_up.svg +5 -0
  162. package/icons/svgs/doughnut_chart.svg +5 -0
  163. package/icons/svgs/edit.svg +4 -0
  164. package/icons/svgs/error_16x16.svg +5 -0
  165. package/icons/svgs/error_24x24.svg +12 -0
  166. package/icons/svgs/expand_down.svg +3 -0
  167. package/icons/svgs/expand_left.svg +3 -0
  168. package/icons/svgs/expand_left_double.svg +4 -0
  169. package/icons/svgs/expand_right.svg +3 -0
  170. package/icons/svgs/expand_right_double.svg +4 -0
  171. package/icons/svgs/expand_up.svg +3 -0
  172. package/icons/svgs/facebook.svg +3 -0
  173. package/icons/svgs/file_dock.svg +6 -0
  174. package/icons/svgs/filter.svg +3 -0
  175. package/icons/svgs/fluid.svg +4 -0
  176. package/icons/svgs/folder.svg +3 -0
  177. package/icons/svgs/group.svg +8 -0
  178. package/icons/svgs/home.svg +4 -0
  179. package/icons/svgs/img_box.svg +5 -0
  180. package/icons/svgs/import.svg +4 -0
  181. package/icons/svgs/info_16x16.svg +5 -0
  182. package/icons/svgs/info_24x24.svg +12 -0
  183. package/icons/svgs/instagram.svg +5 -0
  184. package/icons/svgs/left_12x12.svg +3 -0
  185. package/icons/svgs/loading_default.svg +3 -0
  186. package/icons/svgs/loading_icon_thick.svg +3 -0
  187. package/icons/svgs/loading_purple.svg +9 -0
  188. package/icons/svgs/map.svg +7 -0
  189. package/icons/svgs/menu_dots.svg +5 -0
  190. package/icons/svgs/menu_left.svg +5 -0
  191. package/icons/svgs/minis_sq.svg +4 -0
  192. package/icons/svgs/paste.svg +8 -0
  193. package/icons/svgs/pie_chart.svg +5 -0
  194. package/icons/svgs/pin.svg +4 -0
  195. package/icons/svgs/sad.svg +6 -0
  196. package/icons/svgs/search.svg +4 -0
  197. package/icons/svgs/setting_line.svg +3 -0
  198. package/icons/svgs/share.svg +7 -0
  199. package/icons/svgs/sort.svg +7 -0
  200. package/icons/svgs/star.svg +3 -0
  201. package/icons/svgs/success_16x16.svg +4 -0
  202. package/icons/svgs/success_24x24.svg +11 -0
  203. package/icons/svgs/support.svg +3 -0
  204. package/icons/svgs/telegram.svg +3 -0
  205. package/icons/svgs/trash.svg +6 -0
  206. package/icons/svgs/upload.svg +4 -0
  207. package/icons/svgs/user.svg +4 -0
  208. package/icons/svgs/view.svg +4 -0
  209. package/icons/svgs/view_hide.svg +5 -0
  210. package/icons/svgs/vk.svg +3 -0
  211. package/icons/svgs/warning_16x16.svg +5 -0
  212. package/icons/svgs/warning_24x24.svg +12 -0
  213. package/icons/svgs/whatsapp.svg +7 -0
  214. package/index.d.ts +41 -2
  215. package/index.js +43 -4
  216. package/index.scss +91 -68
  217. package/layout/Header/HeaderView.js +43 -6
  218. package/layout/Header/HeaderView.scss +138 -23
  219. package/layout/Loader/LoaderView.d.ts +2 -2
  220. package/layout/Loader/LoaderView.js +6 -2
  221. package/layout/Loader/LoaderView.scss +70 -22
  222. package/layout/Notifications/NotificationsItemView.d.ts +1 -2
  223. package/layout/Notifications/NotificationsItemView.js +9 -8
  224. package/layout/Notifications/NotificationsItemView.scss +1 -39
  225. package/layout/Notifications/NotificationsView.d.ts +1 -2
  226. package/layout/Notifications/NotificationsView.scss +3 -0
  227. package/layout/ProgressBar/CircleProgressBarView.d.ts +1 -2
  228. package/layout/ProgressBar/CircleProgressBarView.scss +9 -7
  229. package/layout/ProgressBar/LineProgressBarView.d.ts +1 -2
  230. package/layout/ProgressBar/LineProgressBarView.scss +10 -8
  231. package/layout/Sidebar/FooterIcons/FooterIcons.d.ts +10 -0
  232. package/layout/Sidebar/FooterIcons/FooterIcons.js +54 -0
  233. package/layout/Sidebar/FooterIcons/FooterIcons.scss +36 -0
  234. package/layout/Sidebar/FooterIcons/index.d.ts +2 -0
  235. package/layout/Sidebar/FooterIcons/index.js +7 -0
  236. package/layout/Sidebar/SidebarLogo/SidebarLogo.d.ts +10 -0
  237. package/layout/Sidebar/SidebarLogo/SidebarLogo.js +44 -0
  238. package/layout/Sidebar/SidebarLogo/SidebarLogo.scss +52 -0
  239. package/layout/Sidebar/SidebarLogo/index.d.ts +2 -0
  240. package/layout/Sidebar/SidebarLogo/index.js +7 -0
  241. package/layout/Sidebar/SidebarUser/SidebarUser.d.ts +11 -0
  242. package/layout/Sidebar/SidebarUser/SidebarUser.js +53 -0
  243. package/layout/Sidebar/SidebarUser/SidebarUser.scss +45 -0
  244. package/layout/Sidebar/SidebarUser/index.d.ts +2 -0
  245. package/layout/Sidebar/SidebarUser/index.js +7 -0
  246. package/layout/Sidebar/SidebarView.d.ts +2 -0
  247. package/layout/Sidebar/SidebarView.js +26 -0
  248. package/layout/Sidebar/SidebarView.scss +304 -0
  249. package/layout/Sidebar/index.d.ts +2 -0
  250. package/layout/Sidebar/index.js +7 -0
  251. package/layout/Skeleton/SkeletonView.scss +7 -5
  252. package/layout/Tooltip/TooltipView.d.ts +1 -2
  253. package/layout/Tooltip/TooltipView.js +6 -6
  254. package/layout/Tooltip/TooltipView.scss +46 -37
  255. package/list/CheckboxColumn/CheckboxColumnView.d.ts +1 -2
  256. package/list/CheckboxColumn/CheckboxColumnView.js +2 -1
  257. package/list/ControlsColumnView/ControlsColumnView.d.ts +1 -2
  258. package/list/ControlsColumnView/ControlsColumnView.scss +7 -1
  259. package/list/Empty/EmptyView.js +1 -1
  260. package/list/Empty/EmptyView.scss +5 -1
  261. package/list/FlexGrid/FlexGridView.d.ts +2 -0
  262. package/list/FlexGrid/FlexGridView.js +71 -0
  263. package/list/FlexGrid/FlexGridView.scss +60 -0
  264. package/list/Grid/GridView.js +10 -4
  265. package/list/Grid/GridView.scss +153 -37
  266. package/list/Grid/views/ContentColumnView/ContentColumnView.d.ts +2 -0
  267. package/list/Grid/views/ContentColumnView/ContentColumnView.js +50 -0
  268. package/list/Grid/views/ContentColumnView/ContentColumnView.scss +88 -0
  269. package/list/Grid/views/ContentColumnView/index.d.ts +2 -0
  270. package/list/Grid/views/ContentColumnView/index.js +7 -0
  271. package/list/Grid/views/DiagramColumnView/DiagramColumnView.d.ts +3 -0
  272. package/list/Grid/views/DiagramColumnView/DiagramColumnView.js +60 -0
  273. package/list/Grid/views/DiagramColumnView/DiagramColumnView.scss +170 -0
  274. package/list/Grid/views/DiagramColumnView/index.d.ts +2 -0
  275. package/list/Grid/views/DiagramColumnView/index.js +7 -0
  276. package/list/List/ListItemView.d.ts +1 -2
  277. package/list/List/ListView.js +5 -7
  278. package/list/List/ListView.scss +28 -1
  279. package/list/Pagination/PaginationButtonView.js +34 -5
  280. package/list/Pagination/PaginationButtonView.scss +265 -1
  281. package/list/Pagination/PaginationMoreView.js +1 -1
  282. package/list/Pagination/PaginationMoreView.scss +4 -1
  283. package/list/PaginationSize/PaginationSizeView.js +5 -5
  284. package/list/PaginationSize/PaginationSizeView.scss +0 -8
  285. package/list/Steps/StepItemView.scss +13 -12
  286. package/list/Steps/StepsView.scss +3 -1
  287. package/modal/Modal/ModalView.d.ts +1 -2
  288. package/modal/Modal/ModalView.js +5 -8
  289. package/modal/Modal/ModalView.scss +140 -93
  290. package/modal/TwoFactorModal/TwoFactorModalView.d.ts +1 -3
  291. package/modal/TwoFactorModal/TwoFactorModalView.js +0 -1
  292. package/modal/TwoFactorModal/TwoFactorModalView.scss +0 -2
  293. package/nav/Breadcrubms/BreadcrumbsView.js +9 -1
  294. package/nav/Breadcrubms/BreadcrumbsView.scss +49 -0
  295. package/nav/ButtonGroup/ButtonGroupView.d.ts +2 -0
  296. package/nav/ButtonGroup/ButtonGroupView.js +33 -0
  297. package/nav/ButtonGroup/ButtonGroupView.scss +84 -0
  298. package/nav/Controls/ControlsView.d.ts +1 -2
  299. package/nav/Controls/ControlsView.scss +17 -3
  300. package/nav/Nav/NavBarView.d.ts +1 -2
  301. package/nav/Nav/NavBarView.js +9 -4
  302. package/nav/Nav/NavBarView.scss +35 -1
  303. package/nav/Nav/NavButtonView.d.ts +1 -2
  304. package/nav/Nav/NavButtonView.js +8 -2
  305. package/nav/Nav/NavButtonView.scss +6 -5
  306. package/nav/Nav/NavIconView.d.ts +1 -2
  307. package/nav/Nav/NavIconView.js +21 -2
  308. package/nav/Nav/NavIconView.scss +33 -6
  309. package/nav/Nav/NavLinkView.d.ts +1 -2
  310. package/nav/Nav/NavLinkView.js +9 -2
  311. package/nav/Nav/NavLinkView.scss +14 -5
  312. package/nav/Nav/NavListView.d.ts +1 -2
  313. package/nav/Nav/NavListView.js +11 -7
  314. package/nav/Nav/NavListView.scss +11 -10
  315. package/nav/Nav/NavTabsView.d.ts +1 -2
  316. package/nav/Nav/NavTabsView.js +9 -4
  317. package/nav/Nav/NavTabsView.scss +50 -1
  318. package/nav/Tree/TreeView.d.ts +1 -2
  319. package/nav/Tree/TreeView.scss +63 -54
  320. package/package.json +8 -6
  321. package/scss/animations/index.scss +1 -0
  322. package/scss/animations/loading.scss +13 -0
  323. package/scss/fonts.scss +6 -0
  324. package/scss/mixins/button.scss +83 -24
  325. package/scss/mixins/customMixins.scss +6 -0
  326. package/scss/mixins/date.scss +436 -0
  327. package/scss/mixins/index.scss +6 -2
  328. package/scss/mixins/navs.scss +39 -0
  329. package/scss/mixins/scroll.scss +31 -0
  330. package/scss/mixins/typography.scss +29 -0
  331. package/scss/normalize.scss +25 -0
  332. package/scss/variables/common/colors.scss +199 -83
  333. package/scss/variables/common/media.scss +3 -0
  334. package/scss/variables/common/typography.scss +99 -28
  335. package/scss/variables/common/variables.scss +1 -0
  336. package/scss/variables/components/calendar.scss +8 -6
  337. package/scss/variables/components/input.scss +10 -7
  338. package/scss/variables/components/ratefield.scss +3 -1
  339. package/scss/variables/index.scss +10 -11
  340. package/typography/Text/TextView.d.ts +3 -0
  341. package/typography/Text/TextView.js +46 -0
  342. package/typography/Text/TextView.scss +19 -0
  343. package/typography/Title/TitleView.d.ts +3 -0
  344. package/typography/Title/TitleView.js +50 -0
  345. package/typography/Title/TitleView.scss +19 -0
  346. package/utils/renderIcon.d.ts +9 -0
  347. package/utils/renderIcon.js +27 -0
  348. package/content/Collapse/CollapseItemView.d.ts +0 -2
  349. package/content/Collapse/CollapseItemView.scss +0 -88
  350. package/content/Collapse/CollapseView.d.ts +0 -2
  351. package/content/Collapse/CollapseView.scss +0 -15
  352. package/icons/close.svg +0 -3
  353. package/icons/default.svg +0 -11
  354. package/icons/error.svg +0 -12
  355. package/icons/fontawesome.d.ts +0 -2
  356. package/icons/fontawesome.js +0 -259
  357. package/icons/info.svg +0 -12
  358. package/icons/success.svg +0 -4
  359. package/icons/warning.svg +0 -12
  360. package/list/List/ListItemView.scss +0 -3
  361. package/scss/mixins/card.scss +0 -26
  362. package/scss/variables/components/card.scss +0 -20
@@ -1,85 +1,82 @@
1
- .TimePanelView {
2
-
3
- font-weight: 500;
4
- user-select: none;
5
-
6
- &__header {
7
- height: 45px;
8
- display: flex;
9
- align-items: center;
10
- justify-content: center;
11
-
12
- border-left: 1px solid $border-default;
13
- border-bottom: 1px solid $border-default;
14
- }
15
-
16
- &__body {
17
- display: flex;
18
- flex-flow: row nowrap;
19
- border-radius: $input-border-radius;
20
- }
1
+ @use "../../scss/variables";
2
+ @use '../../scss/mixins';
21
3
 
22
- &__column {
23
- height: 220px;
24
- overflow-y: auto;
25
- list-style: none;
26
- padding: 0;
27
- margin: 0;
28
-
29
- border-bottom: 1px solid $border-default;
30
- &:not(:last-child) {
31
- border-right: 1px solid $border-default;
32
- }
33
- }
4
+ .TimePanelView {
5
+ font-weight: 500;
6
+ user-select: none;
34
7
 
35
- &__cell {
36
- padding: 5px 20px;
37
- cursor: pointer;
8
+ &__header {
9
+ height: 45px;
10
+ display: flex;
11
+ align-items: center;
12
+ justify-content: center;
38
13
 
39
- &_selected {
40
- background-color: $primary-light;
14
+ border-left: 1px solid variables.$border-default;
15
+ border-bottom: 1px solid variables.$border-default;
41
16
  }
42
17
 
43
- transition: background-color .1s ease-in;
44
- &:hover {
45
- background-color: $back-disabled;
18
+ &__body {
19
+ display: flex;
20
+ flex-flow: row nowrap;
21
+ border-radius: variables.$input-border-radius;
46
22
  }
47
- }
48
23
 
49
- &__footer {
50
- display: flex;
51
- align-items: center;
52
- justify-content: space-between;
53
- padding: 10px;
54
-
55
- &_to-end {
56
- justify-content: flex-end;
24
+ &__column {
25
+ height: 220px;
26
+ overflow-y: auto;
27
+ list-style: none;
28
+ padding: 0;
29
+ margin: 0;
30
+ @include mixins.scrollWrapper(298px, 0, variables.$scroll-thumb-color, variables.$scroll-track-color);
57
31
  }
58
- }
59
32
 
60
- &__button {
61
- border: none;
33
+ &__cell {
34
+ padding: 5px 20px;
35
+ cursor: pointer;
62
36
 
63
- &_now {
64
- color: $primary;
65
- background-color: unset;
37
+ &_selected {
38
+ background-color: variables.$primary-light;
39
+ }
66
40
 
67
- transition: color .1s ease-in;
68
- &:hover {
69
- color: $primary-dark;
70
- }
41
+ transition: background-color 0.1s ease-in;
42
+ &:hover {
43
+ background-color: variables.$back-disabled;
44
+ }
71
45
  }
72
46
 
73
- &_ok {
74
- color: #fff;
75
- border-radius: 4px;
76
- background-color: $primary;
47
+ &__footer {
48
+ display: flex;
49
+ align-items: center;
50
+ justify-content: space-between;
51
+ padding: 10px;
77
52
 
78
- transition: background-color .1s ease-in;
79
- &:hover {
80
- background-color: $primary-dark;
81
- }
53
+ &_to-end {
54
+ justify-content: flex-end;
55
+ }
82
56
  }
83
- }
84
57
 
58
+ &__button {
59
+ border: none;
60
+
61
+ &_now {
62
+ color: variables.$primary;
63
+ background-color: unset;
64
+
65
+ transition: color 0.1s ease-in;
66
+ &:hover {
67
+ color: variables.$primary-dark;
68
+ }
69
+ }
70
+
71
+ &_ok {
72
+ color: #fff;
73
+ border-radius: 4px;
74
+ background-color: variables.$primary;
75
+
76
+ transition: background-color 0.1s ease-in;
77
+ &:hover {
78
+ background-color: variables.$primary-dark;
79
+ }
80
+ }
81
+ }
85
82
  }
@@ -0,0 +1,2 @@
1
+ import { ITimeRangeFieldViewProps } from '@steroidsjs/core/ui/form/TimeRangeField/TimeRangeField';
2
+ export default function TimeRangeFieldView(props: ITimeRangeFieldViewProps): JSX.Element;
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14
+ if (k2 === undefined) k2 = k;
15
+ var desc = Object.getOwnPropertyDescriptor(m, k);
16
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
17
+ desc = { enumerable: true, get: function() { return m[k]; } };
18
+ }
19
+ Object.defineProperty(o, k2, desc);
20
+ }) : (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ o[k2] = m[k];
23
+ }));
24
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
25
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
26
+ }) : function(o, v) {
27
+ o["default"] = v;
28
+ });
29
+ var __importStar = (this && this.__importStar) || function (mod) {
30
+ if (mod && mod.__esModule) return mod;
31
+ var result = {};
32
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
33
+ __setModuleDefault(result, mod);
34
+ return result;
35
+ };
36
+ var __importDefault = (this && this.__importDefault) || function (mod) {
37
+ return (mod && mod.__esModule) ? mod : { "default": mod };
38
+ };
39
+ exports.__esModule = true;
40
+ var react_1 = __importStar(require("react"));
41
+ var useBem_1 = __importDefault(require("@steroidsjs/core/hooks/useBem"));
42
+ var content_1 = require("@steroidsjs/core/ui/content");
43
+ var TimePanelView_1 = __importDefault(require("../TimeField/TimePanelView"));
44
+ function TimeRangeFieldView(props) {
45
+ var bem = (0, useBem_1["default"])('TimeRangeFieldView');
46
+ var hasValue = props.inputPropsFrom.value || props.inputPropsTo.value;
47
+ var renderTimeRange = (0, react_1.useCallback)(function () { return (react_1["default"].createElement("div", { className: bem.element('panel-container') },
48
+ react_1["default"].createElement(TimePanelView_1["default"], __assign({}, props.timePanelFromViewProps)),
49
+ react_1["default"].createElement(TimePanelView_1["default"], __assign({}, props.timePanelToViewProps)))); }, [bem, props.timePanelFromViewProps, props.timePanelToViewProps]);
50
+ return (react_1["default"].createElement(content_1.DropDown, { position: "bottomLeft", content: renderTimeRange, onClose: props.onClose, visible: props.isOpened, className: bem.element('dropdown'), hasArrow: false },
51
+ react_1["default"].createElement("div", { className: bem(bem.block({
52
+ disabled: props.disabled,
53
+ size: props.size,
54
+ 'is-invalid': !!props.errors
55
+ }), props.className), style: props.style },
56
+ react_1["default"].createElement("div", { className: bem.element('body') },
57
+ react_1["default"].createElement("input", __assign({}, props.inputPropsFrom, { className: bem(bem.element('input')), onChange: function (e) { return props.inputPropsFrom.onChange(e.target.value); } })),
58
+ react_1["default"].createElement("input", __assign({}, props.inputPropsTo, { className: bem.element('input'), onChange: function (e) { return props.inputPropsTo.onChange(e.target.value); } })),
59
+ react_1["default"].createElement("div", { className: bem.element('icon-container') },
60
+ props.icon && !hasValue && (react_1["default"].createElement(content_1.Icon, { className: bem.element('date-icon'), name: typeof props.icon === 'string' ? props.icon : 'calendar_range', tabIndex: -1 })),
61
+ props.showRemove && hasValue && (react_1["default"].createElement(content_1.Icon, { className: bem.element('close-icon'), onClick: function (e) {
62
+ e.preventDefault();
63
+ props.onClear();
64
+ }, name: 'cross_8x8' }))),
65
+ react_1["default"].createElement("span", { className: bem.element('effect') })))));
66
+ }
67
+ exports["default"] = TimeRangeFieldView;
@@ -0,0 +1,81 @@
1
+ @use "sass:map";
2
+ @use "../../scss/variables";
3
+ @use '../../scss/mixins';
4
+
5
+ .TimeRangeFieldView {
6
+ $root: &;
7
+
8
+ @include mixins.icon-container($root);
9
+
10
+ @include mixins.date-range-body($root);
11
+
12
+ &__body {
13
+ > * {
14
+ &:nth-child(1) {
15
+ width: 140px;
16
+ }
17
+ }
18
+ }
19
+
20
+ &_size {
21
+ @each $size, $size-map in mixins.$date-sizes {
22
+ &_#{$size} {
23
+ #{$root}__body {
24
+ #{$root}__input {
25
+ &:nth-child(1) {
26
+ width: calc(map.get($size-map, first-input-width) + 60px);
27
+ }
28
+ }
29
+ }
30
+ }
31
+ }
32
+ }
33
+
34
+ @include mixins.date-range-input();
35
+
36
+ @include mixins.date-range-sizes($root);
37
+
38
+ @include mixins.date-range-effects($root);
39
+
40
+ @include mixins.date-time-panel($root);
41
+
42
+ &__dropdown {
43
+ background-color: variables.$element-background-color;
44
+
45
+ display: flex;
46
+ }
47
+
48
+ &__panel-container {
49
+ display: flex;
50
+ flex-flow: row nowrap;
51
+ column-gap: 47px;
52
+
53
+ .TimePanelView__footer {
54
+ padding: 0;
55
+ padding-top: 10px;
56
+ display: flex;
57
+ flex-flow: row nowrap;
58
+ column-gap: 10px;
59
+ }
60
+
61
+ .TimePanelView:nth-child(1) {
62
+ position: relative;
63
+
64
+ &::before {
65
+ content: "";
66
+ position: absolute;
67
+ display: block;
68
+ top: 0;
69
+ right: -23px;
70
+ transform: translateX(-50%);
71
+ height: 100%;
72
+ width: 1px;
73
+ background-color: mixins.$date-range-separator-color;
74
+ }
75
+ }
76
+
77
+ .TimePanelView__button_ok {
78
+ display: none;
79
+ }
80
+ }
81
+ }
@@ -0,0 +1,2 @@
1
+ declare const _default: (customIcons: Record<string, any>) => {};
2
+ export default _default;
package/icons/index.js ADDED
@@ -0,0 +1,110 @@
1
+ "use strict";
2
+ /* eslint-disable import/no-dynamic-require */
3
+ var __assign = (this && this.__assign) || function () {
4
+ __assign = Object.assign || function(t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
8
+ t[p] = s[p];
9
+ }
10
+ return t;
11
+ };
12
+ return __assign.apply(this, arguments);
13
+ };
14
+ exports.__esModule = true;
15
+ exports["default"] = (function (customIcons) {
16
+ // All icons
17
+ var icons = {};
18
+ var steroidsIcons = [
19
+ 'add',
20
+ 'add_square',
21
+ 'arrow_down_18x18',
22
+ 'arrow_down_24x24',
23
+ 'arrow_drop_down_10x10',
24
+ 'arrow_left_18x18',
25
+ 'arrow_left_24x24',
26
+ 'arrow_right_18x18',
27
+ 'arrow_right_24x24',
28
+ 'arrow_up_18x18',
29
+ 'arrow_up_24x24',
30
+ 'blank',
31
+ 'calendar_check',
32
+ 'chart',
33
+ 'checkmark_12x12',
34
+ 'checkmark_8x8',
35
+ 'circle_cross_12x12',
36
+ 'circle_cross_16x16',
37
+ 'circle_cross_18x18',
38
+ 'copy',
39
+ 'cross_12x12',
40
+ 'cross_8x8',
41
+ 'default_16x16',
42
+ 'default_24x24',
43
+ 'cut',
44
+ 'error_16x16',
45
+ 'error_24x24',
46
+ 'calendar_range',
47
+ 'double_arrow_down',
48
+ 'double_arrow_left',
49
+ 'double_arrow_right',
50
+ 'double_arrow_up',
51
+ 'doughnut_chart',
52
+ 'edit',
53
+ 'expand_down',
54
+ 'expand_left',
55
+ 'expand_left_double',
56
+ 'expand_right',
57
+ 'expand_right_double',
58
+ 'file_dock',
59
+ 'filter',
60
+ 'fluid',
61
+ 'folder',
62
+ 'group',
63
+ 'home',
64
+ 'img_box',
65
+ 'import',
66
+ 'info_16x16',
67
+ 'info_24x24',
68
+ 'loading_purple',
69
+ 'loading_default',
70
+ 'loading_icon_thick',
71
+ 'map',
72
+ 'menu_dots',
73
+ 'menu_left',
74
+ 'minis_sq',
75
+ 'paste',
76
+ 'pie_chart',
77
+ 'pin',
78
+ 'sad',
79
+ 'search',
80
+ 'setting_line',
81
+ 'share',
82
+ 'star',
83
+ 'success_16x16',
84
+ 'success_24x24',
85
+ 'support',
86
+ 'trash',
87
+ 'upload',
88
+ 'user',
89
+ 'view_hide',
90
+ 'warning_16x16',
91
+ 'warning_24x24',
92
+ 'clip',
93
+ 'view',
94
+ 'cross_4x4',
95
+ 'expand_up',
96
+ 'left_12x12',
97
+ 'cancel_ellips',
98
+ 'facebook',
99
+ 'instagram',
100
+ 'telegram',
101
+ 'vk',
102
+ 'whatsapp',
103
+ 'burger',
104
+ 'sort',
105
+ ];
106
+ steroidsIcons.forEach(function (iconName) {
107
+ icons[iconName] = require("./svgs/".concat(iconName, ".svg"));
108
+ });
109
+ return __assign(__assign({}, icons), customIcons);
110
+ });
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 6L12 18" stroke="#323232" stroke-linecap="round"/>
3
+ <path d="M18 12L6 12" stroke="#323232" stroke-linecap="round"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.5 11C3.5 9.10025 3.50106 7.72573 3.64199 6.67754C3.78098 5.64373 4.04772 5.00253 4.52513 4.52513C5.00253 4.04772 5.64373 3.78098 6.67754 3.64199C7.72573 3.50106 9.10025 3.5 11 3.5H13C14.8998 3.5 16.2743 3.50106 17.3225 3.64199C18.3563 3.78098 18.9975 4.04772 19.4749 4.52513C19.9523 5.00253 20.219 5.64373 20.358 6.67754C20.4989 7.72573 20.5 9.10025 20.5 11V13C20.5 14.8998 20.4989 16.2743 20.358 17.3225C20.219 18.3563 19.9523 18.9975 19.4749 19.4749C18.9975 19.9523 18.3563 20.219 17.3225 20.358C16.2743 20.4989 14.8998 20.5 13 20.5H11C9.10025 20.5 7.72573 20.4989 6.67754 20.358C5.64373 20.219 5.00253 19.9523 4.52513 19.4749C4.04772 18.9975 3.78098 18.3563 3.64199 17.3225C3.50106 16.2743 3.5 14.8998 3.5 13V11Z" stroke="#323232"/>
3
+ <path d="M12 8L12 16" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M16 12L8 12" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="3" y="3.86768" width="18" height="18" rx="6" fill="white"/>
3
+ <path d="M8 10.8677L12 14.8677L16 10.8677" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect y="0.867676" width="24" height="24" rx="8" fill="white"/>
3
+ <path d="M8 10.8677L12 14.8677L16 10.8677" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.2318 14.0781L8.36682 10.6402C7.82405 9.98886 8.2872 9 9.13504 9L14.865 9C15.7128 9 16.176 9.98886 15.6332 10.6402L12.7682 14.0781C12.3684 14.5579 11.6316 14.5579 11.2318 14.0781Z" fill="#323232"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="3" y="3.86768" width="18" height="18" rx="6" fill="white"/>
3
+ <path d="M14 8.86768L10 12.8677L14 16.8677" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect y="0.867676" width="24" height="24" rx="8" fill="white"/>
3
+ <path d="M14 8.86768L10 12.8677L14 16.8677" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="3" y="3.86768" width="18" height="18" rx="6" fill="white"/>
3
+ <path d="M10 16.8677L14 12.8677L10 8.86768" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+
3
+ <rect y="0.867676" width="24" height="24" rx="8" fill="white"/>
4
+ <path d="M10 16.8677L14 12.8677L10 8.86768" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="3" y="3.86768" width="18" height="18" rx="6" fill="white"/>
3
+ <path d="M16 14.8677L12 10.8677L8 14.8677" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect y="0.867676" width="24" height="24" rx="8" fill="white"/>
3
+ <path d="M16 14.8677L12 10.8677L8 14.8677" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.1716 21H9C7.11438 21 6.17157 21 5.58579 20.4142C5 19.8284 5 18.8856 5 17V7C5 5.11438 5 4.17157 5.58579 3.58579C6.17157 3 7.11438 3 9 3H15C16.8856 3 17.8284 3 18.4142 3.58579C19 4.17157 19 5.11438 19 7V14.1716C19 14.5803 19 14.7847 18.9239 14.9685C18.8478 15.1522 18.7032 15.2968 18.4142 15.5858L13.5858 20.4142C13.2968 20.7032 13.1522 20.8478 12.9685 20.9239C12.7847 21 12.5803 21 12.1716 21Z" stroke="#323232"/>
3
+ <path d="M12 21V16.3333C12 15.2334 12 14.6834 12.3417 14.3417C12.6834 14 13.2334 14 14.3333 14H19" stroke="#323232"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5 7.44922H19" stroke="#323232" stroke-linecap="round"/>
3
+ <path d="M5 12.4492H15" stroke="#323232" stroke-linecap="round"/>
4
+ <path d="M5 17.4492H11" stroke="#323232" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.5 9.5V8.7C19.5 7.57989 19.5 7.01984 19.282 6.59202C19.0903 6.21569 18.7843 5.90973 18.408 5.71799C17.9802 5.5 17.4201 5.5 16.3 5.5H7.7C6.5799 5.5 6.01984 5.5 5.59202 5.71799C5.21569 5.90973 4.90973 6.21569 4.71799 6.59202C4.5 7.01984 4.5 7.57989 4.5 8.7V9.5M19.5 9.5V16.3C19.5 17.4201 19.5 17.9802 19.282 18.408C19.0903 18.7843 18.7843 19.0903 18.408 19.282C17.9802 19.5 17.4201 19.5 16.3 19.5H7.7C6.57989 19.5 6.01984 19.5 5.59202 19.282C5.21569 19.0903 4.90973 18.7843 4.71799 18.408C4.5 17.9802 4.5 17.4201 4.5 16.3V9.5M19.5 9.5H4.5" stroke="#323232"/>
3
+ <path d="M8.5 3.5L8.5 7.5M15.5 3.5L15.5 7.5" stroke="#323232" stroke-linecap="round"/>
4
+ <path d="M9 15.6364L10.8462 17L15 12" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.5 9.5V8.7C19.5 7.57989 19.5 7.01984 19.282 6.59202C19.0903 6.21569 18.7843 5.90973 18.408 5.71799C17.9802 5.5 17.4201 5.5 16.3 5.5H7.7C6.5799 5.5 6.01984 5.5 5.59202 5.71799C5.21569 5.90973 4.90973 6.21569 4.71799 6.59202C4.5 7.01984 4.5 7.57989 4.5 8.7V9.5M19.5 9.5V16.3C19.5 17.4201 19.5 17.9802 19.282 18.408C19.0903 18.7843 18.7843 19.0903 18.408 19.282C17.9802 19.5 17.4201 19.5 16.3 19.5H7.7C6.57989 19.5 6.01984 19.5 5.59202 19.282C5.21569 19.0903 4.90973 18.7843 4.71799 18.408C4.5 17.9802 4.5 17.4201 4.5 16.3V9.5M19.5 9.5H4.5" stroke="#323232"/>
3
+ <path d="M8.5 3.5L8.5 7.5M15.5 3.5L15.5 7.5" stroke="#323232" stroke-linecap="round"/>
4
+ <path d="M8 12.5H10" stroke="#323232" stroke-linecap="round"/>
5
+ <path d="M14 12.5H16" stroke="#323232" stroke-linecap="round"/>
6
+ <path d="M8 16.5H10" stroke="#323232" stroke-linecap="round"/>
7
+ <path d="M14 16.5H16" stroke="#323232" stroke-linecap="round"/>
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="12" cy="12" r="9" stroke="#323232"/>
3
+ <path d="M18 18L6 6" stroke="#323232"/>
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8 10L8 16" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M12 12V16" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M16 8V16" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <rect x="3" y="4" width="18" height="16" rx="2" stroke="#323232"/>
6
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="3" y="3.86768" width="18" height="18" rx="9" fill="white"/>
3
+ <path d="M15 10.8677L10.875 14.8677L9 13.0495" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="6" y="6.86768" width="12" height="12" rx="6" fill="white"/>
3
+ <path d="M15 10.8677L10.875 14.8677L9 13.0495" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="6" y="6.86768" width="12" height="12" rx="6" fill="white"/>
3
+ <path d="M10 10.8677L14 14.8533M10 14.8677L14 10.8821" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="4.5" y="4" width="16" height="16" rx="8" fill="#323232"/>
3
+ <path d="M9.5 9L15.5 14.9784M9.5 15L15.5 9.02161" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="3" y="3.86768" width="18" height="18" rx="9" fill="white"/>
3
+ <path d="M9 9.86768L15 15.8461M9 15.8677L15 9.88928" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.88872 14.0017C8.88872 14.0017 13.832 9.12047 14.8208 8.09069C15.8096 7.06091 16.7991 8.09069 16.7991 8.09069C16.7991 8.09069 17.7872 9.12063 16.7984 10.1505C15.8096 11.1803 9.03457 18.2456 9.03457 18.2456C7.86986 19.418 6.09749 19.5617 4.93279 18.3894C3.76809 17.2176 3.65356 15.4415 4.81826 14.2697L12.8439 6.03086C14.4744 4.38971 17.1486 4.38982 18.7767 6.03097C20.4084 7.67271 20.4072 10.569 18.7767 12.2101L12.8439 18.2456" stroke="#323232" stroke-linecap="round"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.78125 4.48496C4.78125 3.64488 4.78125 3.22484 4.94474 2.90398C5.08855 2.62173 5.31802 2.39226 5.60026 2.24845C5.92113 2.08496 6.34117 2.08496 7.18125 2.08496H8.74178C9.09734 2.08496 9.27513 2.08496 9.44302 2.12407C9.5919 2.15875 9.73461 2.21598 9.86619 2.29379C10.0146 2.38153 10.1431 2.50438 10.4001 2.75007L12.0396 4.31721C12.3131 4.5786 12.4498 4.70929 12.5477 4.86353C12.6345 5.00025 12.6985 5.15013 12.7374 5.30734C12.7813 5.48468 12.7813 5.67382 12.7813 6.05211V9.68496C12.7813 10.525 12.7813 10.9451 12.6178 11.2659C12.474 11.5482 12.2445 11.7777 11.9622 11.9215C11.6414 12.085 11.2213 12.085 10.3813 12.085H7.18125C6.34117 12.085 5.92113 12.085 5.60026 11.9215C5.31802 11.7777 5.08855 11.5482 4.94474 11.2659C4.78125 10.9451 4.78125 10.525 4.78125 9.68496V4.48496Z" stroke="#323232"/>
3
+ <path d="M2.94922 3.91504V9.91504C2.94922 11.3152 2.94922 12.0152 3.2217 12.55C3.46139 13.0204 3.84384 13.4029 4.31424 13.6426C4.84902 13.915 5.54909 13.915 6.94922 13.915H10.9492" stroke="#323232" stroke-linecap="round"/>
4
+ <path d="M9.05078 2.08496V3.68496C9.05078 4.52504 9.05078 4.94508 9.21427 5.26595C9.35808 5.54819 9.58755 5.77766 9.8698 5.92147C10.1907 6.08496 10.6107 6.08496 11.4508 6.08496H13.0508" stroke="#323232"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M18 6L6 18" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M6 6L18 18" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.28906 6.5L10.2891 10.4856M6.28906 10.5L10.2891 6.51441" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16 8L8 16" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M8 8L16 16" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.744 10.8572C5.84 11.0477 5.84 11.2382 5.84 11.4287C5.84 12.4763 4.976 13.3334 3.92 13.3334C2.864 13.3334 2 12.4763 2 11.4287C2 10.381 2.864 9.52389 3.92 9.52389C4.112 9.52389 4.208 9.52389 4.304 9.61913M7.184 9.42865L11.216 13.3334H13.904L5.744 5.23818C5.84 5.0477 5.84 4.95246 5.84 4.76199C5.84 3.71437 4.976 2.85722 3.92 2.85722C2.864 2.85722 2 3.71437 2 4.76199C2 5.80961 2.864 6.66675 3.92 6.66675C4.112 6.66675 4.304 6.66675 4.4 6.57151L5.84 8.09532M7.184 9.42865L5.84 8.09532M7.184 9.42865L5.168 10.0953L5.84 8.09532M8.144 5.71437L11.312 2.66675H14L9.584 7.14294" stroke="#323232" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.5 9.94916V9.14916C19.5 8.02905 19.5 7.469 19.282 7.04118C19.0903 6.66485 18.7843 6.35889 18.408 6.16714C17.9802 5.94916 17.4201 5.94916 16.3 5.94916H7.7C6.5799 5.94916 6.01984 5.94916 5.59202 6.16714C5.21569 6.35889 4.90973 6.66485 4.71799 7.04118C4.5 7.469 4.5 8.02905 4.5 9.14916V9.94916M19.5 9.94916V16.7492C19.5 17.8693 19.5 18.4293 19.282 18.8571C19.0903 19.2335 18.7843 19.5394 18.408 19.7312C17.9802 19.9492 17.4201 19.9492 16.3 19.9492H7.7C6.57989 19.9492 6.01984 19.9492 5.59202 19.7312C5.21569 19.5394 4.90973 19.2335 4.71799 18.8571C4.5 18.4293 4.5 17.8693 4.5 16.7492V9.94916M19.5 9.94916H4.5" stroke="white"/>
3
+ <path d="M8.5 3.94916L8.5 7.94916M15.5 3.94916L15.5 7.94916" stroke="white" stroke-linecap="round"/>
4
+ <path d="M8 12.9492H10" stroke="white" stroke-linecap="round"/>
5
+ <path d="M14 12.9492H16" stroke="white" stroke-linecap="round"/>
6
+ <path d="M8 16.9492H10" stroke="white" stroke-linecap="round"/>
7
+ <path d="M14 16.9492H16" stroke="white" stroke-linecap="round"/>
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="12" cy="12.8677" r="8" fill="#CBD5DB"/>
3
+ <path d="M14.2747 10.4196H14.2253M15.7582 10.4196L16.5 10.7657L15.7582 11.1119M13.4341 12.4965C13.4341 13.3371 12.7912 13.98 11.9505 13.98C11.1099 13.98 8.83516 13.98 7.5 13.98M13.9286 8.93604C14.8681 8.93604 15.6593 9.72724 15.6593 10.7163C15.6593 11.2602 15.4121 11.8042 15.0165 12.1009C15.4121 12.5954 15.6593 13.2382 15.6593 13.9305C15.6593 15.513 14.4231 16.7987 12.8901 16.7987C11.3571 16.7987 9.97253 15.3646 8.73626 13.9305C9.67582 12.5954 12.5934 8.93604 13.9286 8.93604Z" stroke="white" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_413_9689)">
3
+ <circle cx="12" cy="12.8677" r="12" fill="#CBD5DB"/>
4
+ <path d="M15.033 9.60351H14.967M17.011 9.60351L18 10.065L17.011 10.5266M13.9121 12.3727C13.9121 13.4936 13.0549 14.3508 11.9341 14.3508C10.8132 14.3508 7.78022 14.3508 6 14.3508M14.5714 7.62549C15.8242 7.62549 16.8791 8.68043 16.8791 9.99911C16.8791 10.7244 16.5494 11.4497 16.022 11.8453C16.5494 12.5046 16.8791 13.3618 16.8791 14.2848C16.8791 16.3947 15.2308 18.109 13.1868 18.109C11.1429 18.109 9.2967 16.1969 7.64835 14.2848C8.9011 12.5046 12.7912 7.62549 14.5714 7.62549Z" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_413_9689">
8
+ <rect width="24" height="24" fill="white" transform="translate(0 0.867676)"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>