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,106 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ exports.__esModule = true;
5
+ exports.default = void 0;
6
+ var _clsx = _interopRequireDefault(require("clsx"));
7
+ var _LogoModule = _interopRequireDefault(require("./Logo.module.scss"));
8
+ var _jsxRuntime = require("react/jsx-runtime");
9
+ const CssClasses = ['logo', 'logo_shape', 'logo__inner', 'logo__img', 'logo__description', 'logo_inverse'];
10
+
11
+ // const css = getCssPrefix(CssClasses)
12
+
13
+ const Logo = props => {
14
+ let {
15
+ description,
16
+ children,
17
+ black,
18
+ shape,
19
+ className,
20
+ href,
21
+ src,
22
+ linkProps,
23
+ inverse,
24
+ ...restProps
25
+ } = props;
26
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
27
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
28
+ ...restProps,
29
+ className: (0, _clsx.default)(_LogoModule.default.logo, {
30
+ [_LogoModule.default.logo_inverse]: inverse,
31
+ [_LogoModule.default.logo_shape]: shape
32
+ }, className),
33
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
34
+ className: "logo__inner",
35
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
36
+ className: _LogoModule.default.logo__img,
37
+ children: href ? /*#__PURE__*/(0, _jsxRuntime.jsx)("a", {
38
+ href: href,
39
+ ...linkProps,
40
+ children: src ? /*#__PURE__*/(0, _jsxRuntime.jsx)("img", {
41
+ src: src,
42
+ alt: ''
43
+ }) : children || /*#__PURE__*/(0, _jsxRuntime.jsx)(LogoArmtek, {
44
+ black: black,
45
+ inverse: inverse
46
+ })
47
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
48
+ children: src ? /*#__PURE__*/(0, _jsxRuntime.jsx)("img", {
49
+ src: src,
50
+ alt: ''
51
+ }) : children || /*#__PURE__*/(0, _jsxRuntime.jsx)(LogoArmtek, {
52
+ black: black,
53
+ inverse: inverse
54
+ })
55
+ })
56
+ }), description && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
57
+ className: _LogoModule.default.logo__description,
58
+ children: description
59
+ })]
60
+ })
61
+ })
62
+ });
63
+ };
64
+ const LogoArmtek = ({
65
+ black,
66
+ inverse
67
+ }) => {
68
+ let part1Color = '#FF7F00';
69
+ let part2Color = inverse ? '#FFFFFF' : '#212529';
70
+ if (black) part1Color = part2Color;
71
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
72
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", {
73
+ xmlns: "http://www.w3.org/2000/svg",
74
+ width: "124",
75
+ height: "15",
76
+ viewBox: "0 0 124 15",
77
+ fill: "none",
78
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
79
+ fillRule: "evenodd",
80
+ clipRule: "evenodd",
81
+ d: "M9.56897 0L0 15H6.30094L7.2884 13.2837H13.4718L13.7304 15H20.0313L16.8574 0H9.56897ZM9.38088 9.61599L12.2257 4.53762H12.2727L12.9545 9.61599H9.38088Z",
82
+ fill: part1Color
83
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
84
+ fillRule: "evenodd",
85
+ clipRule: "evenodd",
86
+ d: "M41.1677 4.18495C41.5204 2.53918 40.9091 1.10502 39.8981 0.540752C39.1693 0.141066 38.1583 0 36.4655 0H23.9812L20.8072 15H26.732L27.7194 10.3683H31.9279C33.0094 10.3683 33.2445 11.0502 33.0799 12.1552C33.0343 12.4623 32.9923 12.7357 32.9548 12.9802C32.7797 14.1202 32.701 14.6322 32.7978 15H39.2633C38.9577 14.4592 38.8166 13.848 38.9107 13.2367L39.3574 9.96865C39.522 8.67555 38.9812 7.89969 38.1583 7.66458V7.61756C39.9687 7.10031 40.8621 5.59561 41.1677 4.18495ZM34.6552 5.19592C34.4436 6.13636 33.8793 6.60658 32.7273 6.60658H28.5188L29.1066 3.78527H33.221C34.2085 3.78527 34.8903 4.04389 34.6552 5.19592Z",
87
+ fill: part1Color
88
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
89
+ d: "M53.2053 8.72257L57.5078 0H65.8307L62.6567 15H57.2727L59.5533 4.279H59.5062L54.0752 15H49.5846L48.7147 4.279H48.6677L46.3871 15H41.0031L44.2006 0H52.547L53.1348 8.72257H53.2053Z",
90
+ fill: part1Color
91
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
92
+ d: "M84.5345 0H67.6301L66.8307 3.78527H72.3088L69.9342 15H75.8589L78.2571 3.78527H83.7351L84.5345 0Z",
93
+ fill: part2Color
94
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
95
+ d: "M99.1348 9.33386L99.9107 5.68966H90.6003L91.0235 3.66771H101.039L101.839 0H85.8981L82.7006 15H98.6411L99.4169 11.3558H89.4013L89.8245 9.33386H99.1348Z",
96
+ fill: part2Color
97
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
98
+ d: "M115.216 0H123.069L115.146 5.80721L120.459 15H112.583L109.715 9.23981L107.387 10.9561L106.517 15H100.592L103.79 0H109.715L108.586 5.28997L115.216 0Z",
99
+ fill: part2Color
100
+ })]
101
+ })
102
+ });
103
+ };
104
+ var _default = Logo;
105
+ exports.default = _default;
106
+ module.exports = exports.default;
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ exports.__esModule = true;
5
+ exports.default = void 0;
6
+ var _react = _interopRequireDefault(require("react"));
7
+ var _rcSlider = _interopRequireDefault(require("rc-slider"));
8
+ require("!style-loader!css-loader!./style.css");
9
+ var _HelperText = _interopRequireDefault(require("../HelperText/HelperText"));
10
+ var _SliderModule = _interopRequireDefault(require("./Slider.module.scss"));
11
+ var _jsxRuntime = require("react/jsx-runtime");
12
+ const CssClasses = ['slider__helperText'];
13
+
14
+ // const css = getCssPrefix(CssClasses)
15
+
16
+ const Slider = props => {
17
+ let {
18
+ size = 'large',
19
+ ...restProps
20
+ } = props;
21
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
22
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
23
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_rcSlider.default, {
24
+ ...restProps,
25
+ className: '_' + size
26
+ }), restProps.min !== undefined && restProps.max !== undefined && /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
27
+ className: _SliderModule.default.slider__helperText,
28
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_HelperText.default, {
29
+ children: restProps.min
30
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_HelperText.default, {
31
+ children: restProps.max
32
+ })]
33
+ })]
34
+ })
35
+ });
36
+ };
37
+ var _default = Slider;
38
+ exports.default = _default;
39
+ module.exports = exports.default;
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ exports.__esModule = true;
5
+ exports.default = void 0;
6
+ var _clsx = _interopRequireDefault(require("clsx"));
7
+ var _StatusModule = _interopRequireDefault(require("./Status.module.scss"));
8
+ var _jsxRuntime = require("react/jsx-runtime");
9
+ const CssClasses = ['status', 'status_primary', 'status_secondary', 'status_neutral', 'status_error', 'status_warning', 'status_info', 'status_success', 'status__content', 'status__icon'];
10
+
11
+ // const css = getCssPrefix(CssClasses)
12
+
13
+ function Status(props) {
14
+ let {
15
+ color,
16
+ icon,
17
+ text,
18
+ children
19
+ } = props;
20
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
21
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("span", {
22
+ className: (0, _clsx.default)(_StatusModule.default.status, _StatusModule.default['status_' + color]),
23
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
24
+ className: _StatusModule.default.status__content,
25
+ children: text || children
26
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
27
+ className: (0, _clsx.default)(_StatusModule.default.status__icon, 'material_icon'),
28
+ children: icon
29
+ })]
30
+ })
31
+ });
32
+ }
33
+ var _default = Status;
34
+ exports.default = _default;
35
+ module.exports = exports.default;
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ exports.__esModule = true;
5
+ exports.default = void 0;
6
+ var _StepItemIcon = _interopRequireDefault(require("./StepItemIcon"));
7
+ var _clsx = _interopRequireDefault(require("clsx"));
8
+ var _Button = _interopRequireDefault(require("../Button"));
9
+ var _StepItemModule = _interopRequireDefault(require("./StepItem.module.scss"));
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
+ const CssClasses = ['stepItem', 'stepItem__inner', 'stepItem__title', 'stepItem__title_error', 'stepItem__content', 'stepItem__button', 'stepItem_horizontal', 'stepItem_last', 'status_info', 'status_success', 'status__content', 'status__icon'];
12
+
13
+ // const css = getCssPrefix(CssClasses)
14
+
15
+ const StepItem = props => {
16
+ let {
17
+ title,
18
+ children,
19
+ content,
20
+ button,
21
+ buttonProps,
22
+ last,
23
+ orientation = 'horizontal',
24
+ ...iconProps
25
+ } = props;
26
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
27
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
28
+ className: (0, _clsx.default)(_StepItemModule.default.stepItem, _StepItemModule.default['stepItem_' + props.size], {
29
+ [_StepItemModule.default.stepItem_last]: last,
30
+ [_StepItemModule.default.stepItem_horizontal]: orientation === 'horizontal'
31
+ }),
32
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
33
+ className: _StepItemModule.default.stepItem__inner,
34
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
35
+ className: _StepItemModule.default.stepItem__icon,
36
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_StepItemIcon.default, {
37
+ ...iconProps
38
+ })
39
+ }), !!title && /*#__PURE__*/(0, _jsxRuntime.jsx)("p", {
40
+ className: (0, _clsx.default)(_StepItemModule.default.stepItem__title, {
41
+ [_StepItemModule.default.stepItem__title_error]: iconProps.error
42
+ }),
43
+ children: title
44
+ })]
45
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
46
+ className: _StepItemModule.default.stepItem__content,
47
+ children: [content || children, !!button && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
48
+ className: _StepItemModule.default.stepItem__button,
49
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Button.default, {
50
+ ...buttonProps,
51
+ children: button
52
+ })
53
+ })]
54
+ })]
55
+ })
56
+ });
57
+ };
58
+ var _default = StepItem;
59
+ exports.default = _default;
60
+ module.exports = exports.default;
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ exports.__esModule = true;
5
+ exports.default = void 0;
6
+ var _clsx = _interopRequireDefault(require("clsx"));
7
+ var _StepItemIconModule = _interopRequireDefault(require("./StepItemIcon.module.scss"));
8
+ var _jsxRuntime = require("react/jsx-runtime");
9
+ const CssClasses = ['stepItemIcon', 'stepItemIcon__number', 'stepItemIcon_small', 'stepItemIcon_active', 'stepItemIcon_complete', 'stepItemIcon_error', 'stepItemIcon__inner'];
10
+
11
+ // const css = getCssPrefix(CssClasses)
12
+
13
+ const StepItemIcon = props => {
14
+ let icon = '';
15
+ if (!props.number) {
16
+ if (props.active) icon = 'schedule';else if (props.complete) icon = 'done';
17
+ }
18
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
19
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
20
+ className: (0, _clsx.default)(_StepItemIconModule.default.stepItemIcon, _StepItemIconModule.default['stepItemIcon_' + props.size], {
21
+ [_StepItemIconModule.default.stepItemIcon_active]: props.active,
22
+ [_StepItemIconModule.default.stepItemIcon_error]: props.error,
23
+ [_StepItemIconModule.default.stepItemIcon_complete]: props.complete,
24
+ [_StepItemIconModule.default.stepItemIcon_icon]: !props.icon
25
+ }),
26
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
27
+ className: _StepItemIconModule.default.stepItemIcon__inner,
28
+ children: !props.error ? !props.number ? /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
29
+ className: 'material_icon_solid',
30
+ children: icon
31
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
32
+ className: _StepItemIconModule.default.stepItemIcon__number,
33
+ children: props.number
34
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
35
+ className: 'material_icon_solid',
36
+ children: "warning"
37
+ })
38
+ })
39
+ })
40
+ });
41
+ };
42
+ var _default = StepItemIcon;
43
+ exports.default = _default;
44
+ module.exports = exports.default;
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ exports.__esModule = true;
5
+ exports.default = void 0;
6
+ var _StepItem = _interopRequireDefault(require("./StepItem"));
7
+ var _clsx = _interopRequireDefault(require("clsx"));
8
+ var _react = require("react");
9
+ var _StepperModule = _interopRequireDefault(require("./Stepper.module.scss"));
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
+ const CssClasses = ['stepper', 'stepper_horizontal', 'stepper__connector', 'stepper_small'];
12
+
13
+ // const css = getCssPrefix(CssClasses)
14
+
15
+ const Stepper = props => {
16
+ var _props$steps;
17
+ let {
18
+ orientation = 'horizontal'
19
+ } = props;
20
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
21
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
22
+ className: (0, _clsx.default)(_StepperModule.default.stepper, _StepperModule.default['stepper_' + props.size], {
23
+ [_StepperModule.default.stepper_horizontal]: orientation === 'horizontal'
24
+ }),
25
+ children: (_props$steps = props.steps) == null ? void 0 : _props$steps.map((item, index) => {
26
+ var _props$steps2;
27
+ let title = typeof item === 'string' || typeof item === 'number' ? String(item) : item.title;
28
+ let params = typeof item === 'string' || typeof item === 'number' ? {} : item;
29
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_react.Fragment, {
30
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_StepItem.default, {
31
+ error: index + 1 === props.error,
32
+ active: index + 1 === props.active,
33
+ complete: index + 1 === props.complete || index + 1 < (props.active || 0),
34
+ ...params,
35
+ title: title,
36
+ last: index + 1 === ((_props$steps2 = props.steps) == null ? void 0 : _props$steps2.length),
37
+ orientation: orientation,
38
+ size: props.size
39
+ }), index + 1 < props.steps.length && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
40
+ className: _StepperModule.default.stepper__connector
41
+ })]
42
+ }, index);
43
+ })
44
+ })
45
+ });
46
+ };
47
+ var _default = Stepper;
48
+ exports.default = _default;
49
+ module.exports = exports.default;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ "use client";
3
+
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ exports.__esModule = true;
6
+ exports.default = void 0;
7
+ var _react = require("react");
8
+ var _TooltipModule = _interopRequireDefault(require("./Tooltip.module.scss"));
9
+ var _jsxRuntime = require("react/jsx-runtime");
10
+ const CssClasses = ['tooltip', 'tooltip__item'];
11
+
12
+ // const css = getCssPrefix(CssClasses)
13
+
14
+ function Tooltip(props) {
15
+ let {
16
+ text,
17
+ children
18
+ } = props;
19
+ let [visible, setVisible] = (0, _react.useState)(false);
20
+ const handleEnter = () => setVisible(true);
21
+ const handleLeave = () => setVisible(false);
22
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
23
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("span", {
24
+ className: _TooltipModule.default.tooltip,
25
+ onMouseEnter: handleEnter,
26
+ onMouseLeave: handleLeave,
27
+ children: [children, visible && /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
28
+ className: _TooltipModule.default.tooltip__item,
29
+ children: text
30
+ })]
31
+ })
32
+ });
33
+ }
34
+ var _default = Tooltip;
35
+ exports.default = _default;
36
+ module.exports = exports.default;