hrm_ui_lib 2.0.0-alpha.2 → 2.0.0-alpha.21

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 (240) hide show
  1. package/{Alert-w8FkRd9I.js → Alert--0rz5XL1.js} +22 -14
  2. package/assets/images/under-construction.svg +9 -0
  3. package/assets/styles/styles.css +4459 -4533
  4. package/assets/styles/styles.scss +1 -3
  5. package/components/Alert/Alert.js +12 -10
  6. package/components/Alert/index.js +6 -4
  7. package/components/Avatar/Avatar.js +7 -5
  8. package/components/Avatar/AvatarGroup.js +6 -4
  9. package/components/Avatar/index.js +6 -4
  10. package/components/BadgeV2/BadgeV2.d.ts +2 -2
  11. package/components/BadgeV2/BadgeV2.js +20 -8
  12. package/components/BadgeV2/types.d.ts +5 -2
  13. package/components/Button/Button.js +6 -4
  14. package/components/Button/index.js +6 -4
  15. package/components/ButtonGroup/ButtonGroup.d.ts +2 -0
  16. package/components/ButtonGroup/ButtonGroup.js +46 -0
  17. package/components/ButtonGroup/ButtonGroupItem.d.ts +2 -0
  18. package/components/ButtonGroup/ButtonGroupItem.js +52 -0
  19. package/components/ButtonGroup/consts.d.ts +8 -0
  20. package/components/ButtonGroup/consts.js +12 -0
  21. package/components/ButtonGroup/index.d.ts +1 -0
  22. package/components/ButtonGroup/index.js +10 -0
  23. package/components/ButtonGroup/types.d.ts +23 -0
  24. package/components/ButtonGroup/types.js +1 -0
  25. package/components/Card/Card.d.ts +5 -2
  26. package/components/Card/Card.js +58 -7
  27. package/components/Card/CardComponent/Card.js +4 -3
  28. package/components/Card/CardComponent/CardBody.d.ts +1 -1
  29. package/components/Card/CardComponent/CardBody.js +5 -5
  30. package/components/Card/CardComponent/CardFooter.d.ts +4 -0
  31. package/components/Card/CardComponent/CardFooter.js +13 -0
  32. package/components/Card/CardComponent/CardHead.js +67 -5
  33. package/components/Card/index.js +48 -2
  34. package/components/Card/types.d.ts +3 -0
  35. package/components/CardGroup/CardGroup.d.ts +10 -0
  36. package/components/CardGroup/CardGroup.js +27 -0
  37. package/components/CardGroup/CardGroupComponent/CardBody.d.ts +4 -0
  38. package/components/CardGroup/CardGroupComponent/CardBody.js +19 -0
  39. package/components/CardGroup/CardGroupComponent/CardGroup.d.ts +4 -0
  40. package/components/CardGroup/CardGroupComponent/CardGroup.js +28 -0
  41. package/components/CardGroup/CardGroupComponent/CardHead.d.ts +4 -0
  42. package/components/CardGroup/CardGroupComponent/CardHead.js +19 -0
  43. package/components/CardGroup/CardGroupContext.d.ts +6 -0
  44. package/components/CardGroup/CardGroupContext.js +8 -0
  45. package/components/CardGroup/index.d.ts +1 -0
  46. package/components/CardGroup/index.js +11 -0
  47. package/components/CardGroup/types.d.ts +14 -0
  48. package/components/CardGroup/types.js +1 -0
  49. package/components/Checkbox/Checkbox.js +11 -9
  50. package/components/Checkbox/index.js +6 -4
  51. package/components/Checkbox/types.d.ts +1 -0
  52. package/components/Collapse/Collapse/Collapse.js +2 -2
  53. package/components/Collapse/CollapseGroup/CollapseGroup.js +1 -1
  54. package/components/Collapse/CollapseItem/CollapseItem.js +1 -1
  55. package/components/Collapse/index.js +1 -1
  56. package/components/Collapse/types.d.ts +1 -1
  57. package/components/Copy/Copy.js +6 -4
  58. package/components/Copy/index.js +6 -4
  59. package/components/Counter/Counter.js +6 -4
  60. package/components/Counter/index.js +6 -4
  61. package/components/DatePicker/CustomHeader/CustomHeader.js +7 -5
  62. package/components/DatePicker/RangeDatePicker/RangeDatePicker.js +12 -4
  63. package/components/DatePicker/RangeDatePicker/RangeDatePickerDesktop.js +12 -4
  64. package/components/DatePicker/RangeDatePicker/RangeDatePickerMobile.js +12 -4
  65. package/components/DatePicker/RangeDatePicker/index.js +12 -4
  66. package/components/DatePicker/SimpleDatePicker/SimpleDatePicker.js +12 -4
  67. package/components/DatePicker/SimpleDatePicker/SimpleDatePickerDesktop.js +12 -4
  68. package/components/DatePicker/SimpleDatePicker/SimpleDatePickerMobile.js +12 -4
  69. package/components/DatePicker/SimpleDatePicker/index.js +12 -4
  70. package/components/DatePicker/TimePicker/MobileModalContent.js +7 -4
  71. package/components/DatePicker/TimePicker/TimePicker.js +14 -5
  72. package/components/DatePicker/TimePicker/TimePickerDesktop.js +13 -7
  73. package/components/DatePicker/TimePicker/TimePickerMobile.js +8 -5
  74. package/components/DatePicker/TimePicker/index.js +14 -5
  75. package/components/DatePicker/hooks.js +8 -2139
  76. package/components/DatePicker/index.js +14 -5
  77. package/components/Divider/Divider.js +6 -3
  78. package/components/Divider/types.d.ts +1 -0
  79. package/components/Empty/Empty.js +6 -4
  80. package/components/Empty/index.js +6 -4
  81. package/components/FileUpload/DropzoneFileUpload/DropzoneFileUpload.js +6 -4
  82. package/components/FileUpload/DropzoneFileUpload/ErrorItem.js +6 -4
  83. package/components/FileUpload/DropzoneFileUpload/PreviewItem.js +14 -12
  84. package/components/FileUpload/DropzoneFileUpload/helpers.js +6 -4
  85. package/components/FileUpload/DropzoneFileUpload/index.js +6 -4
  86. package/components/FileUpload/FileUpload.js +7 -5
  87. package/components/FileUpload/UploadItems.js +7 -5
  88. package/components/FileUpload/index.js +7 -5
  89. package/components/FormContainer/FormContainer.js +22 -12
  90. package/components/FormContainer/index.js +7 -5
  91. package/components/FormContainer/types.d.ts +1 -0
  92. package/components/FormField/FormField.js +6 -4
  93. package/components/FormField/index.js +7 -5
  94. package/components/IconDynamicComponent/IconDynamicComponent.d.ts +8 -0
  95. package/components/IconDynamicComponent/IconDynamicComponent.js +39 -0
  96. package/{helperComponents → components}/IconDynamicComponent/index.js +1 -1
  97. package/components/Input/Input.js +6 -4
  98. package/components/Input/index.js +6 -4
  99. package/components/Menu/Menu.js +7 -5
  100. package/components/Menu/NestedMenu.js +7 -5
  101. package/components/Menu/index.js +7 -5
  102. package/components/Modal/Modal.js +6 -4
  103. package/components/Modal/ModalConfirmation.js +6 -4
  104. package/components/Modal/ModalContent.js +6 -4
  105. package/components/Modal/index.js +6 -4
  106. package/components/More/More.js +6 -4
  107. package/components/More/index.js +6 -4
  108. package/components/Popover/Popover.js +6 -4
  109. package/components/Popover/PopoverDesktop.js +1 -1
  110. package/components/Popover/PopoverMobile.js +6 -4
  111. package/components/Popover/index.js +6 -4
  112. package/components/Popover/types.d.ts +2 -1
  113. package/components/Radio/RadioGroup.js +7 -5
  114. package/components/Radio/index.js +7 -5
  115. package/components/SVGIcons/IconAirplaneTakeOff.d.ts +4 -0
  116. package/components/SVGIcons/IconAirplaneTakeOff.js +29 -0
  117. package/components/SVGIcons/IconAirplaneTakeOffFilled.d.ts +4 -0
  118. package/components/SVGIcons/IconAirplaneTakeOffFilled.js +29 -0
  119. package/components/SVGIcons/IconChartPerson.d.ts +4 -0
  120. package/components/SVGIcons/IconChartPerson.js +29 -0
  121. package/components/SVGIcons/IconChartPersonFilled.d.ts +4 -0
  122. package/components/SVGIcons/IconChartPersonFilled.js +29 -0
  123. package/components/SVGIcons/IconFastAcceleration.d.ts +4 -0
  124. package/components/SVGIcons/IconFastAcceleration.js +29 -0
  125. package/components/SVGIcons/IconFastAccelerationFilled.d.ts +4 -0
  126. package/components/SVGIcons/IconFastAccelerationFilled.js +29 -0
  127. package/components/SVGIcons/IconFeed.d.ts +4 -0
  128. package/components/SVGIcons/IconFeed.js +29 -0
  129. package/components/SVGIcons/IconFeedFilled.d.ts +4 -0
  130. package/components/SVGIcons/IconFeedFilled.js +29 -0
  131. package/components/SVGIcons/IconLibrary.d.ts +4 -0
  132. package/components/SVGIcons/IconLibrary.js +29 -0
  133. package/components/SVGIcons/IconLibraryFilled.d.ts +4 -0
  134. package/components/SVGIcons/IconLibraryFilled.js +29 -0
  135. package/components/SVGIcons/IconPeopleList.d.ts +4 -0
  136. package/components/SVGIcons/IconPeopleList.js +29 -0
  137. package/components/SVGIcons/IconPeopleListFilled.d.ts +4 -0
  138. package/components/SVGIcons/IconPeopleListFilled.js +29 -0
  139. package/components/SVGIcons/IconPeopleTeam.d.ts +4 -0
  140. package/components/SVGIcons/IconPeopleTeam.js +29 -0
  141. package/components/SVGIcons/IconPeopleTeamFilled.d.ts +4 -0
  142. package/components/SVGIcons/IconPeopleTeamFilled.js +29 -0
  143. package/components/SVGIcons/IconTrophy.d.ts +4 -0
  144. package/components/SVGIcons/IconTrophy.js +29 -0
  145. package/components/SVGIcons/IconTrophyFilled.d.ts +4 -0
  146. package/components/SVGIcons/IconTrophyFilled.js +29 -0
  147. package/components/SVGIcons/IconUs.d.ts +4 -0
  148. package/components/SVGIcons/IconUs.js +72 -0
  149. package/components/SVGIcons/icon-names.d.ts +2 -0
  150. package/components/SVGIcons/icon-names.js +3 -0
  151. package/components/SVGIcons/index.d.ts +19 -2
  152. package/components/SVGIcons/index.js +19 -2
  153. package/components/Select/ButtonSelect/ButtonSelect.js +7 -5
  154. package/components/Select/FilterSelect/FilterDropdown.js +7 -5
  155. package/components/Select/FilterSelect/FilterGroupDropdown.js +6 -4
  156. package/components/Select/FilterSelect/FilterSelect.js +6 -4
  157. package/components/Select/MultiSelect/MobileWrapper.js +6 -4
  158. package/components/Select/MultiSelect/MultiBase/MultiBase.js +7 -5
  159. package/components/Select/MultiSelect/MultiSelect.js +6 -4
  160. package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.js +7 -5
  161. package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.js +7 -5
  162. package/components/Select/MultiSelect/OptionsWrapper.js +6 -4
  163. package/components/Select/NestedSelect/NestedSelect.js +7 -5
  164. package/components/Select/Select/Select.js +6 -4
  165. package/components/Select/Select/SelectDesktop/index.js +7 -5
  166. package/components/Select/Select/SelectMobile/MobileTopContent.js +6 -4
  167. package/components/Select/Select/SelectMobile/index.js +7 -5
  168. package/components/Select/SharedComponents/Actions.js +7 -5
  169. package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.js +8 -6
  170. package/components/Select/SharedComponents/ContentTop.js +6 -4
  171. package/components/Select/SharedComponents/Footer.js +6 -4
  172. package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.js +6 -4
  173. package/components/Select/SharedComponents/index.js +6 -4
  174. package/components/Select/index.js +6 -4
  175. package/components/SideSheet/Footer/Footer.js +6 -4
  176. package/components/SideSheet/SideSheet.js +6 -4
  177. package/components/SideSheet/index.js +6 -4
  178. package/components/Snackbar/Snackbar.js +14 -12
  179. package/components/Snackbar/index.js +6 -4
  180. package/components/Switcher/Switcher.js +27 -19
  181. package/components/Switcher/index.js +7 -6
  182. package/components/Switcher/types.d.ts +2 -0
  183. package/components/Tab/Tab.js +4 -2
  184. package/components/Table/Header.d.ts +2 -1
  185. package/components/Table/Header.js +19 -8
  186. package/components/Table/IndeterminateCheckbox.d.ts +1 -0
  187. package/components/Table/IndeterminateCheckbox.js +12 -6
  188. package/components/Table/Row.d.ts +2 -1
  189. package/components/Table/Row.js +24 -9
  190. package/components/Table/Table.d.ts +1 -1
  191. package/components/Table/Table.js +60 -17
  192. package/components/Table/index.js +8 -4
  193. package/components/Table/localization.d.ts +5 -0
  194. package/components/Table/localization.js +13 -0
  195. package/components/Table/types.d.ts +6 -0
  196. package/components/Table/utils.js +36 -8
  197. package/components/TableV2/AdvancedPagination.js +9 -7
  198. package/components/TableV2/ColumnSettings.js +8 -6
  199. package/components/TableV2/IndeterminateCheckbox.js +6 -4
  200. package/components/TableV2/Table.js +7 -4
  201. package/components/TableV2/hooks/useTableControl.js +20 -15
  202. package/components/TableV2/index.js +8 -5
  203. package/components/Text/types.d.ts +1 -1
  204. package/components/Textarea/Textarea.js +6 -4
  205. package/components/Textarea/index.js +6 -4
  206. package/components/Tooltip/types.d.ts +0 -1
  207. package/components/UnderConstruction/UnderConstruction.d.ts +3 -0
  208. package/components/UnderConstruction/UnderConstruction.js +38 -0
  209. package/components/UnderConstruction/index.d.ts +1 -0
  210. package/components/UnderConstruction/index.js +8 -0
  211. package/components/UnderConstruction/localization.d.ts +4 -0
  212. package/components/UnderConstruction/localization.js +16 -0
  213. package/components/UnderConstruction/types.d.ts +12 -0
  214. package/components/UnderConstruction/types.js +1 -0
  215. package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.js +1 -1
  216. package/helperComponents/AnimatePresenceWrapper/index.js +1 -1
  217. package/helperComponents/CodeBlock/CodeBlock.js +1 -154
  218. package/helperComponents/CodeBlock/index.js +1 -0
  219. package/helperComponents/ErrorMessage/ErrorMessage.js +2 -2
  220. package/helperComponents/ErrorMessage/index.js +2 -2
  221. package/helperComponents/GoToWebPage/GoToWebPage.js +6 -4
  222. package/helperComponents/OptionItem/OptionItem.js +7 -5
  223. package/helperComponents/OptionItem/index.js +6 -4
  224. package/helperComponents/index.d.ts +0 -1
  225. package/helperComponents/index.js +7 -5
  226. package/helpers/check-authorization.js +8 -6
  227. package/helpers/format-date.js +1 -22
  228. package/helpers/index.js +6 -4
  229. package/hooks/useHideOnScroll.d.ts +1 -1
  230. package/hooks/useHideOnScroll.js +5 -4
  231. package/i18n.d.ts +4 -0
  232. package/i18n.js +50 -0
  233. package/index.d.ts +3 -0
  234. package/index.js +46 -7
  235. package/package.json +6 -5
  236. package/helperComponents/IconDynamicComponent/IconDynamicComponent.d.ts +0 -9
  237. package/helperComponents/IconDynamicComponent/IconDynamicComponent.js +0 -26
  238. package/helperComponents/IconDynamicComponent/constants.d.ts +0 -3
  239. package/helperComponents/IconDynamicComponent/constants.js +0 -33
  240. /package/{helperComponents → components}/IconDynamicComponent/index.d.ts +0 -0
