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,21 @@
1
+ /// <reference types="react" />
2
+ import { TextFieldProps } from '../TextField/TextField';
3
+ export type IntervalProps = {
4
+ min: number;
5
+ max: number;
6
+ value?: [number, number];
7
+ onChange?: (value: [number, number]) => void;
8
+ labelStart?: string;
9
+ labelEnd?: string;
10
+ defaultValue?: [number, number];
11
+ } & Omit<TextFieldProps, 'onChange' | 'value'>;
12
+ declare const Interval: import("react").ForwardRefExoticComponent<{
13
+ min: number;
14
+ max: number;
15
+ value?: [number, number] | undefined;
16
+ onChange?: ((value: [number, number]) => void) | undefined;
17
+ labelStart?: string | undefined;
18
+ labelEnd?: string | undefined;
19
+ defaultValue?: [number, number] | undefined;
20
+ } & Omit<TextFieldProps, "value" | "onChange"> & import("react").RefAttributes<unknown>>;
21
+ export default Interval;
@@ -0,0 +1 @@
1
+ @import "../../../assets/Interval";
@@ -0,0 +1,4 @@
1
+ import { IntervalProps } from './Interval';
2
+ type PropsType = IntervalProps;
3
+ declare const IntervalSlide: (props: PropsType) => import("react/jsx-runtime").JSX.Element;
4
+ export default IntervalSlide;
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ declare const Password: import("react").ForwardRefExoticComponent<{
3
+ label?: string | undefined;
4
+ size?: "large" | "small" | undefined;
5
+ variant?: import("../../../types/theme").VariantType | undefined;
6
+ error?: boolean | undefined;
7
+ success?: boolean | undefined;
8
+ helperText?: string | undefined;
9
+ endAdornment?: import("react").ReactNode;
10
+ multiline?: boolean | undefined;
11
+ } & Omit<import("react").InputHTMLAttributes<any>, "size"> & import("react").RefAttributes<unknown>>;
12
+ export default Password;
@@ -0,0 +1,15 @@
1
+ /// <reference types="react" />
2
+ declare const Period: import("react").ForwardRefExoticComponent<{
3
+ format?: string | undefined;
4
+ onChange?: ((value: [Date | null, Date | null]) => void) | undefined;
5
+ } & {
6
+ label?: string | undefined;
7
+ size?: "large" | "small" | undefined;
8
+ variant?: import("../../../types/theme").VariantType | undefined;
9
+ error?: boolean | undefined;
10
+ success?: boolean | undefined;
11
+ helperText?: string | undefined;
12
+ endAdornment?: import("react").ReactNode;
13
+ multiline?: boolean | undefined;
14
+ } & Omit<import("react").InputHTMLAttributes<any>, "size"> & import("react").RefAttributes<unknown>>;
15
+ export default Period;
@@ -0,0 +1,2 @@
1
+ @import "../../../assets/Period";
2
+
@@ -0,0 +1,10 @@
1
+ import { InputHTMLAttributes } from 'react';
2
+ import { SizeType } from '../../../types/theme';
3
+ type PropsType = {
4
+ size?: Exclude<SizeType, 'extraLarge'>;
5
+ value?: number;
6
+ defaultValue?: number;
7
+ onChange?: (value: number) => void;
8
+ } & Omit<InputHTMLAttributes<any>, 'value' | 'onChange' | 'defaultValue' | 'size'>;
9
+ declare const Rating: (props: PropsType) => import("react/jsx-runtime").JSX.Element;
10
+ export default Rating;
@@ -0,0 +1 @@
1
+ @import "../../../assets/Rating";
@@ -0,0 +1,23 @@
1
+ import { OptionType } from '../../../types/theme';
2
+ import { TextFieldProps } from '../TextField/TextField';
3
+ type SelectBaseProps = {
4
+ options: OptionType[];
5
+ inline?: boolean;
6
+ };
7
+ type SelectSingleProps = {
8
+ multiple?: false;
9
+ value?: string;
10
+ defaultValue?: string;
11
+ onChange?: (option: string) => void;
12
+ };
13
+ type SelectMultipleProps = {
14
+ multiple?: true;
15
+ value?: string[];
16
+ defaultValue?: string[];
17
+ onChange?: (option: string[]) => void;
18
+ };
19
+ type SelectProps = SelectMultipleProps | SelectSingleProps;
20
+ type SelectPropsType = SelectBaseProps & SelectProps & Omit<TextFieldProps, 'value' | 'defaultValue' | 'onChange'>;
21
+ export declare const getOptionValue: (option: OptionType) => string;
22
+ declare function Select(props: SelectPropsType): import("react/jsx-runtime").JSX.Element;
23
+ export default Select;
@@ -0,0 +1 @@
1
+ @import "../../../assets/Select";
@@ -0,0 +1,7 @@
1
+ import { InputHTMLAttributes } from 'react';
2
+ import { SizeType } from '../../../types/theme';
3
+ type SwitchProps = {
4
+ size?: Exclude<SizeType, 'extraLarge' | 'medium'>;
5
+ } & Omit<InputHTMLAttributes<any>, 'size'>;
6
+ declare const Switch: (props: SwitchProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default Switch;
@@ -0,0 +1 @@
1
+ @import "../../../assets/Switch";
@@ -0,0 +1,4 @@
1
+ import { TextFieldProps } from '../TextField/TextField';
2
+ export type TextAreaProps = {} & TextFieldProps;
3
+ declare const TextArea: (props: TextAreaProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default TextArea;
@@ -0,0 +1 @@
1
+ @import "../../../assets/TextArea";
@@ -0,0 +1,40 @@
1
+ import { ElementType, HTMLAttributes, InputHTMLAttributes, ReactNode } from 'react';
2
+ import { SizeType, VariantType } from '../../../types/theme';
3
+ export type TextFieldProps = {
4
+ label?: string;
5
+ size?: Exclude<SizeType, 'extraLarge' | 'medium'>;
6
+ variant?: VariantType;
7
+ error?: boolean;
8
+ success?: boolean;
9
+ helperText?: string;
10
+ endAdornment?: string | ReactNode;
11
+ multiline?: boolean;
12
+ } & Omit<InputHTMLAttributes<any>, 'size'>;
13
+ declare const TextField: import("react").ForwardRefExoticComponent<{
14
+ label?: string | undefined;
15
+ size?: "large" | "small" | undefined;
16
+ variant?: VariantType | undefined;
17
+ error?: boolean | undefined;
18
+ success?: boolean | undefined;
19
+ helperText?: string | undefined;
20
+ endAdornment?: string | ReactNode;
21
+ multiline?: boolean | undefined;
22
+ } & Omit<InputHTMLAttributes<any>, "size"> & import("react").RefAttributes<unknown>>;
23
+ type ContainerPropsType = {
24
+ focused?: boolean;
25
+ disabled?: boolean;
26
+ error?: boolean;
27
+ size?: TextFieldProps['size'];
28
+ variant?: TextFieldProps['variant'];
29
+ } & HTMLAttributes<HTMLDivElement>;
30
+ export declare const TextFieldContainer: (props: ContainerPropsType) => import("react/jsx-runtime").JSX.Element;
31
+ export declare const TextFieldInput: import("react").ForwardRefExoticComponent<{
32
+ Component?: ElementType | undefined;
33
+ focused?: boolean | undefined;
34
+ size?: TextFieldProps['size'];
35
+ variant?: TextFieldProps['variant'];
36
+ multiline?: boolean | undefined;
37
+ error?: boolean | undefined;
38
+ label?: string | undefined;
39
+ } & Omit<InputHTMLAttributes<any>, "size"> & import("react").RefAttributes<unknown>>;
40
+ export default TextField;
@@ -0,0 +1 @@
1
+ @import "../../../assets/TextField";
@@ -0,0 +1,6 @@
1
+ import { HTMLAttributes } from 'react';
2
+ type PropsType = {
3
+ error?: boolean;
4
+ } & HTMLAttributes<HTMLSpanElement>;
5
+ declare const HelperText: (props: PropsType) => import("react/jsx-runtime").JSX.Element;
6
+ export default HelperText;
@@ -0,0 +1 @@
1
+ @import "../../assets/HelperText";
@@ -0,0 +1,10 @@
1
+ import { ButtonHTMLAttributes, ReactNode } from 'react';
2
+ export type ListItemProps = {
3
+ active?: boolean;
4
+ checked?: boolean;
5
+ divider?: boolean;
6
+ endAdornment?: string | ReactNode;
7
+ startAdornment?: string | ReactNode;
8
+ } & ButtonHTMLAttributes<HTMLButtonElement>;
9
+ declare const ListItem: (props: ListItemProps) => import("react/jsx-runtime").JSX.Element;
10
+ export default ListItem;
@@ -0,0 +1 @@
1
+ @import "../../assets/ListItem";
@@ -0,0 +1,6 @@
1
+ import { SizeType } from '../../types/theme';
2
+ export type LoaderProps = {
3
+ size?: SizeType;
4
+ };
5
+ declare const Loader: (props: LoaderProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Loader;
@@ -0,0 +1 @@
1
+ @import "../../assets/Loader";
@@ -0,0 +1,12 @@
1
+ import { HTMLAttributes } from 'react';
2
+ export type LogoProps = {
3
+ description?: string;
4
+ black?: boolean;
5
+ inverse?: boolean;
6
+ src?: string;
7
+ href?: string;
8
+ shape?: boolean;
9
+ linkProps?: HTMLAttributes<HTMLAnchorElement>;
10
+ } & HTMLAttributes<HTMLDivElement>;
11
+ declare const Logo: (props: LogoProps) => import("react/jsx-runtime").JSX.Element;
12
+ export default Logo;
@@ -0,0 +1 @@
1
+ @import "../../assets/Logo";
File without changes
@@ -0,0 +1,8 @@
1
+ import '!style-loader!css-loader!./style.css';
2
+ import { SliderProps as RcSliderProps } from 'rc-slider/lib/Slider';
3
+ import { SizeType } from '../../types/theme';
4
+ export type SliderProps = {
5
+ size?: Exclude<SizeType, 'extraLarge' | 'medium'>;
6
+ } & Omit<RcSliderProps, 'size'>;
7
+ declare const Slider: (props: SliderProps) => import("react/jsx-runtime").JSX.Element;
8
+ export default Slider;
@@ -0,0 +1 @@
1
+ @import "../../assets/Slider";
@@ -0,0 +1,281 @@
1
+ .rc-slider {
2
+ position: relative;
3
+ width: 100%;
4
+ height: 14px;
5
+ padding: 5px 0;
6
+ border-radius: 6px;
7
+ touch-action: none;
8
+ box-sizing: border-box;
9
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
10
+ }
11
+ .rc-slider * {
12
+ box-sizing: border-box;
13
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
14
+ }
15
+ .rc-slider-rail {
16
+ position: absolute;
17
+ width: 100%;
18
+ height: 4px;
19
+ background-color: #FFD3A6;
20
+ border-radius: 6px;
21
+ }
22
+ .rc-slider._small .rc-slider-rail{
23
+ height: 2px;
24
+ }
25
+ .rc-slider-track {
26
+ position: absolute;
27
+ height: 4px;
28
+ background-color: #FF7F00;
29
+ border-radius: 6px;
30
+ }
31
+ .rc-slider._small .rc-slider-track{
32
+ height: 2px;
33
+ }
34
+ .rc-slider-track-draggable {
35
+ z-index: 1;
36
+ box-sizing: content-box;
37
+ background-clip: content-box;
38
+ border-top: 5px solid rgba(0, 0, 0, 0);
39
+ border-bottom: 5px solid rgba(0, 0, 0, 0);
40
+ transform: translateY(-5px);
41
+ }
42
+ .rc-slider-handle {
43
+ position: absolute;
44
+ z-index: 1;
45
+ width: 28px;
46
+ height: 28px;
47
+ margin-top: -12px;
48
+ background-color: #fff;
49
+ border: solid 2px #FF7F00;
50
+ border-radius: 50%;
51
+ cursor: pointer;
52
+ cursor: -webkit-grab;
53
+ cursor: grab;
54
+ touch-action: pan-x;
55
+ }
56
+ .rc-slider._small .rc-slider-handle{
57
+ width: 20px;
58
+ height: 20px;
59
+ margin-top: -8px;
60
+ }
61
+
62
+ .rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
63
+ border-color: #FF7F00;
64
+ box-shadow: 0 0 0 5px #FFD3A6;
65
+ }
66
+ .rc-slider-handle:focus {
67
+ outline: none;
68
+ box-shadow: none;
69
+ }
70
+ .rc-slider-handle:focus-visible {
71
+ border-color: #2db7f5;
72
+ box-shadow: 0 0 0 3px #96dbfa;
73
+ }
74
+ .rc-slider-handle-click-focused:focus {
75
+ border-color: #96dbfa;
76
+ box-shadow: unset;
77
+ }
78
+ .rc-slider-handle:hover {
79
+ border-color: #FF7F00;
80
+ }
81
+ .rc-slider-handle:active {
82
+ border-color: #57c5f7;
83
+ box-shadow: 0 0 5px #57c5f7;
84
+ cursor: -webkit-grabbing;
85
+ cursor: grabbing;
86
+ }
87
+ .rc-slider-mark {
88
+ position: absolute;
89
+ top: 18px;
90
+ left: 0;
91
+ width: 100%;
92
+ font-size: 12px;
93
+ }
94
+ .rc-slider-mark-text {
95
+ position: absolute;
96
+ display: inline-block;
97
+ color: #999;
98
+ text-align: center;
99
+ vertical-align: middle;
100
+ cursor: pointer;
101
+ }
102
+ .rc-slider-mark-text-active {
103
+ color: #666;
104
+ }
105
+ .rc-slider-step {
106
+ position: absolute;
107
+ width: 100%;
108
+ height: 4px;
109
+ background: transparent;
110
+ }
111
+ .rc-slider-dot {
112
+ position: absolute;
113
+ bottom: -2px;
114
+ width: 8px;
115
+ height: 8px;
116
+ vertical-align: middle;
117
+ background-color: #fff;
118
+ border: 2px solid #e9e9e9;
119
+ border-radius: 50%;
120
+ cursor: pointer;
121
+ }
122
+ .rc-slider-dot-active {
123
+ border-color: #96dbfa;
124
+ }
125
+ .rc-slider-dot-reverse {
126
+ margin-right: -4px;
127
+ }
128
+ .rc-slider-disabled {
129
+ /*background-color: #e9e9e9;*/
130
+ }
131
+ .rc-slider-disabled .rc-slider-track {
132
+ background-color: #ccc;
133
+ }
134
+ .rc-slider-disabled .rc-slider-handle,
135
+ .rc-slider-disabled .rc-slider-dot {
136
+ background-color: #D3DAE1;
137
+ border-color: #D3DAE1;
138
+ box-shadow: none;
139
+ cursor: not-allowed;
140
+ }
141
+ .rc-slider-disabled .rc-slider-mark-text,
142
+ .rc-slider-disabled .rc-slider-dot {
143
+ cursor: not-allowed !important;
144
+ }
145
+ .rc-slider-vertical {
146
+ width: 14px;
147
+ height: 100%;
148
+ padding: 0 5px;
149
+ }
150
+ .rc-slider-vertical .rc-slider-rail {
151
+ width: 4px;
152
+ height: 100%;
153
+ }
154
+ .rc-slider-vertical .rc-slider-track {
155
+ bottom: 0;
156
+ left: 5px;
157
+ width: 4px;
158
+ }
159
+ .rc-slider-vertical .rc-slider-track-draggable {
160
+ border-top: 0;
161
+ border-bottom: 0;
162
+ border-right: 5px solid rgba(0, 0, 0, 0);
163
+ border-left: 5px solid rgba(0, 0, 0, 0);
164
+ transform: translateX(-5px);
165
+ }
166
+ .rc-slider-vertical .rc-slider-handle {
167
+ position: absolute;
168
+ z-index: 1;
169
+ margin-top: 0;
170
+ margin-left: -5px;
171
+ touch-action: pan-y;
172
+ }
173
+ .rc-slider-vertical .rc-slider-mark {
174
+ top: 0;
175
+ left: 18px;
176
+ height: 100%;
177
+ }
178
+ .rc-slider-vertical .rc-slider-step {
179
+ width: 4px;
180
+ height: 100%;
181
+ }
182
+ .rc-slider-vertical .rc-slider-dot {
183
+ margin-left: -2px;
184
+ }
185
+ .rc-slider-tooltip-zoom-down-enter,
186
+ .rc-slider-tooltip-zoom-down-appear {
187
+ display: block !important;
188
+ animation-duration: 0.3s;
189
+ animation-fill-mode: both;
190
+ animation-play-state: paused;
191
+ }
192
+ .rc-slider-tooltip-zoom-down-leave {
193
+ display: block !important;
194
+ animation-duration: 0.3s;
195
+ animation-fill-mode: both;
196
+ animation-play-state: paused;
197
+ }
198
+ .rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
199
+ .rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
200
+ animation-name: rcSliderTooltipZoomDownIn;
201
+ animation-play-state: running;
202
+ }
203
+ .rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
204
+ animation-name: rcSliderTooltipZoomDownOut;
205
+ animation-play-state: running;
206
+ }
207
+ .rc-slider-tooltip-zoom-down-enter,
208
+ .rc-slider-tooltip-zoom-down-appear {
209
+ transform: scale(0, 0);
210
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
211
+ }
212
+ .rc-slider-tooltip-zoom-down-leave {
213
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
214
+ }
215
+ @keyframes rcSliderTooltipZoomDownIn {
216
+ 0% {
217
+ transform: scale(0, 0);
218
+ transform-origin: 50% 100%;
219
+ opacity: 0;
220
+ }
221
+ 100% {
222
+ transform: scale(1, 1);
223
+ transform-origin: 50% 100%;
224
+ }
225
+ }
226
+ @keyframes rcSliderTooltipZoomDownOut {
227
+ 0% {
228
+ transform: scale(1, 1);
229
+ transform-origin: 50% 100%;
230
+ }
231
+ 100% {
232
+ transform: scale(0, 0);
233
+ transform-origin: 50% 100%;
234
+ opacity: 0;
235
+ }
236
+ }
237
+ .rc-slider-tooltip {
238
+ position: absolute;
239
+ top: -9999px;
240
+ left: -9999px;
241
+ visibility: visible;
242
+ box-sizing: border-box;
243
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
244
+ }
245
+ .rc-slider-tooltip * {
246
+ box-sizing: border-box;
247
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
248
+ }
249
+ .rc-slider-tooltip-hidden {
250
+ display: none;
251
+ }
252
+ .rc-slider-tooltip-placement-top {
253
+ padding: 4px 0 8px 0;
254
+ }
255
+ .rc-slider-tooltip-inner {
256
+ min-width: 24px;
257
+ height: 24px;
258
+ padding: 6px 2px;
259
+ color: #fff;
260
+ font-size: 12px;
261
+ line-height: 1;
262
+ text-align: center;
263
+ text-decoration: none;
264
+ background-color: #6c6c6c;
265
+ border-radius: 6px;
266
+ box-shadow: 0 0 4px #d9d9d9;
267
+ }
268
+ .rc-slider-tooltip-arrow {
269
+ position: absolute;
270
+ width: 0;
271
+ height: 0;
272
+ border-color: transparent;
273
+ border-style: solid;
274
+ }
275
+ .rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
276
+ bottom: 4px;
277
+ left: 50%;
278
+ margin-left: -4px;
279
+ border-width: 4px 4px 0;
280
+ border-top-color: #6c6c6c;
281
+ }
@@ -0,0 +1,10 @@
1
+ import { ColorStatusType, ColorType } from '../../types/theme';
2
+ import { ReactNode } from 'react';
3
+ export type StatusProps = {
4
+ color?: ColorType | ColorStatusType;
5
+ text?: string;
6
+ children?: ReactNode;
7
+ icon?: string;
8
+ };
9
+ declare function Status(props: StatusProps): import("react/jsx-runtime").JSX.Element;
10
+ export default Status;
@@ -0,0 +1 @@
1
+ @import "../../assets/Status";
@@ -0,0 +1,14 @@
1
+ import { ReactNode } from 'react';
2
+ import { StepItemIconProps } from './StepItemIcon';
3
+ import { ButtonProps } from '../Button';
4
+ export type StepItemProps = {
5
+ title: string;
6
+ children?: ReactNode | string;
7
+ content?: ReactNode | string;
8
+ button?: string;
9
+ buttonProps?: ButtonProps;
10
+ last?: boolean;
11
+ orientation?: 'horizontal' | 'vertical';
12
+ } & StepItemIconProps;
13
+ declare const StepItem: (props: StepItemProps) => import("react/jsx-runtime").JSX.Element;
14
+ export default StepItem;
@@ -0,0 +1 @@
1
+ @import "../../assets/StepItem";
@@ -0,0 +1,11 @@
1
+ import { SizeType } from '../../types/theme';
2
+ export type StepItemIconProps = {
3
+ number?: string | number;
4
+ size?: Exclude<SizeType, 'extraLarge' | 'medium'>;
5
+ active?: boolean;
6
+ error?: boolean;
7
+ complete?: boolean;
8
+ icon?: string;
9
+ };
10
+ declare const StepItemIcon: (props: StepItemIconProps) => import("react/jsx-runtime").JSX.Element;
11
+ export default StepItemIcon;
@@ -0,0 +1 @@
1
+ @import "../../assets/StepItemIcon";
@@ -0,0 +1,11 @@
1
+ import { StepItemProps } from './StepItem';
2
+ export type StepperProps = {
3
+ steps: Array<StepItemProps | string | number>;
4
+ active?: number;
5
+ error?: number;
6
+ complete?: number;
7
+ orientation?: 'vertical' | 'horizontal';
8
+ size?: StepItemProps['size'];
9
+ };
10
+ declare const Stepper: (props: StepperProps) => import("react/jsx-runtime").JSX.Element;
11
+ export default Stepper;
@@ -0,0 +1 @@
1
+ @import "../../assets/Stepper";
@@ -0,0 +1,7 @@
1
+ import { ReactNode } from 'react';
2
+ export type TooltipProps = {
3
+ text: string;
4
+ children: ReactNode;
5
+ };
6
+ declare function Tooltip(props: TooltipProps): import("react/jsx-runtime").JSX.Element;
7
+ export default Tooltip;
@@ -0,0 +1 @@
1
+ @import "../../assets/Tooltip";
package/package.json CHANGED
@@ -1,25 +1 @@
1
- {
2
- "name": "armtek-uikit-react",
3
- "version": "1.0.15",
4
- "description": "Armtek UIKit for React",
5
- "types": "types/index.d.ts",
6
- "repository": {
7
- "type": "git",
8
- "url": "ssh://git@gl.corp:10022/int/uikit/uikit_react.git"
9
- },
10
- "author": "",
11
- "license": "ISC",
12
- "dependencies": {
13
- "rc-slider": "^10.2.1",
14
- "react": "*",
15
- "react-datepicker": "^4.16.0",
16
- "react-dom": "*"
17
- },
18
- "peerDependencies": {
19
- "react": "*",
20
- "react-dom": "*"
21
- },
22
- "scripts": {
23
- "pub": "npm version patch && npm publish"
24
- }
25
- }
1
+ {"name":"armtek-uikit-react","version":"1.0.16","description":"Armtek UIKit for React","main":"cjs/index.js","module":"esm/index.js","types":"esm/index.d.ts","repository":{"type":"git","url":"ssh://git@gl.corp:10022/int/uikit/uikit_react.git"},"author":"","license":"ISC","dependencies":{"rc-slider":"^10.2.1","react":"*","react-datepicker":"^4.16.0","react-dom":"*"},"peerDependencies":{"react":"*","react-dom":"*"},"scripts":{"pub":"npm version patch && npm publish"}}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes