@steroidsjs/bootstrap 3.0.0-beta.8 → 3.0.0-beta.81

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 (330) 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 +252 -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 +65 -20
  10. package/content/Avatar/AvatarView.js +2 -3
  11. package/content/Avatar/AvatarView.scss +32 -39
  12. package/content/Badge/BadgeView.d.ts +2 -0
  13. package/content/Badge/BadgeView.js +24 -0
  14. package/content/Badge/BadgeView.scss +139 -0
  15. package/content/Calendar/CalendarView.js +1 -1
  16. package/content/Calendar/CalendarView.scss +244 -161
  17. package/content/Calendar/CaptionElement.js +23 -15
  18. package/content/Calendar/CaptionElement.scss +164 -106
  19. package/content/Card/CardView.js +37 -14
  20. package/content/Card/CardView.scss +137 -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 +72 -52
  25. package/content/DropDown/DropDownView.d.ts +0 -1
  26. package/content/DropDown/DropDownView.js +7 -4
  27. package/content/DropDown/DropDownView.scss +206 -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 +63 -0
  34. package/content/Menu/MenuView.d.ts +2 -0
  35. package/content/Menu/MenuView.js +30 -0
  36. package/content/Menu/MenuView.scss +43 -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 +196 -142
  43. package/form/Button/ButtonView.d.ts +1 -2
  44. package/form/Button/ButtonView.js +13 -9
  45. package/form/Button/ButtonView.scss +174 -68
  46. package/form/CheckboxField/CheckboxFieldView.d.ts +1 -2
  47. package/form/CheckboxField/CheckboxFieldView.js +6 -4
  48. package/form/CheckboxField/CheckboxFieldView.scss +195 -36
  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 +12 -71
  54. package/form/DateRangeField/DateRangeFieldView.js +10 -13
  55. package/form/DateRangeField/DateRangeFieldView.scss +32 -77
  56. package/form/DateTimeField/DateTimeFieldView.d.ts +1 -2
  57. package/form/DateTimeField/DateTimeFieldView.js +6 -6
  58. package/form/DateTimeField/DateTimeFieldView.scss +10 -107
  59. package/form/DateTimeRangeField/DateTimeRangeFieldView.js +10 -8
  60. package/form/DateTimeRangeField/DateTimeRangeFieldView.scss +28 -88
  61. package/form/DropDownField/DropDownFieldView.js +35 -47
  62. package/form/DropDownField/DropDownFieldView.scss +381 -182
  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 +218 -0
  68. package/form/FieldLayout/FieldLayoutView.d.ts +1 -2
  69. package/form/FieldLayout/FieldLayoutView.js +13 -9
  70. package/form/FieldLayout/FieldLayoutView.scss +114 -19
  71. package/form/FieldList/FieldListItemView.js +6 -4
  72. package/form/FieldList/FieldListItemView.scss +17 -39
  73. package/form/FieldList/FieldListView.js +9 -8
  74. package/form/FieldList/FieldListView.scss +72 -24
  75. package/form/FieldSet/FieldSetView.js +4 -2
  76. package/form/FieldSet/FieldSetView.scss +39 -0
  77. package/form/FileField/FileFieldItemView.d.ts +1 -2
  78. package/form/FileField/FileFieldItemView.js +31 -6
  79. package/form/FileField/FileFieldItemView.scss +254 -13
  80. package/form/FileField/FileFieldView.d.ts +1 -2
  81. package/form/FileField/FileFieldView.js +6 -8
  82. package/form/FileField/FileFieldView.scss +43 -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 +265 -99
  92. package/form/NumberField/NumberFieldView.d.ts +1 -2
  93. package/form/NumberField/NumberFieldView.js +19 -13
  94. package/form/NumberField/NumberFieldView.scss +195 -89
  95. package/form/PasswordField/PasswordFieldView.d.ts +1 -2
  96. package/form/PasswordField/PasswordFieldView.js +11 -9
  97. package/form/PasswordField/PasswordFieldView.scss +236 -63
  98. package/form/RadioField/RadioFieldView.d.ts +2 -0
  99. package/form/RadioField/RadioFieldView.js +57 -0
  100. package/form/RadioField/RadioFieldView.scss +226 -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 +115 -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 +336 -299
  112. package/form/SwitcherField/SwitcherFieldView.d.ts +1 -2
  113. package/form/SwitcherField/SwitcherFieldView.js +12 -7
  114. package/form/SwitcherField/SwitcherFieldView.scss +188 -1
  115. package/form/TextField/TextFieldView.d.ts +1 -2
  116. package/form/TextField/TextFieldView.js +10 -2
  117. package/form/TextField/TextFieldView.scss +144 -2
  118. package/form/TimeField/TimeFieldView.d.ts +1 -2
  119. package/form/TimeField/TimeFieldView.js +16 -14
  120. package/form/TimeField/TimeFieldView.scss +19 -68
  121. package/form/TimeField/TimePanelView.scss +62 -68
  122. package/form/TimeRangeField/TimeRangeFieldView.d.ts +2 -0
  123. package/form/TimeRangeField/TimeRangeFieldView.js +67 -0
  124. package/form/TimeRangeField/TimeRangeFieldView.scss +77 -0
  125. package/icons/index.d.ts +2 -0
  126. package/icons/index.js +103 -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 +4 -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/calendar_check.svg +5 -0
  140. package/icons/svgs/calendar_range.svg +8 -0
  141. package/icons/svgs/cancel_ellips.svg +4 -0
  142. package/icons/svgs/chart.svg +6 -0
  143. package/icons/svgs/checkmark_12x12.svg +4 -0
  144. package/icons/svgs/checkmark_8x8.svg +4 -0
  145. package/icons/svgs/circle_cross_12x12.svg +4 -0
  146. package/icons/svgs/circle_cross_16x16.svg +4 -0
  147. package/icons/svgs/circle_cross_18x18.svg +4 -0
  148. package/icons/svgs/clip.svg +3 -0
  149. package/icons/svgs/copy.svg +5 -0
  150. package/icons/svgs/cross_12x12.svg +4 -0
  151. package/icons/svgs/cross_4x4.svg +3 -0
  152. package/icons/svgs/cross_8x8.svg +4 -0
  153. package/icons/svgs/cut.svg +3 -0
  154. package/icons/svgs/date_range.svg +8 -0
  155. package/icons/svgs/default_16x16.svg +4 -0
  156. package/icons/svgs/default_24x24.svg +11 -0
  157. package/icons/svgs/double_arrow_down.svg +5 -0
  158. package/icons/svgs/double_arrow_left.svg +5 -0
  159. package/icons/svgs/double_arrow_right.svg +5 -0
  160. package/icons/svgs/double_arrow_up.svg +5 -0
  161. package/icons/svgs/doughnut_chart.svg +5 -0
  162. package/icons/svgs/edit.svg +4 -0
  163. package/icons/svgs/error_16x16.svg +5 -0
  164. package/icons/svgs/error_24x24.svg +12 -0
  165. package/icons/svgs/expand_down.svg +3 -0
  166. package/icons/svgs/expand_left.svg +3 -0
  167. package/icons/svgs/expand_left_double.svg +4 -0
  168. package/icons/svgs/expand_right.svg +3 -0
  169. package/icons/svgs/expand_right_double.svg +4 -0
  170. package/icons/svgs/expand_up.svg +3 -0
  171. package/icons/svgs/file_dock.svg +6 -0
  172. package/icons/svgs/filter.svg +3 -0
  173. package/icons/svgs/fluid.svg +4 -0
  174. package/icons/svgs/folder.svg +3 -0
  175. package/icons/svgs/group.svg +8 -0
  176. package/icons/svgs/home.svg +4 -0
  177. package/icons/svgs/img_box.svg +5 -0
  178. package/icons/svgs/import.svg +4 -0
  179. package/icons/svgs/info_16x16.svg +5 -0
  180. package/icons/svgs/info_24x24.svg +12 -0
  181. package/icons/svgs/left_12x12.svg +3 -0
  182. package/icons/svgs/loading_default.svg +3 -0
  183. package/icons/svgs/loading_icon_thick.svg +3 -0
  184. package/icons/svgs/loading_purple.svg +9 -0
  185. package/icons/svgs/map.svg +7 -0
  186. package/icons/svgs/menu_dots.svg +5 -0
  187. package/icons/svgs/menu_left.svg +5 -0
  188. package/icons/svgs/minis_sq.svg +4 -0
  189. package/icons/svgs/paste.svg +8 -0
  190. package/icons/svgs/pie_chart.svg +5 -0
  191. package/icons/svgs/pin.svg +4 -0
  192. package/icons/svgs/sad.svg +6 -0
  193. package/icons/svgs/search.svg +4 -0
  194. package/icons/svgs/setting_line.svg +3 -0
  195. package/icons/svgs/share.svg +7 -0
  196. package/icons/svgs/star.svg +3 -0
  197. package/icons/svgs/success_16x16.svg +4 -0
  198. package/icons/svgs/success_24x24.svg +11 -0
  199. package/icons/svgs/support.svg +3 -0
  200. package/icons/svgs/trash.svg +6 -0
  201. package/icons/svgs/upload.svg +4 -0
  202. package/icons/svgs/user.svg +4 -0
  203. package/icons/svgs/view.svg +4 -0
  204. package/icons/svgs/view_hide.svg +5 -0
  205. package/icons/svgs/warning_16x16.svg +5 -0
  206. package/icons/svgs/warning_24x24.svg +12 -0
  207. package/index.d.ts +38 -2
  208. package/index.js +40 -4
  209. package/index.scss +24 -3
  210. package/layout/Header/HeaderView.js +1 -1
  211. package/layout/Header/HeaderView.scss +10 -5
  212. package/layout/Loader/LoaderView.d.ts +2 -2
  213. package/layout/Loader/LoaderView.js +6 -2
  214. package/layout/Loader/LoaderView.scss +67 -22
  215. package/layout/Notifications/NotificationsItemView.d.ts +1 -2
  216. package/layout/Notifications/NotificationsItemView.js +9 -8
  217. package/layout/Notifications/NotificationsItemView.scss +1 -39
  218. package/layout/Notifications/NotificationsView.d.ts +1 -2
  219. package/layout/Notifications/NotificationsView.scss +3 -0
  220. package/layout/ProgressBar/CircleProgressBarView.d.ts +1 -2
  221. package/layout/ProgressBar/LineProgressBarView.d.ts +1 -2
  222. package/layout/ProgressBar/LineProgressBarView.scss +1 -1
  223. package/layout/Tooltip/TooltipView.d.ts +1 -2
  224. package/layout/Tooltip/TooltipView.js +6 -6
  225. package/layout/Tooltip/TooltipView.scss +45 -37
  226. package/list/CheckboxColumn/CheckboxColumnView.d.ts +1 -2
  227. package/list/CheckboxColumn/CheckboxColumnView.js +2 -1
  228. package/list/ControlsColumnView/ControlsColumnView.d.ts +1 -2
  229. package/list/ControlsColumnView/ControlsColumnView.scss +7 -1
  230. package/list/Empty/EmptyView.js +1 -1
  231. package/list/Empty/EmptyView.scss +4 -1
  232. package/list/FlexGrid/FlexGridView.d.ts +2 -0
  233. package/list/FlexGrid/FlexGridView.js +71 -0
  234. package/list/FlexGrid/FlexGridView.scss +57 -0
  235. package/list/Grid/GridView.js +10 -4
  236. package/list/Grid/GridView.scss +151 -37
  237. package/list/Grid/views/ContentColumnView/ContentColumnView.d.ts +2 -0
  238. package/list/Grid/views/ContentColumnView/ContentColumnView.js +50 -0
  239. package/list/Grid/views/ContentColumnView/ContentColumnView.scss +86 -0
  240. package/list/Grid/views/ContentColumnView/index.d.ts +2 -0
  241. package/list/Grid/views/ContentColumnView/index.js +7 -0
  242. package/list/Grid/views/DiagramColumnView/DiagramColumnView.d.ts +3 -0
  243. package/list/Grid/views/DiagramColumnView/DiagramColumnView.js +60 -0
  244. package/list/Grid/views/DiagramColumnView/DiagramColumnView.scss +170 -0
  245. package/list/Grid/views/DiagramColumnView/index.d.ts +2 -0
  246. package/list/Grid/views/DiagramColumnView/index.js +7 -0
  247. package/list/List/ListItemView.d.ts +1 -2
  248. package/list/List/ListView.js +5 -7
  249. package/list/List/ListView.scss +26 -1
  250. package/list/Pagination/PaginationButtonView.js +34 -5
  251. package/list/Pagination/PaginationButtonView.scss +263 -1
  252. package/list/Pagination/PaginationMoreView.js +1 -1
  253. package/list/Pagination/PaginationMoreView.scss +4 -1
  254. package/list/PaginationSize/PaginationSizeView.js +5 -5
  255. package/list/PaginationSize/PaginationSizeView.scss +0 -8
  256. package/modal/Modal/ModalView.d.ts +1 -2
  257. package/modal/Modal/ModalView.js +5 -8
  258. package/modal/Modal/ModalView.scss +138 -93
  259. package/modal/TwoFactorModal/TwoFactorModalView.d.ts +1 -3
  260. package/modal/TwoFactorModal/TwoFactorModalView.js +0 -1
  261. package/modal/TwoFactorModal/TwoFactorModalView.scss +0 -2
  262. package/nav/Breadcrubms/BreadcrumbsView.js +9 -1
  263. package/nav/Breadcrubms/BreadcrumbsView.scss +49 -0
  264. package/nav/ButtonGroup/ButtonGroupView.d.ts +2 -0
  265. package/nav/ButtonGroup/ButtonGroupView.js +33 -0
  266. package/nav/ButtonGroup/ButtonGroupView.scss +81 -0
  267. package/nav/Controls/ControlsView.d.ts +1 -2
  268. package/nav/Controls/ControlsView.scss +17 -3
  269. package/nav/Nav/NavBarView.d.ts +1 -2
  270. package/nav/Nav/NavBarView.js +9 -4
  271. package/nav/Nav/NavBarView.scss +32 -1
  272. package/nav/Nav/NavButtonView.d.ts +1 -2
  273. package/nav/Nav/NavButtonView.js +8 -2
  274. package/nav/Nav/NavButtonView.scss +6 -5
  275. package/nav/Nav/NavIconView.d.ts +1 -2
  276. package/nav/Nav/NavIconView.js +7 -2
  277. package/nav/Nav/NavIconView.scss +25 -6
  278. package/nav/Nav/NavLinkView.d.ts +1 -2
  279. package/nav/Nav/NavLinkView.js +8 -2
  280. package/nav/Nav/NavLinkView.scss +14 -5
  281. package/nav/Nav/NavListView.d.ts +1 -2
  282. package/nav/Nav/NavListView.js +11 -7
  283. package/nav/Nav/NavListView.scss +11 -10
  284. package/nav/Nav/NavTabsView.d.ts +1 -2
  285. package/nav/Nav/NavTabsView.js +9 -4
  286. package/nav/Nav/NavTabsView.scss +47 -1
  287. package/nav/Tree/TreeView.d.ts +1 -2
  288. package/nav/Tree/TreeView.scss +58 -51
  289. package/package.json +58 -56
  290. package/scss/animations/index.scss +1 -0
  291. package/scss/animations/loading.scss +13 -0
  292. package/scss/fonts.scss +6 -0
  293. package/scss/mixins/button.scss +80 -24
  294. package/scss/mixins/customMixins.scss +5 -0
  295. package/scss/mixins/date.scss +422 -0
  296. package/scss/mixins/index.scss +5 -1
  297. package/scss/mixins/navs.scss +39 -0
  298. package/scss/mixins/scroll.scss +31 -0
  299. package/scss/mixins/typography.scss +26 -0
  300. package/scss/normalize.scss +25 -0
  301. package/scss/variables/common/colors.scss +189 -82
  302. package/scss/variables/common/media.scss +3 -0
  303. package/scss/variables/common/typography.scss +96 -28
  304. package/scss/variables/common/variables.scss +1 -0
  305. package/scss/variables/components/calendar.scss +0 -1
  306. package/scss/variables/components/input.scss +7 -6
  307. package/scss/variables/index.scss +2 -2
  308. package/typography/Text/TextView.d.ts +3 -0
  309. package/typography/Text/TextView.js +46 -0
  310. package/typography/Text/TextView.scss +16 -0
  311. package/typography/Title/TitleView.d.ts +3 -0
  312. package/typography/Title/TitleView.js +50 -0
  313. package/typography/Title/TitleView.scss +16 -0
  314. package/utils/renderIcon.d.ts +9 -0
  315. package/utils/renderIcon.js +27 -0
  316. package/content/Collapse/CollapseItemView.d.ts +0 -2
  317. package/content/Collapse/CollapseItemView.scss +0 -88
  318. package/content/Collapse/CollapseView.d.ts +0 -2
  319. package/content/Collapse/CollapseView.scss +0 -15
  320. package/icons/close.svg +0 -3
  321. package/icons/default.svg +0 -11
  322. package/icons/error.svg +0 -12
  323. package/icons/fontawesome.d.ts +0 -2
  324. package/icons/fontawesome.js +0 -254
  325. package/icons/info.svg +0 -12
  326. package/icons/success.svg +0 -4
  327. package/icons/warning.svg +0 -12
  328. package/list/List/ListItemView.scss +0 -3
  329. package/scss/mixins/card.scss +0 -26
  330. package/scss/variables/components/card.scss +0 -20