@@ -0,0 +1,29 @@
1
+ import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+
5
+ var IconLibraryFilled = function IconLibraryFilled(_ref) {
6
+ var size = _ref.size,
7
+ type = _ref.type,
8
+ _ref$className = _ref.className,
9
+ className = _ref$className === void 0 ? '' : _ref$className,
10
+ onClick = _ref.onClick,
11
+ refHandler = _ref.refHandler,
12
+ id = _ref.id,
13
+ dataId = _ref.dataId;
14
+ return /*#__PURE__*/React.createElement("svg", {
15
+ xmlns: "http://www.w3.org/2000/svg",
16
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
+ viewBox: "0 0 24 24",
18
+ fill: "none",
19
+ onClick: onClick,
20
+ ref: refHandler,
21
+ id: id,
22
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
+ }, /*#__PURE__*/React.createElement("path", {
24
+ d: "M5.5 3C6.328 3 7 3.672 7 4.5V19.5C7 20.328 6.328 21 5.5 21H3.5C2.672 21 2 20.328 2 19.5V4.5C2 3.672 2.672 3 3.5 3H5.5ZM11.5 3C12.328 3 13 3.672 13 4.5V19.5C13 20.328 12.328 21 11.5 21H9.5C8.672 21 8 20.328 8 19.5V4.5C8 3.672 8.672 3 9.5 3H11.5ZM18.781 6.1238L21.995 18.6428C22.201 19.4448 21.718 20.2628 20.915 20.4688L19.039 20.9498C18.236 21.1558 17.419 20.6728 17.213 19.8698L13.999 7.3528C13.793 6.5498 14.276 5.7328 15.079 5.5268L16.955 5.0438C17.758 4.8388 18.575 5.3228 18.781 6.1238Z",
25
+ fill: "#222222"
26
+ }));
27
+ };
28
+
29
+ export { IconLibraryFilled, IconLibraryFilled as default };
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconPeopleList: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconPeopleList;
@@ -0,0 +1,29 @@
1
+ import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+
5
+ var IconPeopleList = function IconPeopleList(_ref) {
6
+ var size = _ref.size,
7
+ type = _ref.type,
8
+ _ref$className = _ref.className,
9
+ className = _ref$className === void 0 ? '' : _ref$className,
10
+ onClick = _ref.onClick,
11
+ refHandler = _ref.refHandler,
12
+ id = _ref.id,
13
+ dataId = _ref.dataId;
14
+ return /*#__PURE__*/React.createElement("svg", {
15
+ xmlns: "http://www.w3.org/2000/svg",
16
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
+ viewBox: "0 0 24 24",
18
+ fill: "none",
19
+ onClick: onClick,
20
+ ref: refHandler,
21
+ id: id,
22
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
+ }, /*#__PURE__*/React.createElement("path", {
24
+ d: "M5.5 8C5.5 6.61929 6.61929 5.5 8 5.5C9.38071 5.5 10.5 6.61929 10.5 8C10.5 9.38071 9.38071 10.5 8 10.5C6.61929 10.5 5.5 9.38071 5.5 8ZM8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4ZM15.5 9C15.5 8.17157 16.1716 7.5 17 7.5C17.8284 7.5 18.5 8.17157 18.5 9C18.5 9.82843 17.8284 10.5 17 10.5C16.1716 10.5 15.5 9.82843 15.5 9ZM17 6C15.3431 6 14 7.34315 14 9C14 10.6569 15.3431 12 17 12C18.6569 12 20 10.6569 20 9C20 7.34315 18.6569 6 17 6ZM4.25 14C3.00736 14 2 15.0074 2 16.25V16.5011L2 16.5022L2.00001 16.5048L2.00007 16.5111L2.00035 16.5277C2.00064 16.5406 2.00117 16.5571 2.0021 16.5771C2.00396 16.6169 2.00745 16.6705 2.01398 16.7358C2.02701 16.8661 2.05233 17.045 2.10165 17.2564C2.19995 17.6776 2.39654 18.2404 2.79183 18.8051C3.61066 19.9749 5.17178 21 8 21C9.81853 21 11.1132 20.5762 12.0235 19.9626C12.0853 19.5883 12.2659 19.2541 12.5253 19C12.2357 18.7162 12.0443 18.3327 12.0068 17.905C11.9978 17.9183 11.9886 17.9316 11.9793 17.9449C11.4857 18.6501 10.4218 19.5 8 19.5C5.57822 19.5 4.51434 18.6501 4.02067 17.9449C3.75971 17.5721 3.62818 17.1974 3.56241 16.9155C3.5297 16.7753 3.514 16.6612 3.50653 16.5865C3.50281 16.5493 3.50117 16.5222 3.50047 16.5072L3.5 16.4947V16.25C3.5 15.8358 3.83579 15.5 4.25 15.5H11.75C11.8475 15.5 11.9406 15.5186 12.026 15.5524C12.0089 15.4542 12 15.3531 12 15.25C12 14.8116 12.1612 14.4109 12.4276 14.1038C12.2137 14.0364 11.9861 14 11.75 14H4.25ZM12.5253 16.5C12.5162 16.5089 12.5073 16.5178 12.4984 16.5269L12.4995 16.5072L12.5 16.4946V16.4747C12.5083 16.4832 12.5168 16.4917 12.5253 16.5ZM13.75 14.5C13.3358 14.5 13 14.8358 13 15.25C13 15.6642 13.3358 16 13.75 16H21.25C21.6642 16 22 15.6642 22 15.25C22 14.8358 21.6642 14.5 21.25 14.5H13.75ZM13.75 17C13.3358 17 13 17.3358 13 17.75C13 18.1642 13.3358 18.5 13.75 18.5H21.25C21.6642 18.5 22 18.1642 22 17.75C22 17.3358 21.6642 17 21.25 17H13.75ZM13.75 19.5C13.3358 19.5 13 19.8358 13 20.25C13 20.6642 13.3358 21 13.75 21H21.25C21.6642 21 22 20.6642 22 20.25C22 19.8358 21.6642 19.5 21.25 19.5H13.75Z",
25
+ fill: "#0E121B"
26
+ }));
27
+ };
28
+
29
+ export { IconPeopleList, IconPeopleList as default };
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconPeopleListFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconPeopleListFilled;
@@ -0,0 +1,29 @@
1
+ import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+
5
+ var IconPeopleListFilled = function IconPeopleListFilled(_ref) {
6
+ var size = _ref.size,
7
+ type = _ref.type,
8
+ _ref$className = _ref.className,
9
+ className = _ref$className === void 0 ? '' : _ref$className,
10
+ onClick = _ref.onClick,
11
+ refHandler = _ref.refHandler,
12
+ id = _ref.id,
13
+ dataId = _ref.dataId;
14
+ return /*#__PURE__*/React.createElement("svg", {
15
+ xmlns: "http://www.w3.org/2000/svg",
16
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
+ viewBox: "0 0 24 24",
18
+ fill: "none",
19
+ onClick: onClick,
20
+ ref: refHandler,
21
+ id: id,
22
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
+ }, /*#__PURE__*/React.createElement("path", {
24
+ d: "M8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12ZM17 12C18.6569 12 20 10.6569 20 9C20 7.34315 18.6569 6 17 6C15.3431 6 14 7.34315 14 9C14 10.6569 15.3431 12 17 12ZM4.25 14C3.00736 14 2 15.0074 2 16.25V16.5C2 16.5 2 21 8 21C9.85469 21 11.1361 20.57 12.0213 19.9759C12.0811 19.5962 12.2628 19.2571 12.5253 19C12.2011 18.6824 12 18.2397 12 17.75C12 17.2603 12.2011 16.8176 12.5253 16.5C12.2011 16.1824 12 15.7397 12 15.25C12 14.8116 12.1612 14.4109 12.4276 14.1038C12.2137 14.0364 11.9861 14 11.75 14H4.25ZM13.75 14.5C13.3358 14.5 13 14.8358 13 15.25C13 15.6642 13.3358 16 13.75 16H21.25C21.6642 16 22 15.6642 22 15.25C22 14.8358 21.6642 14.5 21.25 14.5H13.75ZM13.75 17C13.3358 17 13 17.3358 13 17.75C13 18.1642 13.3358 18.5 13.75 18.5H21.25C21.6642 18.5 22 18.1642 22 17.75C22 17.3358 21.6642 17 21.25 17H13.75ZM13.75 19.5C13.3358 19.5 13 19.8358 13 20.25C13 20.6642 13.3358 21 13.75 21H21.25C21.6642 21 22 20.6642 22 20.25C22 19.8358 21.6642 19.5 21.25 19.5H13.75Z",
25
+ fill: "#0E121B"
26
+ }));
27
+ };
28
+
29
+ export { IconPeopleListFilled, IconPeopleListFilled as default };
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconPeopleTeam: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconPeopleTeam;
@@ -0,0 +1,29 @@
1
+ import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+
5
+ var IconPeopleTeam = function IconPeopleTeam(_ref) {
6
+ var size = _ref.size,
7
+ type = _ref.type,
8
+ _ref$className = _ref.className,
9
+ className = _ref$className === void 0 ? '' : _ref$className,
10
+ onClick = _ref.onClick,
11
+ refHandler = _ref.refHandler,
12
+ id = _ref.id,
13
+ dataId = _ref.dataId;
14
+ return /*#__PURE__*/React.createElement("svg", {
15
+ xmlns: "http://www.w3.org/2000/svg",
16
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
+ viewBox: "0 0 24 24",
18
+ fill: "none",
19
+ onClick: onClick,
20
+ ref: refHandler,
21
+ id: id,
22
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
+ }, /*#__PURE__*/React.createElement("path", {
24
+ d: "M14.754 10C15.7205 10 16.504 10.7835 16.504 11.75V16.499C16.504 18.9848 14.4888 21 12.003 21C9.51712 21 7.50193 18.9848 7.50193 16.499V11.75C7.50193 10.7835 8.28543 10 9.25193 10H14.754ZM14.754 11.5H9.25193C9.11386 11.5 9.00193 11.6119 9.00193 11.75V16.499C9.00193 18.1564 10.3455 19.5 12.003 19.5C13.6604 19.5 15.004 18.1564 15.004 16.499V11.75C15.004 11.6119 14.8921 11.5 14.754 11.5ZM3.75 10L7.13128 9.99906C6.78791 10.4145 6.56424 10.9325 6.51312 11.5002L3.75 11.5C3.61193 11.5 3.5 11.6119 3.5 11.75V14.9988C3.5 16.3802 4.61984 17.5 6.00124 17.5C6.20123 17.5 6.39574 17.4765 6.58216 17.4322C6.66687 17.9361 6.82156 18.4167 7.03487 18.864C6.70577 18.953 6.35899 19 6.00124 19C3.79142 19 2 17.2086 2 14.9988V11.75C2 10.7835 2.7835 10 3.75 10ZM16.8747 9.99906L20.25 10C21.2165 10 22 10.7835 22 11.75V15C22 17.2091 20.2091 19 18 19C17.6436 19 17.298 18.9534 16.9691 18.8659C17.184 18.4177 17.3388 17.9371 17.425 17.4331C17.6092 17.477 17.8019 17.5 18 17.5C19.3807 17.5 20.5 16.3807 20.5 15V11.75C20.5 11.6119 20.3881 11.5 20.25 11.5L17.4928 11.5002C17.4417 10.9325 17.218 10.4145 16.8747 9.99906ZM12 3C13.6569 3 15 4.34315 15 6C15 7.65685 13.6569 9 12 9C10.3431 9 9 7.65685 9 6C9 4.34315 10.3431 3 12 3ZM18.5 4C19.8807 4 21 5.11929 21 6.5C21 7.88071 19.8807 9 18.5 9C17.1193 9 16 7.88071 16 6.5C16 5.11929 17.1193 4 18.5 4ZM5.5 4C6.88071 4 8 5.11929 8 6.5C8 7.88071 6.88071 9 5.5 9C4.11929 9 3 7.88071 3 6.5C3 5.11929 4.11929 4 5.5 4ZM12 4.5C11.1716 4.5 10.5 5.17157 10.5 6C10.5 6.82843 11.1716 7.5 12 7.5C12.8284 7.5 13.5 6.82843 13.5 6C13.5 5.17157 12.8284 4.5 12 4.5ZM18.5 5.5C17.9477 5.5 17.5 5.94772 17.5 6.5C17.5 7.05228 17.9477 7.5 18.5 7.5C19.0523 7.5 19.5 7.05228 19.5 6.5C19.5 5.94772 19.0523 5.5 18.5 5.5ZM5.5 5.5C4.94772 5.5 4.5 5.94772 4.5 6.5C4.5 7.05228 4.94772 7.5 5.5 7.5C6.05228 7.5 6.5 7.05228 6.5 6.5C6.5 5.94772 6.05228 5.5 5.5 5.5Z",
25
+ fill: "#222222"
26
+ }));
27
+ };
28
+
29
+ export { IconPeopleTeam, IconPeopleTeam as default };
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconPeopleTeamFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconPeopleTeamFilled;
@@ -0,0 +1,29 @@
1
+ import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+
5
+ var IconPeopleTeamFilled = function IconPeopleTeamFilled(_ref) {
6
+ var size = _ref.size,
7
+ type = _ref.type,
8
+ _ref$className = _ref.className,
9
+ className = _ref$className === void 0 ? '' : _ref$className,
10
+ onClick = _ref.onClick,
11
+ refHandler = _ref.refHandler,
12
+ id = _ref.id,
13
+ dataId = _ref.dataId;
14
+ return /*#__PURE__*/React.createElement("svg", {
15
+ xmlns: "http://www.w3.org/2000/svg",
16
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
+ viewBox: "0 0 24 24",
18
+ fill: "none",
19
+ onClick: onClick,
20
+ ref: refHandler,
21
+ id: id,
22
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
+ }, /*#__PURE__*/React.createElement("path", {
24
+ d: "M14.754 10C15.7205 10 16.504 10.7835 16.504 11.75V16.499C16.504 18.9848 14.4888 21 12.003 21C9.51712 21 7.50193 18.9848 7.50193 16.499V11.75C7.50193 10.7835 8.28543 10 9.25193 10H14.754ZM7.13128 9.99906C6.78183 10.4218 6.55636 10.9508 6.51057 11.5304L6.50193 11.75V16.499C6.50193 17.3456 6.69319 18.1476 7.03487 18.864C6.70577 18.953 6.35899 19 6.00124 19C3.79142 19 2 17.2086 2 14.9988V11.75C2 10.8318 2.70711 10.0788 3.60647 10.0058L3.75 10L7.13128 9.99906ZM16.8747 9.99906L20.25 10C21.2165 10 22 10.7835 22 11.75V15C22 17.2091 20.2091 19 18 19C17.6436 19 17.298 18.9534 16.9691 18.8659C17.2697 18.238 17.4538 17.5452 17.4951 16.8144L17.504 16.499V11.75C17.504 11.0847 17.2678 10.4747 16.8747 9.99906ZM12 3C13.6569 3 15 4.34315 15 6C15 7.65685 13.6569 9 12 9C10.3431 9 9 7.65685 9 6C9 4.34315 10.3431 3 12 3ZM18.5 4C19.8807 4 21 5.11929 21 6.5C21 7.88071 19.8807 9 18.5 9C17.1193 9 16 7.88071 16 6.5C16 5.11929 17.1193 4 18.5 4ZM5.5 4C6.88071 4 8 5.11929 8 6.5C8 7.88071 6.88071 9 5.5 9C4.11929 9 3 7.88071 3 6.5C3 5.11929 4.11929 4 5.5 4Z",
25
+ fill: "#222222"
26
+ }));
27
+ };
28
+
29
+ export { IconPeopleTeamFilled, IconPeopleTeamFilled as default };
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconTrophy: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTrophy;
@@ -0,0 +1,29 @@
1
+ import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+
5
+ var IconTrophy = function IconTrophy(_ref) {
6
+ var size = _ref.size,
7
+ type = _ref.type,
8
+ _ref$className = _ref.className,
9
+ className = _ref$className === void 0 ? '' : _ref$className,
10
+ onClick = _ref.onClick,
11
+ refHandler = _ref.refHandler,
12
+ id = _ref.id,
13
+ dataId = _ref.dataId;
14
+ return /*#__PURE__*/React.createElement("svg", {
15
+ xmlns: "http://www.w3.org/2000/svg",
16
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
+ viewBox: "0 0 24 24",
18
+ fill: "none",
19
+ onClick: onClick,
20
+ ref: refHandler,
21
+ id: id,
22
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
+ }, /*#__PURE__*/React.createElement("path", {
24
+ d: "M15.2536 2C16.4119 2 17.3657 2.87524 17.4899 4.00044L18.7576 4C19.6758 4 20.4288 4.70711 20.5018 5.60647L20.5076 5.75V8.75C20.5076 10.483 19.1512 11.8992 17.4421 11.9949L17.2318 12.0007C16.564 14.0909 14.7334 15.6615 12.5007 15.9517L12.5001 17.5H14.2536C15.9866 17.5 17.4028 18.8565 17.4984 20.5656L17.5036 20.75V21.25C17.5036 21.6297 17.2214 21.9435 16.8554 21.9932L16.7536 22H6.75056C6.37086 22 6.05707 21.7178 6.00741 21.3518L6.00056 21.25V20.75C6.00056 19.017 7.35702 17.6008 9.06614 17.5051L9.25056 17.5H11.0001L11.0004 15.9513C8.76915 15.6601 6.93987 14.09 6.27235 12.0007L6.24609 12C4.45117 12 2.99609 10.5449 2.99609 8.75V5.75C2.99609 4.7835 3.7796 4 4.74609 4L6.01424 4.00044C6.13841 2.87524 7.09227 2 8.25056 2H15.2536ZM14.2536 19H9.25056C8.4208 19 7.72592 19.5775 7.54591 20.3525L7.51828 20.5H15.9859C15.8717 19.7018 15.2189 19.0774 14.4075 19.0067L14.2536 19ZM15.2536 3.5H8.25056C7.83635 3.5 7.50056 3.83579 7.50056 4.25V10.2485C7.50056 12.5965 9.40403 14.5 11.7521 14.5C14.1001 14.5 16.0036 12.5965 16.0036 10.2485V4.25C16.0036 3.83579 15.6678 3.5 15.2536 3.5ZM18.7576 5.5H17.5036V10.4829C18.3036 10.3703 18.93 9.71683 19.0009 8.90415L19.0076 8.75V5.75C19.0076 5.63165 18.9254 5.53251 18.815 5.5066L18.7576 5.5ZM6.00056 5.5H4.74609C4.60802 5.5 4.49609 5.61193 4.49609 5.75V8.75C4.49609 9.63316 5.15031 10.3635 6.00056 10.4829V5.5Z",
25
+ fill: "#222222"
26
+ }));
27
+ };
28
+
29
+ export { IconTrophy, IconTrophy as default };
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconTrophyFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTrophyFilled;
@@ -0,0 +1,29 @@
1
+ import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+
5
+ var IconTrophyFilled = function IconTrophyFilled(_ref) {
6
+ var size = _ref.size,
7
+ type = _ref.type,
8
+ _ref$className = _ref.className,
9
+ className = _ref$className === void 0 ? '' : _ref$className,
10
+ onClick = _ref.onClick,
11
+ refHandler = _ref.refHandler,
12
+ id = _ref.id,
13
+ dataId = _ref.dataId;
14
+ return /*#__PURE__*/React.createElement("svg", {
15
+ xmlns: "http://www.w3.org/2000/svg",
16
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
+ viewBox: "0 0 24 24",
18
+ fill: "none",
19
+ onClick: onClick,
20
+ ref: refHandler,
21
+ id: id,
22
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
+ }, /*#__PURE__*/React.createElement("path", {
24
+ d: "M15.2536 2C16.4119 2 17.3657 2.87524 17.4899 4.00044L18.7576 4C19.6758 4 20.4288 4.70711 20.5018 5.60647L20.5076 5.75V8.75C20.5076 10.483 19.1512 11.8992 17.4421 11.9949L17.2318 12.0007C16.564 14.0909 14.7334 15.6615 12.5007 15.9517L12.5001 17.5H14.2536C15.9866 17.5 17.4028 18.8565 17.4984 20.5656L17.5036 20.75V21.25C17.5036 21.6297 17.2214 21.9435 16.8554 21.9932L16.7536 22H6.75056C6.37086 22 6.05707 21.7178 6.00741 21.3518L6.00056 21.25V20.75C6.00056 19.017 7.35702 17.6008 9.06614 17.5051L9.25056 17.5H11.0001L11.0004 15.9513C8.76915 15.6601 6.93987 14.09 6.27235 12.0007L6.24609 12C4.45117 12 2.99609 10.5449 2.99609 8.75V5.75C2.99609 4.7835 3.7796 4 4.74609 4L6.01424 4.00044C6.13841 2.87524 7.09227 2 8.25056 2H15.2536ZM18.7576 5.5H17.5036V10.4829C18.3036 10.3703 18.93 9.71683 19.0009 8.90415L19.0076 8.75V5.75C19.0076 5.63165 18.9254 5.53251 18.815 5.5066L18.7576 5.5ZM6.00056 5.5H4.74609C4.60802 5.5 4.49609 5.61193 4.49609 5.75V8.75C4.49609 9.63316 5.15031 10.3635 6.00056 10.4829V5.5Z",
25
+ fill: "#222222"
26
+ }));
27
+ };
28
+
29
+ export { IconTrophyFilled, IconTrophyFilled as default };
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconUs: ({ size, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconUs;
@@ -0,0 +1,72 @@
1
+ import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+
5
+ var IconUs = function IconUs(_ref) {
6
+ var size = _ref.size,
7
+ _ref$className = _ref.className,
8
+ className = _ref$className === void 0 ? '' : _ref$className,
9
+ onClick = _ref.onClick,
10
+ refHandler = _ref.refHandler,
11
+ id = _ref.id,
12
+ dataId = _ref.dataId;
13
+ return /*#__PURE__*/React.createElement("svg", {
14
+ xmlns: "http://www.w3.org/2000/svg",
15
+ className: classNames('svg-icon', _defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), className, className)),
16
+ viewBox: "0 0 24 24",
17
+ fill: "none",
18
+ onClick: onClick,
19
+ ref: refHandler,
20
+ id: id,
21
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
22
+ }, /*#__PURE__*/React.createElement("rect", {
23
+ y: "3.42999",
24
+ width: "24",
25
+ height: "17.1429",
26
+ rx: "2",
27
+ fill: "white"
28
+ }), /*#__PURE__*/React.createElement("mask", {
29
+ id: "mask0_1993_2165",
30
+ style: {
31
+ maskType: 'luminance'
32
+ },
33
+ maskUnits: "userSpaceOnUse",
34
+ x: "0",
35
+ y: "3",
36
+ width: "24",
37
+ height: "18"
38
+ }, /*#__PURE__*/React.createElement("rect", {
39
+ y: "3.42999",
40
+ width: "24",
41
+ height: "17.1429",
42
+ rx: "2",
43
+ fill: "white"
44
+ })), /*#__PURE__*/React.createElement("g", {
45
+ mask: "url(#mask0_1993_2165)"
46
+ }, /*#__PURE__*/React.createElement("rect", {
47
+ y: "3.42999",
48
+ width: "24",
49
+ height: "17.1429",
50
+ fill: "#0A17A7"
51
+ }), /*#__PURE__*/React.createElement("path", {
52
+ d: "M-1.09929 1.78735L9.14287 8.69577V2.28718H14.8572V8.69573L25.0992 1.78736L26.3774 3.6823L18.2796 9.14432H24V14.8586H18.2796L26.3774 20.3206L25.0992 22.2155L14.8572 15.3072V21.7157H9.14287V15.3071L-1.09928 22.2156L-2.37744 20.3206L5.72032 14.8586H7.62939e-06V9.14432H5.72034L-2.37744 3.6823L-1.09929 1.78735Z",
53
+ fill: "white"
54
+ }), /*#__PURE__*/React.createElement("path", {
55
+ d: "M27.1356 1.53249C27.2368 1.68629 27.1942 1.89299 27.0404 1.99417L16.1843 9.13605C16.0305 9.23723 15.8238 9.19457 15.7227 9.04078C15.6215 8.88698 15.6641 8.68028 15.8179 8.5791L26.674 1.43722C26.8277 1.33604 27.0344 1.3787 27.1356 1.53249Z",
56
+ fill: "#DB1F35"
57
+ }), /*#__PURE__*/React.createElement("path", {
58
+ d: "M27.1621 21.9165C27.265 21.7639 27.2247 21.5567 27.072 21.4538L17.3401 14.8943C17.1875 14.7914 16.9803 14.8317 16.8774 14.9844C16.7745 15.137 16.8149 15.3442 16.9675 15.4471L26.6994 22.0066C26.852 22.1095 27.0592 22.0692 27.1621 21.9165Z",
59
+ fill: "#DB1F35"
60
+ }), /*#__PURE__*/React.createElement("path", {
61
+ d: "M-3.56564 1.81145C-3.46276 1.65878 -3.25559 1.61843 -3.10293 1.72132L7.04823 8.56255C7.20089 8.66544 7.24124 8.8726 7.13836 9.02526C7.03547 9.17792 6.82831 9.21828 6.67565 9.11539L-3.47551 2.27415C-3.62817 2.17127 -3.66853 1.96411 -3.56564 1.81145Z",
62
+ fill: "#DB1F35"
63
+ }), /*#__PURE__*/React.createElement("path", {
64
+ d: "M-3.56702 22.7375C-3.46528 22.8909 -3.25842 22.9328 -3.105 22.831L8.14717 15.3691C8.30059 15.2674 8.34249 15.0605 8.24074 14.9071C8.139 14.7537 7.93214 14.7118 7.77872 14.8135L-3.47344 22.2754C-3.62687 22.3772 -3.66876 22.584 -3.56702 22.7375Z",
65
+ fill: "#DB1F35"
66
+ }), /*#__PURE__*/React.createElement("path", {
67
+ d: "M0 13.7157H10.2857V20.5728H13.7143V13.7157H24V10.2871H13.7143V3.42999H10.2857V10.2871H0V13.7157Z",
68
+ fill: "#E6273E"
69
+ })));
70
+ };
71
+
72
+ export { IconUs, IconUs as default };
@@ -0,0 +1,2 @@
1
+ export declare const ICON_NAMES: string[];
2
+ export type TIconName = (typeof ICON_NAMES)[number];
@@ -0,0 +1,3 @@
1
+ var ICON_NAMES = ['add', 'addCircle', 'addCircleFilled', 'addFilled', 'airplaneTakeOff', 'airplaneTakeOffFilled', 'alert', 'alertBadge', 'alertBadgeFilled', 'alertFilled', 'am', 'amd', 'amdFilled', 'apple', 'arrowDown', 'arrowDownFilled', 'arrowDownLeft', 'arrowDownLeftFilled', 'arrowDownload', 'arrowDownloadFilled', 'arrowEnter', 'arrowEnterFilled', 'arrowExit', 'arrowExitFilled', 'arrowExportLeftToRight', 'arrowExportLeftToRightFilled', 'arrowExportRightToLeft', 'arrowExportRightToLeftFilled', 'arrowExportUp', 'arrowExportUpFilled', 'arrowImport', 'arrowImportFilled', 'arrowLeft', 'arrowLeftFilled', 'arrowRepeatAll', 'arrowRepeatAllFilled', 'arrowReset', 'arrowResetFilled', 'arrowRight', 'arrowRightFilled', 'arrowSort', 'arrowSortFilled', 'arrowSync', 'arrowSyncFilled', 'arrowUp', 'arrowUpFilled', 'arrowUpLeft', 'arrowUpLeftFilled', 'arrowUpRight', 'arrowUpRightFilled', 'attach', 'attachFilled', 'beach', 'beachFilled', 'book', 'bookFilled', 'bookmark', 'bookmarkFilled', 'briefcase', 'briefcaseFilled', 'building', 'buildingBank', 'buildingBankFilled', 'buildingFilled', 'bulletListAdd', 'bulletListAddFilled', 'calculator', 'calculatorFilled', 'calendarClock', 'calendarClockFilled', 'calendarDay', 'calendarDayFilled', 'calendarEmpty', 'calendarLeft', 'calendarLeftFilled', 'calendarRight', 'calendarRightFilled', 'call', 'callFilled', 'card', 'cardFilled', 'caretDown', 'caretDownFilled', 'caretDownRight', 'caretDownRightFilled', 'caretLeft', 'caretLeftFilled', 'caretRight', 'caretRightFilled', 'caretUp', 'caretUpFilled', 'chartPerson', 'chartPersonFilled', 'chat', 'chatFilled', 'chatMultiple', 'chatMultipleFilled', 'checkboxArrowRight', 'checkboxArrowRightFilled', 'checkmark', 'checkmarkCircle', 'checkmarkCircleFilled', 'checkmarkFilled', 'chevronDoubleLeft', 'chevronDoubleRight', 'chevronDown', 'chevronDownFilled', 'chevronLeft', 'chevronLeftFilled', 'chevronRight', 'chevronRightFilled', 'chevronUp', 'chevronUpDown', 'chevronUpDownFilled', 'chevronUpFilled', 'clipboardDay', 'clock', 'clockDismiss', 'clockDismissFilled', 'clockFilled', 'comment', 'commentFilled', 'contractCard', 'contractCardFilled', 'copy', 'copyFilled', 'cubeTree', 'cubeTreeFilled', 'database', 'databaseFilled', 'delete', 'deleteFilled', 'deviceMeetingRoom', 'deviceMeetingRoomFilled', 'dismiss', 'dismissCircle', 'dismissCircleFilled', 'dismissFilled', 'document', 'documentBulletList', 'documentBulletListFilled', 'documentEdit', 'documentEditFilled', 'documentFilled', 'documentPerson', 'edit', 'editFilled', 'errorCircle', 'errorCircleFilled', 'eur', 'eurFilled', 'expandUpLeft', 'expandUpLeftFilled', 'expandUpRight', 'expandUpRightFilled', 'eyeOff', 'eyeOffFilled', 'eyeOn', 'eyeOnFilled', 'facebook', 'fastAcceleration', 'fastAccelerationFilled', 'feed', 'feedFilled', 'filter', 'filterFilled', 'flag', 'flagFilled', 'folderLink', 'folderLinkFilled', 'food', 'foodFilled', 'gb', 'globe', 'globeFilled', 'google', 'handOpenHeart', 'handOpenHeartFilled', 'heart', 'heartFilled', 'history', 'historyFilled', 'home', 'homeFilled', 'image', 'imageFilled', 'info', 'infoFilled', 'instagram', 'keyReset', 'keyResetFilled', 'library', 'libraryFilled', 'link', 'linkFilled', 'linkedin', 'list', 'listFilled', 'location', 'locationFilled', 'lockClosed', 'lockClosedFilled', 'lockOpen', 'lockOpenFilled', 'mail', 'mailAdd', 'mailAddFilled', 'mailArrowForward', 'mailArrowForwardFilled', 'mailFilled', 'mailLink', 'mailLinkFilled', 'medium', 'more', 'moreFilled', 'moreVertical', 'moreVerticalFilled', 'navigation', 'navigationFilled', 'notebook', 'notebookAdd', 'notebookAddFilled', 'notebookFilled', 'onlyEmployee', 'open', 'openFilled', 'patient', 'patientFilled', 'people', 'peopleAdd', 'peopleAddFilled', 'peopleFilled', 'peopleList', 'peopleListFilled', 'peopleTeam', 'peopleTeamFilled', 'percent', 'person', 'personAccount', 'personAccountFilled', 'personAdd', 'personAddFilled', 'personArrowLeft', 'personArrowLeftFilled', 'personArrowRight', 'personArrowRightFilled', 'personBoard', 'personFilled', 'personMinus', 'personStar', 'personStarFilled', 'personSubtract', 'personSubtractFilled', 'phone', 'phoneFilled', 'plugConnected', 'pos', 'posFilled', 'prohibited', 'prohibitedFilled', 'projectProduct', 'question', 'questionFilled', 'redo', 'redoFilled', 'ru', 'rub', 'rubFilled', 'save', 'saveFilled', 'savings', 'savingsFilled', 'search', 'searchFilled', 'selectAllOff', 'selectAllOffFilled', 'selectAllOn', 'selectAllOnFilled', 'send', 'sendFilled', 'settings', 'settingsFilled', 'share', 'shareAndroid', 'shareAndroidFilled', 'shareFilled', 'signOut', 'signOutFilled', 'spinner', 'spinnerFilled', 'status', 'statusFilled', 'subtract', 'subtractCircle', 'subtractCircleFilled', 'subtractFilled', 'tableCellEdit', 'tableCellEditFilled', 'telegram', 'timer', 'timerFilled', 'trophy', 'trophyFilled', 'twitter', 'undo', 'undoFilled', 'unitsEmployee', 'upload', 'us', 'usd', 'usdFilled', 'userMinus', 'video', 'videoFilled', 'wallet', 'walletFilled', 'warning', 'warningFilled', 'youtube'];
2
+
3
+ export { ICON_NAMES };
@@ -2,6 +2,8 @@ export * from './IconAdd';
2
2
  export * from './IconAddCircle';
3
3
  export * from './IconAddCircleFilled';
4
4
  export * from './IconAddFilled';
5
+ export * from './IconAirplaneTakeOff';
6
+ export * from './IconAirplaneTakeOffFilled';
5
7
  export * from './IconAlert';
6
8
  export * from './IconAlertBadge';
7
9
  export * from './IconAlertBadgeFilled';
@@ -87,6 +89,8 @@ export * from './IconCaretRight';
87
89
  export * from './IconCaretRightFilled';
88
90
  export * from './IconCaretUp';
89
91
  export * from './IconCaretUpFilled';
92
+ export * from './IconChartPerson';
93
+ export * from './IconChartPersonFilled';
90
94
  export * from './IconChat';
91
95
  export * from './IconChatFilled';
92
96
  export * from './IconChatMultiple';
@@ -97,6 +101,8 @@ export * from './IconCheckmark';
97
101
  export * from './IconCheckmarkCircle';
98
102
  export * from './IconCheckmarkCircleFilled';
99
103
  export * from './IconCheckmarkFilled';
104
+ export * from './IconChevronDoubleLeft';
105
+ export * from './IconChevronDoubleRight';
100
106
  export * from './IconChevronDown';
101
107
  export * from './IconChevronDownFilled';
102
108
  export * from './IconChevronLeft';
@@ -152,6 +158,10 @@ export * from './IconEyeOffFilled';
152
158
  export * from './IconEyeOn';
153
159
  export * from './IconEyeOnFilled';
154
160
  export * from './IconFacebook';
161
+ export * from './IconFastAcceleration';
162
+ export * from './IconFastAccelerationFilled';
163
+ export * from './IconFeed';
164
+ export * from './IconFeedFilled';
155
165
  export * from './IconFilter';
156
166
  export * from './IconFilterFilled';
157
167
  export * from './IconFlag';
@@ -179,6 +189,8 @@ export * from './IconInfoFilled';
179
189
  export * from './IconInstagram';
180
190
  export * from './IconKeyReset';
181
191
  export * from './IconKeyResetFilled';
192
+ export * from './IconLibrary';
193
+ export * from './IconLibraryFilled';
182
194
  export * from './IconLink';
183
195
  export * from './IconLinkFilled';
184
196
  export * from './IconLinkedin';
@@ -218,6 +230,10 @@ export * from './IconPeople';
218
230
  export * from './IconPeopleAdd';
219
231
  export * from './IconPeopleAddFilled';
220
232
  export * from './IconPeopleFilled';
233
+ export * from './IconPeopleList';
234
+ export * from './IconPeopleListFilled';
235
+ export * from './IconPeopleTeam';
236
+ export * from './IconPeopleTeamFilled';
221
237
  export * from './IconPercent';
222
238
  export * from './IconPerson';
223
239
  export * from './IconPersonAccount';
@@ -283,11 +299,14 @@ export * from './IconTableCellEditFilled';
283
299
  export * from './IconTelegram';
284
300
  export * from './IconTimer';
285
301
  export * from './IconTimerFilled';
302
+ export * from './IconTrophy';
303
+ export * from './IconTrophyFilled';
286
304
  export * from './IconTwitter';
287
305
  export * from './IconUndo';
288
306
  export * from './IconUndoFilled';
289
307
  export * from './IconUnitsEmployee';
290
308
  export * from './IconUpload';
309
+ export * from './IconUs';
291
310
  export * from './IconUsd';
292
311
  export * from './IconUsdFilled';
293
312
  export * from './IconUserMinus';
@@ -298,5 +317,3 @@ export * from './IconWalletFilled';
298
317
  export * from './IconWarning';
299
318
  export * from './IconWarningFilled';
300
319
  export * from './IconYoutube';
301
- export * from './IconChevronDoubleLeft';
302
- export * from './IconChevronDoubleRight';
@@ -2,6 +2,8 @@ export { IconAdd } from './IconAdd.js';
2
2
  export { IconAddCircle } from './IconAddCircle.js';
3
3
  export { IconAddCircleFilled } from './IconAddCircleFilled.js';
4
4
  export { IconAddFilled } from './IconAddFilled.js';
5
+ export { IconAirplaneTakeOff } from './IconAirplaneTakeOff.js';
6
+ export { IconAirplaneTakeOffFilled } from './IconAirplaneTakeOffFilled.js';
5
7
  export { IconAlert } from './IconAlert.js';
6
8
  export { IconAlertBadge } from './IconAlertBadge.js';
7
9
  export { IconAlertBadgeFilled } from './IconAlertBadgeFilled.js';
@@ -87,6 +89,8 @@ export { IconCaretRight } from './IconCaretRight.js';
87
89
  export { IconCaretRightFilled } from './IconCaretRightFilled.js';
88
90
  export { IconCaretUp } from './IconCaretUp.js';
89
91
  export { IconCaretUpFilled } from './IconCaretUpFilled.js';
92
+ export { IconChartPerson } from './IconChartPerson.js';
93
+ export { IconChartPersonFilled } from './IconChartPersonFilled.js';
90
94
  export { IconChat } from './IconChat.js';
91
95
  export { IconChatFilled } from './IconChatFilled.js';
92
96
  export { IconChatMultiple } from './IconChatMultiple.js';
@@ -97,6 +101,8 @@ export { IconCheckmark } from './IconCheckmark.js';
97
101
  export { IconCheckmarkCircle } from './IconCheckmarkCircle.js';
