armtek-uikit-react 1.0.15 → 1.0.16

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 (307) hide show
  1. package/cjs/index.js +35 -0
  2. package/cjs/lib/const/styles.js +6 -0
  3. package/cjs/lib/helpers/helpers.js +56 -0
  4. package/cjs/lib/hooks/useClickOutside.js +22 -0
  5. package/cjs/lib/services/DateService.js +48 -0
  6. package/cjs/types/theme.js +3 -0
  7. package/cjs/ui/Adornment/Adornment.js +51 -0
  8. package/cjs/ui/Alert/Alert.js +50 -0
  9. package/cjs/ui/Avatar/Avatar.js +54 -0
  10. package/cjs/ui/Avatar/AvatarGroup.js +38 -0
  11. package/cjs/ui/Badge/Badge.js +38 -0
  12. package/cjs/ui/Button/index.js +47 -0
  13. package/cjs/ui/ButtonGroup/index.js +30 -0
  14. package/cjs/ui/ButtonIcon/index.js +25 -0
  15. package/cjs/ui/Card/Card.js +23 -0
  16. package/cjs/ui/Chip/Chip.js +45 -0
  17. package/cjs/ui/Form/Checkbox/Checkbox.js +57 -0
  18. package/cjs/ui/Form/Checkbox/Radio.js +25 -0
  19. package/cjs/ui/Form/DateField/DateField.js +70 -0
  20. package/cjs/ui/Form/DateField/TimeField.js +19 -0
  21. package/cjs/ui/Form/DatePicker/DatePicker.js +51 -0
  22. package/cjs/ui/Form/DatePicker/PeriodSelect.js +29 -0
  23. package/cjs/ui/Form/DatePicker/TimePicker.js +28 -0
  24. package/cjs/ui/Form/Interval/Interval.js +102 -0
  25. package/cjs/ui/Form/Interval/IntervalSlide.js +52 -0
  26. package/cjs/ui/Form/Password/Password.js +46 -0
  27. package/cjs/ui/Form/Period/Period.js +73 -0
  28. package/cjs/ui/Form/Rating/Rating.js +58 -0
  29. package/cjs/ui/Form/Select/Select.js +143 -0
  30. package/cjs/ui/Form/Switch/Switch.js +34 -0
  31. package/cjs/ui/Form/TextArea/TextArea.js +50 -0
  32. package/cjs/ui/Form/TextField/TextField.js +156 -0
  33. package/cjs/ui/HelperText/HelperText.js +32 -0
  34. package/cjs/ui/List/ListItem.js +64 -0
  35. package/cjs/ui/Loader/Loader.js +124 -0
  36. package/cjs/ui/Logo/Logo.js +106 -0
  37. package/cjs/ui/Slider/RcSlider.js +1 -0
  38. package/cjs/ui/Slider/Slider.js +39 -0
  39. package/cjs/ui/Status/Status.js +35 -0
  40. package/cjs/ui/Stepper/StepItem.js +60 -0
  41. package/cjs/ui/Stepper/StepItemIcon.js +44 -0
  42. package/cjs/ui/Stepper/Stepper.js +49 -0
  43. package/cjs/ui/Tooltip/Tooltip.js +36 -0
  44. package/dist/armtek-uikit-react-main.js +1357 -0
  45. package/dist/armtek-uikit-react-main.min.js +2 -0
  46. package/dist/armtek-uikit-react-main.min.js.LICENSE.txt +15 -0
  47. package/dist/css/main.css +19 -0
  48. package/esm/assets/Adornment.scss +18 -0
  49. package/esm/assets/Alert.scss +38 -0
  50. package/esm/assets/Avatar.scss +82 -0
  51. package/esm/assets/AvatarGroup.scss +48 -0
  52. package/esm/assets/Badge.scss +83 -0
  53. package/esm/assets/Button.scss +266 -0
  54. package/esm/assets/ButtonGroup.scss +12 -0
  55. package/esm/assets/ButtonIcon.scss +24 -0
  56. package/esm/assets/Card.scss +7 -0
  57. package/esm/assets/Checkbox.scss +297 -0
  58. package/esm/assets/Chip.scss +96 -0
  59. package/esm/assets/DatePicker.scss +7 -0
  60. package/esm/assets/HelperText.scss +10 -0
  61. package/esm/assets/Interval.scss +35 -0
  62. package/esm/assets/ListItem.scss +34 -0
  63. package/esm/assets/Loader.scss +37 -0
  64. package/esm/assets/Logo.scss +29 -0
  65. package/esm/assets/Period.scss +10 -0
  66. package/esm/assets/Rating.scss +19 -0
  67. package/esm/assets/Select.scss +26 -0
  68. package/esm/assets/Slider.scss +6 -0
  69. package/esm/assets/Status.scss +45 -0
  70. package/esm/assets/StepItem.scss +67 -0
  71. package/esm/assets/StepItemIcon.scss +47 -0
  72. package/esm/assets/Stepper.scss +34 -0
  73. package/esm/assets/Switch.scss +69 -0
  74. package/esm/assets/TextArea.scss +15 -0
  75. package/esm/assets/TextField.scss +160 -0
  76. package/esm/assets/Tooltip.scss +18 -0
  77. package/esm/assets/fonts.scss +2 -0
  78. package/esm/assets/global.css +72 -0
  79. package/esm/assets/styles.scss +31 -0
  80. package/esm/assets/variables.scss +67 -0
  81. package/esm/index.d.ts +29 -0
  82. package/esm/lib/const/styles.d.ts +1 -0
  83. package/esm/lib/helpers/helpers.d.ts +6 -0
  84. package/esm/lib/hooks/useClickOutside.d.ts +3 -0
  85. package/esm/lib/services/DateService.d.ts +12 -0
  86. package/esm/types/theme.d.ts +10 -0
  87. package/esm/ui/Adornment/Adornment.d.ts +7 -0
  88. package/esm/ui/Adornment/Adornment.module.scss +2 -0
  89. package/esm/ui/Alert/Alert.d.ts +10 -0
  90. package/esm/ui/Alert/Alert.module.scss +2 -0
  91. package/esm/ui/Avatar/Avatar.d.ts +13 -0
  92. package/esm/ui/Avatar/Avatar.module.scss +1 -0
  93. package/esm/ui/Avatar/AvatarGroup.d.ts +8 -0
  94. package/esm/ui/Avatar/AvatarGroup.module.scss +1 -0
  95. package/esm/ui/Badge/Badge.d.ts +11 -0
  96. package/esm/ui/Badge/Badge.module.scss +1 -0
  97. package/esm/ui/Button/Button.module.scss +1 -0
  98. package/esm/ui/Button/index.d.ts +15 -0
  99. package/esm/ui/ButtonGroup/ButtonGroup.module.scss +2 -0
  100. package/esm/ui/ButtonGroup/index.d.ts +6 -0
  101. package/esm/ui/ButtonIcon/ButtonIcon.module.scss +1 -0
  102. package/esm/ui/ButtonIcon/index.d.ts +3 -0
  103. package/esm/ui/Card/Card.d.ts +4 -0
  104. package/esm/ui/Card/Card.module.scss +1 -0
  105. package/esm/ui/Chip/Chip.d.ts +13 -0
  106. package/esm/ui/Chip/Chip.module.scss +1 -0
  107. package/esm/ui/Form/Checkbox/Checkbox.d.ts +12 -0
  108. package/esm/ui/Form/Checkbox/Checkbox.module.scss +1 -0
  109. package/esm/ui/Form/Checkbox/Radio.d.ts +3 -0
  110. package/esm/ui/Form/DateField/DateField.d.ts +26 -0
  111. package/esm/ui/Form/DateField/DateField.module.scss +1 -0
  112. package/esm/ui/Form/DateField/TimeField.d.ts +3 -0
  113. package/esm/ui/Form/DatePicker/DatePicker.d.ts +7 -0
  114. package/esm/ui/Form/DatePicker/DatePicker.module.scss +1 -0
  115. package/esm/ui/Form/DatePicker/PeriodSelect.d.ts +2 -0
  116. package/esm/ui/Form/DatePicker/TimePicker.d.ts +2 -0
  117. package/esm/ui/Form/DatePicker/styles.css +766 -0
  118. package/esm/ui/Form/Interval/Interval.d.ts +21 -0
  119. package/esm/ui/Form/Interval/Interval.module.scss +1 -0
  120. package/esm/ui/Form/Interval/IntervalSlide.d.ts +4 -0
  121. package/esm/ui/Form/Password/Password.d.ts +12 -0
  122. package/esm/ui/Form/Period/Period.d.ts +15 -0
  123. package/esm/ui/Form/Period/Period.module.scss +2 -0
  124. package/esm/ui/Form/Rating/Rating.d.ts +10 -0
  125. package/esm/ui/Form/Rating/Rating.module.scss +1 -0
  126. package/esm/ui/Form/Select/Select.d.ts +23 -0
  127. package/esm/ui/Form/Select/Select.module.scss +1 -0
  128. package/esm/ui/Form/Switch/Switch.d.ts +7 -0
  129. package/esm/ui/Form/Switch/Switch.module.scss +1 -0
  130. package/esm/ui/Form/TextArea/TextArea.d.ts +4 -0
  131. package/esm/ui/Form/TextArea/TextArea.module.scss +1 -0
  132. package/esm/ui/Form/TextField/TextField.d.ts +40 -0
  133. package/esm/ui/Form/TextField/TextField.module.scss +1 -0
  134. package/esm/ui/HelperText/HelperText.d.ts +6 -0
  135. package/esm/ui/HelperText/HelperText.module.scss +1 -0
  136. package/esm/ui/List/ListItem.d.ts +10 -0
  137. package/esm/ui/List/ListItem.module.scss +1 -0
  138. package/esm/ui/Loader/Loader.d.ts +6 -0
  139. package/esm/ui/Loader/Loader.module.scss +1 -0
  140. package/esm/ui/Logo/Logo.d.ts +12 -0
  141. package/esm/ui/Logo/Logo.module.scss +1 -0
  142. package/esm/ui/Slider/RcSlider.js +0 -0
  143. package/esm/ui/Slider/Slider.d.ts +8 -0
  144. package/esm/ui/Slider/Slider.module.scss +1 -0
  145. package/esm/ui/Slider/style.css +281 -0
  146. package/esm/ui/Status/Status.d.ts +10 -0
  147. package/esm/ui/Status/Status.module.scss +1 -0
  148. package/esm/ui/Stepper/StepItem.d.ts +14 -0
  149. package/esm/ui/Stepper/StepItem.module.scss +1 -0
  150. package/esm/ui/Stepper/StepItemIcon.d.ts +11 -0
  151. package/esm/ui/Stepper/StepItemIcon.module.scss +1 -0
  152. package/esm/ui/Stepper/Stepper.d.ts +11 -0
  153. package/esm/ui/Stepper/Stepper.module.scss +1 -0
  154. package/esm/ui/Tooltip/Tooltip.d.ts +7 -0
  155. package/esm/ui/Tooltip/Tooltip.module.scss +1 -0
  156. package/package.json +1 -25
  157. /package/{assets → cjs/assets}/Adornment.scss +0 -0
  158. /package/{assets → cjs/assets}/Alert.scss +0 -0
  159. /package/{assets → cjs/assets}/Avatar.scss +0 -0
  160. /package/{assets → cjs/assets}/AvatarGroup.scss +0 -0
  161. /package/{assets → cjs/assets}/Badge.scss +0 -0
  162. /package/{assets → cjs/assets}/Button.scss +0 -0
  163. /package/{assets → cjs/assets}/ButtonGroup.scss +0 -0
  164. /package/{assets → cjs/assets}/ButtonIcon.scss +0 -0
  165. /package/{assets → cjs/assets}/Card.scss +0 -0
  166. /package/{assets → cjs/assets}/Checkbox.scss +0 -0
  167. /package/{assets → cjs/assets}/Chip.scss +0 -0
  168. /package/{assets → cjs/assets}/DatePicker.scss +0 -0
  169. /package/{assets → cjs/assets}/HelperText.scss +0 -0
  170. /package/{assets → cjs/assets}/Interval.scss +0 -0
  171. /package/{assets → cjs/assets}/ListItem.scss +0 -0
  172. /package/{assets → cjs/assets}/Loader.scss +0 -0
  173. /package/{assets → cjs/assets}/Logo.scss +0 -0
  174. /package/{assets → cjs/assets}/Period.scss +0 -0
  175. /package/{assets → cjs/assets}/Rating.scss +0 -0
  176. /package/{assets → cjs/assets}/Select.scss +0 -0
  177. /package/{assets → cjs/assets}/Slider.scss +0 -0
  178. /package/{assets → cjs/assets}/Status.scss +0 -0
  179. /package/{assets → cjs/assets}/StepItem.scss +0 -0
  180. /package/{assets → cjs/assets}/StepItemIcon.scss +0 -0
  181. /package/{assets → cjs/assets}/Stepper.scss +0 -0
  182. /package/{assets → cjs/assets}/Switch.scss +0 -0
  183. /package/{assets → cjs/assets}/TextArea.scss +0 -0
  184. /package/{assets → cjs/assets}/TextField.scss +0 -0
  185. /package/{assets → cjs/assets}/Tooltip.scss +0 -0
  186. /package/{assets → cjs/assets}/fonts.scss +0 -0
  187. /package/{assets → cjs/assets}/global.css +0 -0
  188. /package/{assets → cjs/assets}/styles.scss +0 -0
  189. /package/{assets → cjs/assets}/variables.scss +0 -0
  190. /package/{types → cjs}/index.d.ts +0 -0
  191. /package/{types → cjs}/lib/const/styles.d.ts +0 -0
  192. /package/{types → cjs}/lib/helpers/helpers.d.ts +0 -0
  193. /package/{types → cjs}/lib/hooks/useClickOutside.d.ts +0 -0
  194. /package/{types → cjs}/lib/services/DateService.d.ts +0 -0
  195. /package/{types → cjs}/types/theme.d.ts +0 -0
  196. /package/{types → cjs}/ui/Adornment/Adornment.d.ts +0 -0
  197. /package/{ui → cjs/ui}/Adornment/Adornment.module.scss +0 -0
  198. /package/{types → cjs}/ui/Alert/Alert.d.ts +0 -0
  199. /package/{ui → cjs/ui}/Alert/Alert.module.scss +0 -0
  200. /package/{types → cjs}/ui/Avatar/Avatar.d.ts +0 -0
  201. /package/{ui → cjs/ui}/Avatar/Avatar.module.scss +0 -0
  202. /package/{types → cjs}/ui/Avatar/AvatarGroup.d.ts +0 -0
  203. /package/{ui → cjs/ui}/Avatar/AvatarGroup.module.scss +0 -0
  204. /package/{types → cjs}/ui/Badge/Badge.d.ts +0 -0
  205. /package/{ui → cjs/ui}/Badge/Badge.module.scss +0 -0
  206. /package/{ui → cjs/ui}/Button/Button.module.scss +0 -0
  207. /package/{types → cjs}/ui/Button/index.d.ts +0 -0
  208. /package/{ui → cjs/ui}/ButtonGroup/ButtonGroup.module.scss +0 -0
  209. /package/{types → cjs}/ui/ButtonGroup/index.d.ts +0 -0
  210. /package/{ui → cjs/ui}/ButtonIcon/ButtonIcon.module.scss +0 -0
  211. /package/{types → cjs}/ui/ButtonIcon/index.d.ts +0 -0
  212. /package/{types → cjs}/ui/Card/Card.d.ts +0 -0
  213. /package/{ui → cjs/ui}/Card/Card.module.scss +0 -0
  214. /package/{types → cjs}/ui/Chip/Chip.d.ts +0 -0
  215. /package/{ui → cjs/ui}/Chip/Chip.module.scss +0 -0
  216. /package/{types → cjs}/ui/Form/Checkbox/Checkbox.d.ts +0 -0
  217. /package/{ui → cjs/ui}/Form/Checkbox/Checkbox.module.scss +0 -0
  218. /package/{types → cjs}/ui/Form/Checkbox/Radio.d.ts +0 -0
  219. /package/{types → cjs}/ui/Form/DateField/DateField.d.ts +0 -0
  220. /package/{ui → cjs/ui}/Form/DateField/DateField.module.scss +0 -0
  221. /package/{types → cjs}/ui/Form/DateField/TimeField.d.ts +0 -0
  222. /package/{types → cjs}/ui/Form/DatePicker/DatePicker.d.ts +0 -0
  223. /package/{ui → cjs/ui}/Form/DatePicker/DatePicker.module.scss +0 -0
  224. /package/{types → cjs}/ui/Form/DatePicker/PeriodSelect.d.ts +0 -0
  225. /package/{types → cjs}/ui/Form/DatePicker/TimePicker.d.ts +0 -0
  226. /package/{ui → cjs/ui}/Form/DatePicker/styles.css +0 -0
  227. /package/{types → cjs}/ui/Form/Interval/Interval.d.ts +0 -0
  228. /package/{ui → cjs/ui}/Form/Interval/Interval.module.scss +0 -0
  229. /package/{types → cjs}/ui/Form/Interval/IntervalSlide.d.ts +0 -0
  230. /package/{types → cjs}/ui/Form/Password/Password.d.ts +0 -0
  231. /package/{types → cjs}/ui/Form/Period/Period.d.ts +0 -0
  232. /package/{ui → cjs/ui}/Form/Period/Period.module.scss +0 -0
  233. /package/{types → cjs}/ui/Form/Rating/Rating.d.ts +0 -0
  234. /package/{ui → cjs/ui}/Form/Rating/Rating.module.scss +0 -0
  235. /package/{types → cjs}/ui/Form/Select/Select.d.ts +0 -0
  236. /package/{ui → cjs/ui}/Form/Select/Select.module.scss +0 -0
  237. /package/{types → cjs}/ui/Form/Switch/Switch.d.ts +0 -0
  238. /package/{ui → cjs/ui}/Form/Switch/Switch.module.scss +0 -0
  239. /package/{types → cjs}/ui/Form/TextArea/TextArea.d.ts +0 -0
  240. /package/{ui → cjs/ui}/Form/TextArea/TextArea.module.scss +0 -0
  241. /package/{types → cjs}/ui/Form/TextField/TextField.d.ts +0 -0
  242. /package/{ui → cjs/ui}/Form/TextField/TextField.module.scss +0 -0
  243. /package/{types → cjs}/ui/HelperText/HelperText.d.ts +0 -0
  244. /package/{ui → cjs/ui}/HelperText/HelperText.module.scss +0 -0
  245. /package/{types → cjs}/ui/List/ListItem.d.ts +0 -0
  246. /package/{ui → cjs/ui}/List/ListItem.module.scss +0 -0
  247. /package/{types → cjs}/ui/Loader/Loader.d.ts +0 -0
  248. /package/{ui → cjs/ui}/Loader/Loader.module.scss +0 -0
  249. /package/{types → cjs}/ui/Logo/Logo.d.ts +0 -0
  250. /package/{ui → cjs/ui}/Logo/Logo.module.scss +0 -0
  251. /package/{types → cjs}/ui/Slider/RcSlider.d.ts +0 -0
  252. /package/{types → cjs}/ui/Slider/Slider.d.ts +0 -0
  253. /package/{ui → cjs/ui}/Slider/Slider.module.scss +0 -0
  254. /package/{ui → cjs/ui}/Slider/style.css +0 -0
  255. /package/{types → cjs}/ui/Status/Status.d.ts +0 -0
  256. /package/{ui → cjs/ui}/Status/Status.module.scss +0 -0
  257. /package/{types → cjs}/ui/Stepper/StepItem.d.ts +0 -0
  258. /package/{ui → cjs/ui}/Stepper/StepItem.module.scss +0 -0
  259. /package/{types → cjs}/ui/Stepper/StepItemIcon.d.ts +0 -0
  260. /package/{ui → cjs/ui}/Stepper/StepItemIcon.module.scss +0 -0
  261. /package/{types → cjs}/ui/Stepper/Stepper.d.ts +0 -0
  262. /package/{ui → cjs/ui}/Stepper/Stepper.module.scss +0 -0
  263. /package/{types → cjs}/ui/Tooltip/Tooltip.d.ts +0 -0
  264. /package/{ui → cjs/ui}/Tooltip/Tooltip.module.scss +0 -0
  265. /package/{index.js → esm/index.js} +0 -0
  266. /package/{lib → esm/lib}/const/styles.js +0 -0
  267. /package/{lib → esm/lib}/helpers/helpers.js +0 -0
  268. /package/{lib → esm/lib}/hooks/useClickOutside.js +0 -0
  269. /package/{lib → esm/lib}/services/DateService.js +0 -0
  270. /package/{types → esm/types}/theme.js +0 -0
  271. /package/{ui → esm/ui}/Adornment/Adornment.js +0 -0
  272. /package/{ui → esm/ui}/Alert/Alert.js +0 -0
  273. /package/{ui → esm/ui}/Avatar/Avatar.js +0 -0
  274. /package/{ui → esm/ui}/Avatar/AvatarGroup.js +0 -0
  275. /package/{ui → esm/ui}/Badge/Badge.js +0 -0
  276. /package/{ui → esm/ui}/Button/index.js +0 -0
  277. /package/{ui → esm/ui}/ButtonGroup/index.js +0 -0
  278. /package/{ui → esm/ui}/ButtonIcon/index.js +0 -0
  279. /package/{ui → esm/ui}/Card/Card.js +0 -0
  280. /package/{ui → esm/ui}/Chip/Chip.js +0 -0
  281. /package/{ui → esm/ui}/Form/Checkbox/Checkbox.js +0 -0
  282. /package/{ui → esm/ui}/Form/Checkbox/Radio.js +0 -0
  283. /package/{ui → esm/ui}/Form/DateField/DateField.js +0 -0
  284. /package/{ui → esm/ui}/Form/DateField/TimeField.js +0 -0
  285. /package/{ui → esm/ui}/Form/DatePicker/DatePicker.js +0 -0
  286. /package/{ui → esm/ui}/Form/DatePicker/PeriodSelect.js +0 -0
  287. /package/{ui → esm/ui}/Form/DatePicker/TimePicker.js +0 -0
  288. /package/{ui → esm/ui}/Form/Interval/Interval.js +0 -0
  289. /package/{ui → esm/ui}/Form/Interval/IntervalSlide.js +0 -0
  290. /package/{ui → esm/ui}/Form/Password/Password.js +0 -0
  291. /package/{ui → esm/ui}/Form/Period/Period.js +0 -0
  292. /package/{ui → esm/ui}/Form/Rating/Rating.js +0 -0
  293. /package/{ui → esm/ui}/Form/Select/Select.js +0 -0
  294. /package/{ui → esm/ui}/Form/Switch/Switch.js +0 -0
  295. /package/{ui → esm/ui}/Form/TextArea/TextArea.js +0 -0
  296. /package/{ui → esm/ui}/Form/TextField/TextField.js +0 -0
  297. /package/{ui → esm/ui}/HelperText/HelperText.js +0 -0
  298. /package/{ui → esm/ui}/List/ListItem.js +0 -0
  299. /package/{ui → esm/ui}/Loader/Loader.js +0 -0
  300. /package/{ui → esm/ui}/Logo/Logo.js +0 -0
  301. /package/{ui/Slider/RcSlider.js → esm/ui/Slider/RcSlider.d.ts} +0 -0
  302. /package/{ui → esm/ui}/Slider/Slider.js +0 -0
  303. /package/{ui → esm/ui}/Status/Status.js +0 -0
  304. /package/{ui → esm/ui}/Stepper/StepItem.js +0 -0
  305. /package/{ui → esm/ui}/Stepper/StepItemIcon.js +0 -0
  306. /package/{ui → esm/ui}/Stepper/Stepper.js +0 -0
  307. /package/{ui → esm/ui}/Tooltip/Tooltip.js +0 -0
@@ -0,0 +1,35 @@
1
+ @import "variables";
2
+
3
+ .interval{
4
+ @include flex();
5
+ width: 100%;
6
+ & input{
7
+ -moz-appearance: textfield;
8
+ &::-webkit-outer-spin-button,
9
+ &::-webkit-inner-spin-button {
10
+ -webkit-appearance: none;
11
+ margin: 0;
12
+ }
13
+ }
14
+ }
15
+ .interval__end{
16
+ text-align: right;
17
+ & + span{
18
+ text-align: right;
19
+ padding-left: 0;
20
+ padding-right: 12px;
21
+ }
22
+ }
23
+ .interval__item{
24
+ max-width: 50%;
25
+ flex: 0 0 50%;
26
+ }
27
+
28
+ .interval__helperText{
29
+ margin-top: calc($size-step / 2);
30
+ }
31
+
32
+ .intervalslide__slider{
33
+ padding: 0 calc($size-step * 2);
34
+ margin-top: -7px;
35
+ }
@@ -0,0 +1,34 @@
1
+ @import "variables";
2
+
3
+ .listitem{
4
+ outline: none;
5
+ padding: calc($size-step * 1.5) calc($size-step * 2);
6
+ color: $color-neutral;
7
+ background: transparent;
8
+ @include transition(0.3s, background);
9
+ @include flex();
10
+ width: 100%;
11
+ border: none;
12
+ text-align: left;
13
+ cursor: pointer;
14
+ &:hover{
15
+ background: $color-gray-50;
16
+ }
17
+ &.listitem_active,
18
+ &:active{
19
+ background: rgba($color-primary, 0.1);
20
+ }
21
+ }
22
+ .listitem_startAdornment{
23
+
24
+ }
25
+ .listitem_endAdornment{
26
+
27
+ }
28
+ .listitem_divider{
29
+ border-bottom: 1px solid $color-gray-200;
30
+ }
31
+ .listitemText{
32
+ display: block;
33
+ margin: 0 calc($size-step * 2);
34
+ }
@@ -0,0 +1,37 @@
1
+ @import "variables";
2
+
3
+ .loader{
4
+ -webkit-animation: rotating 2s linear infinite;
5
+ -moz-animation: rotating 2s linear infinite;
6
+ -ms-animation: rotating 2s linear infinite;
7
+ -o-animation: rotating 2s linear infinite;
8
+ animation: rotating 2s linear infinite;
9
+ }
10
+ @-webkit-keyframes rotating /* Safari and Chrome */ {
11
+ from {
12
+ -webkit-transform: rotate(0deg);
13
+ -o-transform: rotate(0deg);
14
+ transform: rotate(0deg);
15
+ }
16
+ to {
17
+ -webkit-transform: rotate(360deg);
18
+ -o-transform: rotate(360deg);
19
+ transform: rotate(360deg);
20
+ }
21
+ }
22
+ @keyframes rotating {
23
+ from {
24
+ -ms-transform: rotate(0deg);
25
+ -moz-transform: rotate(0deg);
26
+ -webkit-transform: rotate(0deg);
27
+ -o-transform: rotate(0deg);
28
+ transform: rotate(0deg);
29
+ }
30
+ to {
31
+ -ms-transform: rotate(360deg);
32
+ -moz-transform: rotate(360deg);
33
+ -webkit-transform: rotate(360deg);
34
+ -o-transform: rotate(360deg);
35
+ transform: rotate(360deg);
36
+ }
37
+ }
@@ -0,0 +1,29 @@
1
+ @import "variables";
2
+
3
+ .logo{
4
+ display: inline-block;
5
+ }
6
+ .logo_shape{
7
+ box-shadow: $box-shadow;
8
+ padding: calc($size-step * 2);
9
+ transform: skewX(-10deg);
10
+ & .logo__inner{
11
+ transform: skewX(10deg);
12
+ }
13
+ }
14
+ .logo__inner{
15
+
16
+ }
17
+
18
+ .logo__img{
19
+ font-size: 0;
20
+ }
21
+ .logo__description{
22
+ color: $color-gray-900;
23
+ font-size: 14px;
24
+ font-style: italic;
25
+ margin-top: 2px;
26
+ }
27
+ .logo_inverse .logo__description{
28
+ color: #fff;
29
+ }
@@ -0,0 +1,10 @@
1
+ @import "variables";
2
+
3
+ .dateField{
4
+ position: relative;
5
+ }
6
+ .dateField__picker{
7
+ position: absolute;
8
+ top: 100%;
9
+ right: 0;
10
+ }
@@ -0,0 +1,19 @@
1
+ @import "variables";
2
+
3
+ .rating{
4
+ @include flex();
5
+ }
6
+ .rating__item{
7
+ cursor: pointer;
8
+ color: #F7B519;
9
+ font-size: 30px;
10
+ }
11
+ .rating_medium{
12
+ font-size: 24px;
13
+ }
14
+ .rating_small{
15
+ font-size: 18px;
16
+ }
17
+ .rating__item_disabled{
18
+ color: $color-gray-400;
19
+ }
@@ -0,0 +1,26 @@
1
+ @import "variables";
2
+
3
+ .select{
4
+ position: relative;
5
+ }
6
+ .select__input_wrapper{
7
+
8
+ }
9
+ .select__input{
10
+ cursor: pointer;
11
+ & * {
12
+ cursor: pointer;
13
+ }
14
+ }
15
+ .options{
16
+ padding: $size-step 0;
17
+ border-radius: $radius;
18
+ box-shadow: $box-shadow;
19
+ position: absolute;
20
+ left:0;
21
+ top:100%;
22
+ width:100%;
23
+ }
24
+ .options_inline{
25
+ position: static;
26
+ }
@@ -0,0 +1,6 @@
1
+ @import "variables";
2
+
3
+ .slider__helperText{
4
+ @include flex(space-between);
5
+ margin-top: 8px;
6
+ }
@@ -0,0 +1,45 @@
1
+ @import "variables";
2
+
3
+ .status{
4
+ display: inline-flex;
5
+ align-items: center;
6
+ padding: 3px 8px 1px;
7
+ border-radius: 4px;
8
+ }
9
+ .status_primary{
10
+ background: rgba($color-primary-dark, 0.2);
11
+ color: $color-primary-dark;
12
+ }
13
+ .status_secondary{
14
+ background: rgba($color-secondary-dark, 0.2);
15
+ color: $color-secondary-dark;
16
+ }
17
+ .status_neutral{
18
+ background: rgba(#4D5359, 0.2);
19
+ color: rgba(#212529, 0.7);
20
+ }
21
+ .status_error{
22
+ background: rgba($color-error-dark, 0.2);
23
+ color: $color-error-dark;
24
+ }
25
+ .status_warning{
26
+ background: rgba(#FFC61A, 0.2);
27
+ color: $color-secondary-dark;
28
+ }
29
+ .status_info{
30
+ background: rgba(#0D46FF, 0.2);
31
+ color: $color-primary-dark;
32
+ }
33
+ .status_success{
34
+ background: rgba(#0BD998, 0.2);
35
+ color: $color-success-dark;
36
+ }
37
+ .status__content{
38
+ font-size: 14px;
39
+ line-height: 1;
40
+ }
41
+ .status__icon{
42
+ margin-left: 4px;
43
+ font-size: 14px;
44
+ line-height: 1.5;
45
+ }
@@ -0,0 +1,67 @@
1
+ @import "variables";
2
+
3
+ .stepItem__inner{
4
+ @include flex(flex-start, flex-start)
5
+ }
6
+
7
+ .stepItem__title{
8
+ font-weight: 700;
9
+ margin: 2px 0 0 $size-step;
10
+ position: relative;
11
+ background: #fff;
12
+ padding-right: 5px;
13
+ }
14
+ .stepItem__title_error{
15
+ color: $color-error-dark
16
+ }
17
+
18
+ .stepItem__content{
19
+ padding-left: 23px;
20
+ border-left: 1px solid #B1BCC6;
21
+ margin-left: 11px;
22
+ margin-top:5px;
23
+ position: relative;
24
+ }
25
+ .stepItem__button{
26
+ margin-top: $size-step;
27
+ }
28
+
29
+
30
+ .stepItem_small{
31
+ & .stepItem__content,
32
+ & .stepItem__title{
33
+ font-size: 14px;
34
+ }
35
+ & .stepItem__content{
36
+ padding-left: 19px;
37
+ margin-left: 10px;
38
+ }
39
+ &.stepItem_horizontal{
40
+ & .stepItem__content:before{
41
+ top: -15px;
42
+ }
43
+ }
44
+ }
45
+ .stepItem_last{
46
+ & .stepItem__content{
47
+ border-color:transparent;
48
+ &:before{
49
+ display: none;
50
+ }
51
+ }
52
+ }
53
+ .stepItem_horizontal{
54
+ & .stepItem__content{
55
+ border-color:transparent;
56
+ }
57
+ & .stepItem__content:before{
58
+ content: '';
59
+ position: absolute;
60
+ top: -19px;
61
+ width: 100%;
62
+ left: 22px;
63
+ height: 1px;
64
+ background: #B1BCC6;
65
+ z-index: -1;
66
+ }
67
+ }
@@ -0,0 +1,47 @@
1
+ @import "variables";
2
+
3
+ .stepItemIcon{
4
+ @include flex(center);
5
+ width: 24px;
6
+ min-width: 24px;
7
+ height: 24px;
8
+ border-radius: 50%;
9
+ border: 1px solid;
10
+ & .stepItemIcon__number{
11
+ font-size: 16px;
12
+ }
13
+ &_small{
14
+ width: 20px;
15
+ min-width: 20px;
16
+ height: 20px;
17
+ & .stepItemIcon__number{
18
+ font-size: 14px;
19
+ }
20
+ }
21
+ border-color: $color-primary;
22
+ color: $color-primary;
23
+ }
24
+
25
+ .stepItemIcon__inner{
26
+ font-size: 0;
27
+ }
28
+
29
+ .stepItemIcon_active{
30
+ color: #fff;
31
+ background: $color-primary;
32
+ &.stepItemIcon_icon{
33
+ background: transparent;
34
+ color: $color-primary;
35
+ border: none;
36
+ }
37
+ }
38
+ .stepItemIcon_complete{
39
+ color: #fff;
40
+ background: $color-success;
41
+ border-color: $color-success;
42
+ }
43
+ .stepItemIcon_error{
44
+ color: $color-error-dark !important;
45
+ background: transparent;
46
+ border-color: transparent;
47
+ }
@@ -0,0 +1,34 @@
1
+ @import "variables";
2
+
3
+ .stepper{
4
+
5
+ }
6
+ .stepper_horizontal{
7
+ display: flex;
8
+ }
9
+ .stepper__connector{
10
+ padding-left: 23px;
11
+ border-left: 1px solid #B1BCC6;
12
+ margin-left: 11px;
13
+ height: 25px;
14
+ margin-bottom: 5px;
15
+ }
16
+ .stepper_small{
17
+ & .stepper__connector{
18
+ padding-left: 19px;
19
+ margin-left: 10px;
20
+ }
21
+ }
22
+ .stepper_horizontal{
23
+ & .stepper__connector{
24
+ height: 1px;
25
+ width: auto;
26
+ margin-right: 5px;
27
+ margin-bottom: 0;
28
+ padding-left: 0;
29
+ border-left:none;
30
+ border-top: 1px solid #B1BCC6;
31
+ flex: 1 1 0;
32
+ margin-top:10px;
33
+ }
34
+ }
@@ -0,0 +1,69 @@
1
+ @import "variables";
2
+
3
+
4
+ .switch {
5
+ position: relative;
6
+ display: inline-block;
7
+ width: 34px;
8
+ height: 14px;
9
+ }
10
+
11
+
12
+ .switch__input {
13
+ opacity: 0;
14
+ width: 0;
15
+ height: 0;
16
+ }
17
+
18
+ /* The slider */
19
+ .switch__slider {
20
+ position: absolute;
21
+ cursor: pointer;
22
+ top: 0;
23
+ left: 0;
24
+ right: 0;
25
+ bottom: 0;
26
+ background-color: $color-neutral-light;
27
+ -webkit-transition: .4s;
28
+ transition: .4s;
29
+ border-radius: 7px;
30
+ }
31
+
32
+ .switch__slider:before {
33
+ position: absolute;
34
+ content: "";
35
+ height: 20px;
36
+ width: 20px;
37
+ left: -3px;
38
+ bottom: -3px;
39
+ background-color: white;
40
+ -webkit-transition: .4s;
41
+ transition: .4s;
42
+ border-radius: 50%;
43
+ box-shadow: $box-shadow;
44
+ }
45
+
46
+ .switch__input:checked + .switch__slider {
47
+ background-color: $color-orange-400;
48
+ }
49
+
50
+ .switch__input:checked + .switch__slider:before {
51
+ -webkit-transform: translateX(22px);
52
+ -ms-transform: translateX(22px);
53
+ transform: translateX(22px);
54
+ background: $color-secondary;
55
+ }
56
+
57
+ .switch_small{
58
+ width: 26px;
59
+ height: 10px;
60
+ & .switch__slider:before{
61
+ width: 16px;
62
+ height: 16px;
63
+ }
64
+ & .switch__input:checked + .switch__slider:before {
65
+ -webkit-transform: translateX(20px);
66
+ -ms-transform: translateX(20px);
67
+ transform: translateX(18px);
68
+ }
69
+ }
@@ -0,0 +1,15 @@
1
+ @import "variables";
2
+
3
+ .textarea{
4
+ font-family: $font-family;
5
+ height: auto;
6
+ min-height: $size-elarge;
7
+ &.size_small{
8
+ height: auto;
9
+ min-height: $size-large;
10
+ }
11
+ & textarea{
12
+ resize: none;
13
+ appearance: none;
14
+ }
15
+ }
@@ -0,0 +1,160 @@
1
+ @import "variables";
2
+
3
+ .textfield{
4
+ position: relative;
5
+ overflow: hidden;
6
+ border-radius: $radius;
7
+ border: 1px solid $color-gray-400;
8
+ background-color: #fff;
9
+ height: $size-elarge;
10
+ @include flex();
11
+ &:hover{
12
+ border-color: $color-gray-600;
13
+ }
14
+ &._focused{
15
+ border-color: $color-gray-800;
16
+ }
17
+ &._disabled{
18
+ pointer-events: none;
19
+ background: $color-gray-100;
20
+ border-color: transparent;
21
+ & .textfield__label{
22
+ color: $color-gray-600;
23
+ }
24
+ }
25
+ &.size_small{
26
+ height: $size-large;
27
+ font-size: 14px;
28
+ }
29
+ &_outlined{
30
+ border-top:none;
31
+ border-left: none;
32
+ border-right: none;
33
+ border-radius: 0;
34
+ }
35
+ }
36
+ .textfield__container{
37
+ cursor: text;
38
+ position: relative;
39
+ padding: 11px 12px 8px;
40
+ width: 100%;
41
+ &._label{
42
+ padding: 25px 12px 8px;
43
+ }
44
+ &.size_small{
45
+ &._label{
46
+ padding: 18px 12px 4px
47
+ }
48
+ }
49
+ }
50
+ .textfield__container_outlined{
51
+ padding-left: 0 !important;
52
+ & .textfield__label{
53
+ padding-left: 0;
54
+ }
55
+ }
56
+ .textfield__input{
57
+ display: block;
58
+ width: 100%;
59
+ font-size: 16px;
60
+ outline: none;
61
+ background: transparent;
62
+ border: none;
63
+ padding: 0;
64
+ height: 23px;
65
+ &:focus{
66
+ border-color: $color-gray-800;
67
+ }
68
+ &.size_small{
69
+ font-size: 14px;
70
+ height: 20px;
71
+ }
72
+ &._label::placeholder{
73
+ opacity: 0;
74
+ }
75
+ }
76
+ ._error{
77
+ border-color: $color-error-dark;
78
+ }
79
+
80
+ .textfield__label_small{
81
+ font-size: 14px;
82
+ }
83
+ .textfield__label{
84
+ pointer-events: none;
85
+ color: $color-gray-600;
86
+ position: absolute;
87
+ top: 12px;
88
+ padding-left: 12px;
89
+ left: 1px;
90
+ font-size: 16px;
91
+ transition: 0.2s all ease;
92
+ width: calc(100% - 2px);
93
+ padding-top:8px;
94
+ &_small{
95
+ top: 4px;
96
+ }
97
+ &_focused{
98
+ font-size: 12px;
99
+ transform: none;
100
+ top: 1px;
101
+ &.textfield__label_small{
102
+ padding-top:4px
103
+ }
104
+ }
105
+ }
106
+
107
+ .textfield__input_outlined{
108
+ border-left:none;
109
+ border-top:none;
110
+ border-right: none;
111
+ padding-left: 0 !important;
112
+ &:focus,
113
+ &:hover{
114
+ border-left:none;
115
+ border-top:none;
116
+ border-right: none;
117
+ }
118
+ border-radius: 0;
119
+ & + .textfield__label{
120
+ left:0;
121
+ }
122
+ &:disabled{
123
+ border-bottom-color: $color-gray-400;
124
+ border-bottom-style: dotted;
125
+ background: transparent;
126
+ & + .textfield__label{
127
+ color: $color-gray-400;
128
+ }
129
+ }
130
+ }
131
+
132
+ .textfield__label_error{
133
+ color: $color-error-dark;
134
+ }
135
+ .textfield__adornment{
136
+ @include flex();
137
+ position: relative;
138
+ z-index: 5;
139
+ height: 100%;
140
+ padding-right: 10px;
141
+ & > *{
142
+ margin-left: $size-step;
143
+ }
144
+ }
145
+ .textfield__helperText{
146
+ margin-top: calc($size-step / 2);
147
+ }
148
+ ._disabled{
149
+ & + .textfield__helperText{
150
+ color: $color-gray-600;
151
+ }
152
+ & .textfield_outlined{
153
+ & .textfield__helperText{
154
+ color: $color-gray-400;
155
+ }
156
+ }
157
+ & .textfield__icon{
158
+ color: $color-gray-400;
159
+ }
160
+ }
@@ -0,0 +1,18 @@
1
+ @import "variables";
2
+
3
+ .tooltip{
4
+ display: inline-block;
5
+ position: relative;
6
+ }
7
+ .tooltip__item{
8
+ position: absolute;
9
+ padding: $size-step;
10
+ border-radius: $radius;
11
+ background: $color-gray-700;
12
+ color: #fff;
13
+ font-weight: 500;
14
+ font-size: 12px;
15
+ left: 50%;
16
+ bottom: 100%;
17
+ transform: translateX(-50%);
18
+ }
@@ -0,0 +1,2 @@
1
+
2
+