@@ -1,85 +1,79 @@
1
1
  .TimePanelView {
2
+ font-weight: 500;
3
+ user-select: none;
2
4
 
3
- font-weight: 500;
4
- user-select: none;
5
+ &__header {
6
+ height: 45px;
7
+ display: flex;
8
+ align-items: center;
9
+ justify-content: center;
5
10
 
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
- }
21
-
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;
11
+ border-left: 1px solid $border-default;
12
+ border-bottom: 1px solid $border-default;
32
13
  }
33
- }
34
-
35
- &__cell {
36
- padding: 5px 20px;
37
- cursor: pointer;
38
14
 
39
- &_selected {
40
- background-color: $primary-light;
15
+ &__body {
16
+ display: flex;
17
+ flex-flow: row nowrap;
18
+ border-radius: $input-border-radius;
41
19
  }
42
20
 
43
- transition: background-color .1s ease-in;
44
- &:hover {
45
- background-color: $back-disabled;
21
+ &__column {
22
+ height: 220px;
23
+ overflow-y: auto;
24
+ list-style: none;
25
+ padding: 0;
26
+ margin: 0;
27
+ @include scrollWrapper(298px, 0, $scroll-thumb-color, $scroll-track-color);
46
28
  }
47
- }
48
29
 
49
- &__footer {
50
- display: flex;
51
- align-items: center;
52
- justify-content: space-between;
53
- padding: 10px;
30
+ &__cell {
31
+ padding: 5px 20px;
32
+ cursor: pointer;
54
33
 
55
- &_to-end {
56
- justify-content: flex-end;
57
- }
58
- }
59
-
60
- &__button {
61
- border: none;
34
+ &_selected {
35
+ background-color: $primary-light;
36
+ }
62
37
 
63
- &_now {
64
- color: $primary;
65
- background-color: unset;
66
-
67
- transition: color .1s ease-in;
68
- &:hover {
69
- color: $primary-dark;
70
- }
38
+ transition: background-color 0.1s ease-in;
39
+ &:hover {
40
+ background-color: $back-disabled;
41
+ }
71
42
  }
72
43
 
73
- &_ok {
74
- color: #fff;
75
- border-radius: 4px;
76
- background-color: $primary;
44
+ &__footer {
45
+ display: flex;
46
+ align-items: center;
47
+ justify-content: space-between;
48
+ padding: 10px;
77
49
 
78
- transition: background-color .1s ease-in;
79
- &:hover {
80
- background-color: $primary-dark;
81
- }
50
+ &_to-end {
51
+ justify-content: flex-end;
52
+ }
82
53
  }
83
- }
84
54
 
55
+ &__button {
56
+ border: none;
57
+
58
+ &_now {
59
+ color: $primary;
60
+ background-color: unset;
61
+
62
+ transition: color 0.1s ease-in;
63
+ &:hover {
64
+ color: $primary-dark;
65
+ }
66
+ }
67
+
68
+ &_ok {
69
+ color: #fff;
70
+ border-radius: 4px;
71
+ background-color: $primary;
72
+
73
+ transition: background-color 0.1s ease-in;
74
+ &:hover {
75
+ background-color: $primary-dark;
76
+ }
77
+ }
78
+ }
85
79
  }
@@ -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,77 @@
1
+ .TimeRangeFieldView {
2
+ $root: &;
3
+
4
+ @include icon-container($root);
5
+
6
+ @include date-range-body($root);
7
+
8
+ &__body {
9
+ > * {
10
+ &:nth-child(1) {
11
+ width: 140px;
12
+ }
13
+ }
14
+ }
15
+
16
+ &_size {
17
+ @each $size, $size-map in $date-sizes {
18
+ &_#{$size} {
19
+ #{$root}__body {
20
+ #{$root}__input {
21
+ &:nth-child(1) {
22
+ width: calc(map-get($size-map, first-input-width) + 60px);
23
+ }
24
+ }
25
+ }
26
+ }
27
+ }
28
+ }
29
+
30
+ @include date-range-input();
31
+
32
+ @include date-range-sizes($root);
33
+
34
+ @include date-range-effects($root);
35
+
36
+ @include date-time-panel($root);
37
+
38
+ &__dropdown {
39
+ background-color: $element-background-color;
40
+
41
+ display: flex;
42
+ }
43
+
44
+ &__panel-container {
45
+ display: flex;
46
+ flex-flow: row nowrap;
47
+ column-gap: 47px;
48
+
49
+ .TimePanelView__footer {
50
+ padding: 0;
51
+ padding-top: 10px;
52
+ display: flex;
53
+ flex-flow: row nowrap;
54
+ column-gap: 10px;
55
+ }
56
+
57
+ .TimePanelView:nth-child(1) {
58
+ position: relative;
59
+
60
+ &::before {
61
+ content: "";
62
+ position: absolute;
63
+ display: block;
64
+ top: 0;
65
+ right: -23px;
66
+ transform: translateX(-50%);
67
+ height: 100%;
68
+ width: 1px;
69
+ background-color: $date-range-separator-color;
70
+ }
71
+ }
72
+
73
+ .TimePanelView__button_ok {
74
+ display: none;
75
+ }
76
+ }
77
+ }
@@ -0,0 +1,2 @@
1
+ declare const _default: (customIcons: Record<string, any>) => {};
2
+ export default _default;
package/icons/index.js ADDED
@@ -0,0 +1,103 @@
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
+ ];
99
+ steroidsIcons.forEach(function (iconName) {
100
+ icons[iconName] = require("./svgs/".concat(iconName, ".svg"));
101
+ });
102
+ return __assign(__assign({}, icons), customIcons);
103
+ });
@@ -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,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="M10 16.8677L14 12.8677L10 8.86768" 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="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="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>
@@ -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
+ <rect y="0.867676" width="24" height="24" rx="8" fill="white"/>
3
+ <path d="M16 12.8677L12 16.8677L8 12.8677" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M16 8.86768L12 12.8677L8 8.86768" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </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
+ <rect y="0.867676" width="24" height="24" rx="8" fill="white"/>
3
+ <path d="M12 16.8677L8 12.8677L12 8.86768" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M16 16.8677L12 12.8677L16 8.86768" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>