98
102
  export { IconCheckmarkCircleFilled } from './IconCheckmarkCircleFilled.js';
99
103
  export { IconCheckmarkFilled } from './IconCheckmarkFilled.js';
104
+ export { IconChevronDoubleLeft } from './IconChevronDoubleLeft.js';
105
+ export { IconChevronDoubleRight } from './IconChevronDoubleRight.js';
100
106
  export { IconChevronDown } from './IconChevronDown.js';
101
107
  export { IconChevronDownFilled } from './IconChevronDownFilled.js';
102
108
  export { IconChevronLeft } from './IconChevronLeft.js';
@@ -152,6 +158,10 @@ export { IconEyeOffFilled } from './IconEyeOffFilled.js';
152
158
  export { IconEyeOn } from './IconEyeOn.js';
153
159
  export { IconEyeOnFilled } from './IconEyeOnFilled.js';
154
160
  export { IconFacebook } from './IconFacebook.js';
161
+ export { IconFastAcceleration } from './IconFastAcceleration.js';
162
+ export { IconFastAccelerationFilled } from './IconFastAccelerationFilled.js';
163
+ export { IconFeed } from './IconFeed.js';
164
+ export { IconFeedFilled } from './IconFeedFilled.js';
155
165
  export { IconFilter } from './IconFilter.js';
156
166
  export { IconFilterFilled } from './IconFilterFilled.js';
157
167
  export { IconFlag } from './IconFlag.js';
@@ -179,6 +189,8 @@ export { IconInfoFilled } from './IconInfoFilled.js';
179
189
  export { IconInstagram } from './IconInstagram.js';
180
190
  export { IconKeyReset } from './IconKeyReset.js';
181
191
  export { IconKeyResetFilled } from './IconKeyResetFilled.js';
192
+ export { IconLibrary } from './IconLibrary.js';
193
+ export { IconLibraryFilled } from './IconLibraryFilled.js';
182
194
  export { IconLink } from './IconLink.js';
183
195
  export { IconLinkFilled } from './IconLinkFilled.js';
184
196
  export { IconLinkedin } from './IconLinkedin.js';
@@ -218,6 +230,10 @@ export { IconPeople } from './IconPeople.js';
218
230
  export { IconPeopleAdd } from './IconPeopleAdd.js';
219
231
  export { IconPeopleAddFilled } from './IconPeopleAddFilled.js';
220
232
  export { IconPeopleFilled } from './IconPeopleFilled.js';
233
+ export { IconPeopleList } from './IconPeopleList.js';
234
+ export { IconPeopleListFilled } from './IconPeopleListFilled.js';
235
+ export { IconPeopleTeam } from './IconPeopleTeam.js';
236
+ export { IconPeopleTeamFilled } from './IconPeopleTeamFilled.js';
221
237
  export { IconPercent } from './IconPercent.js';
222
238
  export { IconPerson } from './IconPerson.js';
223
239
  export { IconPersonAccount } from './IconPersonAccount.js';
@@ -283,11 +299,14 @@ export { IconTableCellEditFilled } from './IconTableCellEditFilled.js';
283
299
  export { IconTelegram } from './IconTelegram.js';
284
300
  export { IconTimer } from './IconTimer.js';
285
301
  export { IconTimerFilled } from './IconTimerFilled.js';
302
+ export { IconTrophy } from './IconTrophy.js';
303
+ export { IconTrophyFilled } from './IconTrophyFilled.js';
286
304
  export { IconTwitter } from './IconTwitter.js';
287
305
  export { IconUndo } from './IconUndo.js';
288
306
  export { IconUndoFilled } from './IconUndoFilled.js';
289
307
  export { IconUnitsEmployee } from './IconUnitsEmployee.js';
290
308
  export { IconUpload } from './IconUpload.js';
309
+ export { IconUs } from './IconUs.js';
291
310
  export { IconUsd } from './IconUsd.js';
292
311
  export { IconUsdFilled } from './IconUsdFilled.js';
293
312
  export { IconUserMinus } from './IconUserMinus.js';
@@ -298,8 +317,6 @@ export { IconWalletFilled } from './IconWalletFilled.js';
298
317
  export { IconWarning } from './IconWarning.js';
299
318
  export { IconWarningFilled } from './IconWarningFilled.js';
300
319
  export { IconYoutube } from './IconYoutube.js';
301
- export { IconChevronDoubleLeft } from './IconChevronDoubleLeft.js';
302
- export { IconChevronDoubleRight } from './IconChevronDoubleRight.js';
303
320
  import '@babel/runtime/helpers/defineProperty';
304
321
  import 'react';
305
322
  import 'classnames';
@@ -2,8 +2,10 @@ import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
2
2
  import React, { useState, useRef, useId } from 'react';
3
3
  import classNames from 'classnames';
4
4
  import { noop } from '../../../utils/helpers.js';
5
+ import '@babel/runtime/helpers/objectWithoutProperties';
5
6
  import { OptionItem } from '../../../helperComponents/OptionItem/OptionItem.js';
6
7
  import 'react-syntax-highlighter';
8
+ import 'react-syntax-highlighter/dist/esm/styles/prism';
7
9
  import { useGetElemSizes } from '../../../hooks/useGetElemSizes.js';
8
10
  import '../../../consts/index.js';
9
11
  import { useOnOutsideClick } from '../../../hooks/useOnOutsideClick.js';
@@ -11,10 +13,9 @@ import '../../../hooks/useScreenSize.js';
11
13
  import 'react-hook-form';
12
14
  import '@babel/runtime/helpers/extends';
13
15
  import '@babel/runtime/helpers/defineProperty';
14
- import '@babel/runtime/helpers/objectWithoutProperties';
15
- import '../../../Alert-w8FkRd9I.js';
16
+ import '../../../Alert--0rz5XL1.js';
16
17
  import 'react-dom';
17
- import 'framer-motion';
18
+ import 'motion/react';
18
19
  import '../../Collapse/CollapseGroup/CollapseGroup.js';
19
20
  import '../SharedComponents/ContentTop.js';
20
21
  import { Loading } from '../SharedComponents/Loading.js';
@@ -32,8 +33,7 @@ import '../../FileUpload/UploadItems.js';
32
33
  import '../../../hooks/useFormProps.js';
33
34
  import '../../../context/types.js';
34
35
  import '../../../helperComponents/ErrorMessage/ErrorMessage.js';
35
- import '../../../helperComponents/IconDynamicComponent/IconDynamicComponent.js';
36
- import '../../../helperComponents/IconDynamicComponent/constants.js';
36
+ import '../../IconDynamicComponent/IconDynamicComponent.js';
37
37
  import '../../SVGIcons/IconDelete.js';
38
38
  import '../../../type/file-upload.js';
39
39
  import '../../Alert/consts.js';
@@ -41,6 +41,7 @@ import '../../../helperComponents/Loader/Loader.js';
41
41
  import 'react-dropzone';
42
42
  import '../../SVGIcons/IconUpload.js';
43
43
  import '../../../helpers/format-date.js';
44
+ import 'dayjs/plugin/utc';
44
45
  import '../../../helpers/locale.js';
45
46
  import '../../../type/locale.js';
46
47
  import '../../../helpers/storage.js';
@@ -57,6 +58,7 @@ import '../../../hooks/useHideOnScroll.js';
57
58
  import '../../Link/Link.js';
58
59
  import '../../Popover/PopoverDesktop.js';
59
60
  import '../../SVGIcons/IconInfo.js';
61
+ import 'react-toastify/dist/ReactToastify.css';
60
62
  import '@babel/runtime/helpers/typeof';
61
63
  import '../../SVGIcons/IconDismissFilled.js';
62
64
  import '../../FileUpload/DropzoneFileUpload/FilePreview.js';
@@ -1,20 +1,21 @@
1
1
  import React, { useMemo } from 'react';
2
2
  import 'classnames';
3
3
  import 'dayjs';
4
+ import '@babel/runtime/helpers/objectWithoutProperties';
4
5
  import { OptionItem } from '../../../helperComponents/OptionItem/OptionItem.js';
5
6
  import 'react-syntax-highlighter';
7
+ import 'react-syntax-highlighter/dist/esm/styles/prism';
6
8
  import '@babel/runtime/helpers/extends';
7
9
  import '../../Avatar/Avatar.js';
8
10
  import '@babel/runtime/helpers/slicedToArray';
9
11
  import '../../FileUpload/FileUpload.js';
10
12
  import '@babel/runtime/helpers/toConsumableArray';
11
13
  import '../../FileUpload/types.js';
12
- import '../../../Alert-w8FkRd9I.js';
14
+ import '../../../Alert--0rz5XL1.js';
13
15
  import '../../Alert/consts.js';
14
16
  import '../../Text/Text.js';
15
17
  import '../../../utils/helpers.js';
16
18
  import '@babel/runtime/helpers/defineProperty';
17
- import '@babel/runtime/helpers/objectWithoutProperties';
18
19
  import '../../../helperComponents/Loader/Loader.js';
19
20
  import '../../../consts/index.js';
20
21
  import '../../../type/file-upload.js';
@@ -23,12 +24,13 @@ import 'react-hook-form';
23
24
  import 'react-dropzone';
24
25
  import '../../SVGIcons/IconUpload.js';
25
26
  import '../../../helpers/format-date.js';
27
+ import 'dayjs/plugin/utc';
26
28
  import '../../../helpers/locale.js';
27
29
  import '../../../type/locale.js';
28
30
  import '../../../helpers/storage.js';
29
31
  import 'react-toastify';
30
32
  import '../../../hooks/useGetIsMobile.js';
31
- import 'framer-motion';
33
+ import 'motion/react';
32
34
  import '../../../helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.js';
33
35
  import '../../../hooks/useOnOutsideClick.js';
34
36
  import '../../../hooks/useHideBodyScroll.js';
@@ -43,8 +45,8 @@ import '../../../hooks/useHideOnScroll.js';
43
45
  import '../../Link/Link.js';
44
46
  import '../../Popover/PopoverDesktop.js';
45
47
  import '../../SVGIcons/IconInfo.js';
46
- import '../../../helperComponents/IconDynamicComponent/IconDynamicComponent.js';
47
- import '../../../helperComponents/IconDynamicComponent/constants.js';
48
+ import '../../IconDynamicComponent/IconDynamicComponent.js';
49
+ import 'react-toastify/dist/ReactToastify.css';
48
50
  import '@babel/runtime/helpers/typeof';
49
51
  import '../../SVGIcons/IconDismissFilled.js';
50
52
  import '../../SVGIcons/IconDelete.js';