intelicoreact 1.4.82 → 1.4.83

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 (258) hide show
  1. package/dist/Atomic/FormElements/ActionAlert/ActionAlert.js +13 -13
  2. package/dist/Atomic/FormElements/AdvancedStatus/AdvancedStatus.js +12 -13
  3. package/dist/Atomic/FormElements/Calendar/Calendar.js +103 -68
  4. package/dist/Atomic/FormElements/CheckboxInput/CheckboxInput.js +26 -26
  5. package/dist/Atomic/FormElements/CheckboxesLine/CheckboxesLine.js +27 -23
  6. package/dist/Atomic/FormElements/Datepicker/Datepicker.js +201 -114
  7. package/dist/Atomic/FormElements/Datepicker/components/Calendar.js +69 -46
  8. package/dist/Atomic/FormElements/Dropdown/Dropdown.js +301 -230
  9. package/dist/Atomic/FormElements/Dropdown/components/DropdownLoader.js +2 -4
  10. package/dist/Atomic/FormElements/DropdownLiveSearch/DropdownLiveSearch.js +201 -145
  11. package/dist/Atomic/FormElements/FileLoader/FileLoader.js +54 -41
  12. package/dist/Atomic/FormElements/FileLoader/partial/LoadZone.js +112 -45
  13. package/dist/Atomic/FormElements/FileLoader/partial/LoadedContent.js +63 -34
  14. package/dist/Atomic/FormElements/FileLoaderDescription/FileLoaderDescription.js +153 -82
  15. package/dist/Atomic/FormElements/FileLoaderLocal/FileLoaderLocal.js +56 -54
  16. package/dist/Atomic/FormElements/FileLoaderLocalGroup/FileLoaderLocalGroup.js +98 -66
  17. package/dist/Atomic/FormElements/FormattedRawSSN/FormattedRawSSN.js +48 -27
  18. package/dist/Atomic/FormElements/Input/Input.js +209 -148
  19. package/dist/Atomic/FormElements/InputCalendar/InputCalendar.js +77 -50
  20. package/dist/Atomic/FormElements/InputColor/InputColor.js +28 -23
  21. package/dist/Atomic/FormElements/InputCurrency/InputCurrency.js +53 -38
  22. package/dist/Atomic/FormElements/InputDateRange/InputDateRange.js +139 -106
  23. package/dist/Atomic/FormElements/InputDateRange/components/DateInput.js +38 -31
  24. package/dist/Atomic/FormElements/InputDateRange/components/Datepicker.js +230 -135
  25. package/dist/Atomic/FormElements/InputDateRange/components/OpenedPart.js +122 -85
  26. package/dist/Atomic/FormElements/InputDateRange/components/SelectItem.js +8 -10
  27. package/dist/Atomic/FormElements/InputDateRange/dependencies.js +159 -72
  28. package/dist/Atomic/FormElements/InputLink/InputLink.js +39 -30
  29. package/dist/Atomic/FormElements/InputMask/InputCarretPosition.js +8 -8
  30. package/dist/Atomic/FormElements/InputMask/InputMask.js +800 -521
  31. package/dist/Atomic/FormElements/InputMask/config.js +1 -1
  32. package/dist/Atomic/FormElements/InputMask/functions.js +15 -15
  33. package/dist/Atomic/FormElements/InputMask2/InputMask2.js +294 -234
  34. package/dist/Atomic/FormElements/InputMask2/config.js +1 -1
  35. package/dist/Atomic/FormElements/InputMask2/functions.js +15 -15
  36. package/dist/Atomic/FormElements/InputMask3/InputMask3.js +332 -265
  37. package/dist/Atomic/FormElements/InputMask3/config.js +1 -1
  38. package/dist/Atomic/FormElements/InputMask3/functions.js +15 -15
  39. package/dist/Atomic/FormElements/InputWithAction/InputWithAction.js +101 -53
  40. package/dist/Atomic/FormElements/InputsRow/InputsRow.js +99 -64
  41. package/dist/Atomic/FormElements/Label/Label.js +15 -13
  42. package/dist/Atomic/FormElements/MobileCalendar/MobileCalendar.js +284 -190
  43. package/dist/Atomic/FormElements/MultiSelect/MultiSelect.js +34 -24
  44. package/dist/Atomic/FormElements/NumericInput/NumericInput.js +170 -117
  45. package/dist/Atomic/FormElements/RadioGroup/RadioGroup.js +50 -28
  46. package/dist/Atomic/FormElements/RadioGroupWithInput/RadioGroupWithInput.js +29 -18
  47. package/dist/Atomic/FormElements/RadioInput/RadioInput.js +24 -22
  48. package/dist/Atomic/FormElements/RadioRowSwitcher/RadioRowSwitcher.js +31 -19
  49. package/dist/Atomic/FormElements/RangeCalendar/RangeCalendar.js +83 -56
  50. package/dist/Atomic/FormElements/RangeInputs/RangeInputs.js +75 -49
  51. package/dist/Atomic/FormElements/RangeList/RangeList.js +129 -87
  52. package/dist/Atomic/FormElements/RangeList/partial/RangeListRow.js +18 -22
  53. package/dist/Atomic/FormElements/RangeSlider/RangeSlider.js +250 -143
  54. package/dist/Atomic/FormElements/RangeSlider2/RangeSlider2.js +477 -367
  55. package/dist/Atomic/FormElements/SwitchableRow/SwitchableRow.js +15 -14
  56. package/dist/Atomic/FormElements/Switcher/Switcher.js +20 -24
  57. package/dist/Atomic/FormElements/SwitcherCheckbox/SwitcherCheckbox.js +30 -24
  58. package/dist/Atomic/FormElements/SwitcherHide/SwitcherHide.js +23 -20
  59. package/dist/Atomic/FormElements/SwitcherRadio/SwitcherRadio.js +40 -32
  60. package/dist/Atomic/FormElements/SwitcherRange/SwitcherRange.js +31 -25
  61. package/dist/Atomic/FormElements/SwitcherRangeList/SwitcherRangeList.js +22 -22
  62. package/dist/Atomic/FormElements/SwitcherTagsDropdown/SwitcherTagsDropdown.js +98 -52
  63. package/dist/Atomic/FormElements/SwitcherTextarea/SwitcherTextarea.js +34 -22
  64. package/dist/Atomic/FormElements/TagListToDropdown/TagListToDropdown.js +81 -47
  65. package/dist/Atomic/FormElements/TagsDropdown/TagsDropdown.js +525 -415
  66. package/dist/Atomic/FormElements/Text/Text.js +39 -39
  67. package/dist/Atomic/FormElements/TextSwitcher/TextSwitcher.js +23 -21
  68. package/dist/Atomic/FormElements/Textarea/Textarea.js +33 -28
  69. package/dist/Atomic/FormElements/TieredCheckboxes/TieredCheckboxes.js +98 -67
  70. package/dist/Atomic/FormElements/TieredCheckboxes/partial/AccordionWithCheckbox.js +24 -22
  71. package/dist/Atomic/FormElements/TimeRange/TimeRange.js +57 -34
  72. package/dist/Atomic/FormElements/UserContacts/UserContacts.js +94 -56
  73. package/dist/Atomic/FormElements/UserContacts/partial/defaultIcons.js +102 -74
  74. package/dist/Atomic/FormElements/VariantsListRadio/VariantsListRadio.js +69 -50
  75. package/dist/Atomic/FormElements/VariantsListRadio/partials/VariantsListRadioItem.js +33 -30
  76. package/dist/Atomic/FormElements/WidgetPseudoTable/WidgetPseudoTable.js +50 -38
  77. package/dist/Atomic/FormElements/WidgetPseudoTable/partial/constructor.js +1 -1
  78. package/dist/Atomic/FormElements/WidgetWithSwitchableRows/WidgetWithSwitchableRows.js +59 -47
  79. package/dist/Atomic/FormElements/WidgetWithSwitchableRows/partial/constructor.js +1 -1
  80. package/dist/Atomic/Layout/Header/Header.js +37 -22
  81. package/dist/Atomic/Layout/MainMenu/MainMenu.js +59 -34
  82. package/dist/Atomic/Layout/Spinner/Spinner.js +6 -7
  83. package/dist/Atomic/UI/Accordion/Accordion.js +31 -17
  84. package/dist/Atomic/UI/Accordion/AccordionItem.js +41 -30
  85. package/dist/Atomic/UI/AccordionTable/AccordionTable.js +81 -50
  86. package/dist/Atomic/UI/AccordionText/AccordionText.js +39 -20
  87. package/dist/Atomic/UI/AdvancedTag/AdvTag.js +74 -46
  88. package/dist/Atomic/UI/AdvancedTag/AdvancedTags.js +37 -21
  89. package/dist/Atomic/UI/Alert/Alert.js +36 -23
  90. package/dist/Atomic/UI/Arrow/Arrow.js +21 -14
  91. package/dist/Atomic/UI/Box/Box.js +12 -11
  92. package/dist/Atomic/UI/Button/Button.js +26 -26
  93. package/dist/Atomic/UI/ButtonsBar/ButtonsBar.js +21 -21
  94. package/dist/Atomic/UI/Chart/Chart.js +60 -44
  95. package/dist/Atomic/UI/Chart/partial/Chart.constants.js +13 -11
  96. package/dist/Atomic/UI/Chart/partial/ChartTypeSwitcherIcon/ChartTypeSwitcherIcon.js +10 -12
  97. package/dist/Atomic/UI/Chart/partial/datasetSetters.js +82 -60
  98. package/dist/Atomic/UI/Chart/partial/optionsConstructor.js +124 -116
  99. package/dist/Atomic/UI/Chart/partial/optionsSetters.js +30 -18
  100. package/dist/Atomic/UI/Chart/partial/utils.js +30 -16
  101. package/dist/Atomic/UI/CircleProgressBar/CircleProgressBar.js +31 -21
  102. package/dist/Atomic/UI/DateTime/DateTime.js +29 -25
  103. package/dist/Atomic/UI/DebugContainer/DebugContainer.js +23 -11
  104. package/dist/Atomic/UI/DebugContainer/useDebugContainer.js +12 -4
  105. package/dist/Atomic/UI/DoubleString/DoubleString.js +53 -36
  106. package/dist/Atomic/UI/DynamicIcon/DynamicIcon.js +55 -14
  107. package/dist/Atomic/UI/ExampleChartIntegration/ExampleChartIntegration.js +114 -54
  108. package/dist/Atomic/UI/ExampleChartIntegration/partial/utils.js +88 -53
  109. package/dist/Atomic/UI/Hint/Hint.js +87 -58
  110. package/dist/Atomic/UI/Hint/partials/_utils.js +10 -10
  111. package/dist/Atomic/UI/Modal/Modal.js +159 -144
  112. package/dist/Atomic/UI/Modal/ModalHOC.js +17 -14
  113. package/dist/Atomic/UI/Modal/partials/ModalFooter.js +5 -6
  114. package/dist/Atomic/UI/Modal/partials/ModalTitle.js +13 -16
  115. package/dist/Atomic/UI/Modal/partials/useMobileModal.js +118 -73
  116. package/dist/Atomic/UI/MonoAccordion/MonoAccordion.js +48 -33
  117. package/dist/Atomic/UI/NavLine/NavLine.js +166 -104
  118. package/dist/Atomic/UI/PageTitle/PageTitle.js +8 -12
  119. package/dist/Atomic/UI/PieChart/PieChart.js +11 -10
  120. package/dist/Atomic/UI/Price/Price.js +5 -7
  121. package/dist/Atomic/UI/PriceRange/PriceRange.js +4 -6
  122. package/dist/Atomic/UI/ProgressLine/ProgressLine.js +42 -27
  123. package/dist/Atomic/UI/Status/Status.js +22 -18
  124. package/dist/Atomic/UI/Table/Partials/TdCell.js +47 -28
  125. package/dist/Atomic/UI/Table/Partials/TdHeader.js +5 -6
  126. package/dist/Atomic/UI/Table/Partials/TdRow.js +53 -29
  127. package/dist/Atomic/UI/Table/Partials/TdTitle.js +28 -15
  128. package/dist/Atomic/UI/Table/Table.js +36 -27
  129. package/dist/Atomic/UI/Table/TdTypes/TdActions.js +32 -18
  130. package/dist/Atomic/UI/Table/TdTypes/TdPriority.js +10 -8
  131. package/dist/Atomic/UI/Table/TdTypes/TdRange.js +2 -4
  132. package/dist/Atomic/UI/Table/TdTypes/TdWeight.js +26 -21
  133. package/dist/Atomic/UI/Tag/Tag.js +72 -52
  134. package/dist/Atomic/UI/TagList/TagList.js +102 -65
  135. package/dist/Atomic/UI/UserBox/UserBox.js +13 -13
  136. package/dist/Atomic/UI/WizardStepper/constructor.js +6 -6
  137. package/dist/Atomic/UI/WizardStepper/ui/StateIcon/StateIcon.js +16 -20
  138. package/dist/Atomic/UI/WizardStepper/ui/StepRow/StepRow.js +25 -27
  139. package/dist/Atomic/UI/WizardStepper/ui/StepWrapper/StepWrapper.js +27 -22
  140. package/dist/Atomic/UI/WizardStepper/ui/icons.js +41 -39
  141. package/dist/Classes/AbortableFetch.js +393 -311
  142. package/dist/Classes/AnimatedHandler.js +53 -45
  143. package/dist/Classes/RESTAPI/index.js +431 -152
  144. package/dist/Classes/RESTAPI/partials/AbortableFetch.js +400 -320
  145. package/dist/Classes/RESTAPI/partials/ApiBase.js +59 -24
  146. package/dist/Classes/RESTAPI/partials/ApiRequestCreators.js +338 -76
  147. package/dist/Classes/RESTAPI/partials/ApiUtils.js +378 -143
  148. package/dist/Classes/RESTAPI/partials/CredentialsProcessing.js +375 -159
  149. package/dist/Classes/RESTAPI/partials/Utils.js +128 -87
  150. package/dist/Classes/RESTAPI/partials/_utils.js +388 -116
  151. package/dist/Constants/index.constants.js +7 -7
  152. package/dist/Functions/Portal.js +19 -11
  153. package/dist/Functions/customEventListener.js +7 -5
  154. package/dist/Functions/fieldValueFormatters.js +131 -109
  155. package/dist/Functions/hooks/useFormFieldsChangesManager.js +128 -69
  156. package/dist/Functions/locale/createTranslator.js +21 -11
  157. package/dist/Functions/operations.js +27 -23
  158. package/dist/Functions/presets/inputMaskPreset.js +176 -0
  159. package/dist/Functions/presets/inputMaskPresets.js +17 -17
  160. package/dist/Functions/presets/inputPresets.js +15 -15
  161. package/dist/Functions/presets/mobileKeyboardTypesPresets.js +3 -3
  162. package/dist/Functions/schemas.js +7 -5
  163. package/dist/Functions/useBodyScrollLock.js +3 -3
  164. package/dist/Functions/useClickOutside.js +3 -3
  165. package/dist/Functions/useDebounce.js +20 -11
  166. package/dist/Functions/useFieldFocus.js +51 -38
  167. package/dist/Functions/useFormTools/form-drivers/ArrayWithObjects.js +46 -36
  168. package/dist/Functions/useFormTools/form-drivers/ObjectWithIterableObjects.js +78 -68
  169. package/dist/Functions/useFormTools/form-drivers/ObjectWithNamedKeyObjects.js +81 -54
  170. package/dist/Functions/useFormTools/functions/General.js +80 -71
  171. package/dist/Functions/useFormTools/functions/RenderFields.js +63 -45
  172. package/dist/Functions/useFormTools/functions/usePrevious.js +2 -2
  173. package/dist/Functions/useFormTools/index.js +467 -314
  174. package/dist/Functions/useInputHighlightError.js +42 -26
  175. package/dist/Functions/useIsMobile.js +29 -11
  176. package/dist/Functions/useKeyPress/useHandleKeyPress.js +8 -9
  177. package/dist/Functions/useKeyPress/useKeyPress.js +26 -17
  178. package/dist/Functions/useLocalStorage.js +13 -6
  179. package/dist/Functions/useLocationParams.js +24 -14
  180. package/dist/Functions/useMediaQuery.js +18 -7
  181. package/dist/Functions/useMetaInfo.js +40 -16
  182. package/dist/Functions/useMouseUpOutside.js +2 -2
  183. package/dist/Functions/useOnlineStatus.js +17 -6
  184. package/dist/Functions/usePasswordChecker.js +61 -42
  185. package/dist/Functions/usePrevious.js +2 -2
  186. package/dist/Functions/useResize.js +24 -12
  187. package/dist/Functions/useScrollTo.js +13 -4
  188. package/dist/Functions/useToggle.js +25 -9
  189. package/dist/Functions/utils.js +272 -147
  190. package/dist/Molecular/CustomIcons/components/AffiliateNetworks.js +27 -23
  191. package/dist/Molecular/CustomIcons/components/AlertCircle.js +27 -23
  192. package/dist/Molecular/CustomIcons/components/AppStore.js +31 -27
  193. package/dist/Molecular/CustomIcons/components/Arrow.js +37 -33
  194. package/dist/Molecular/CustomIcons/components/ArrowDown.js +19 -15
  195. package/dist/Molecular/CustomIcons/components/ArrowLeft.js +22 -18
  196. package/dist/Molecular/CustomIcons/components/ArrowRight.js +22 -18
  197. package/dist/Molecular/CustomIcons/components/ArrowUp.js +19 -15
  198. package/dist/Molecular/CustomIcons/components/Bell.js +17 -13
  199. package/dist/Molecular/CustomIcons/components/Button.js +17 -13
  200. package/dist/Molecular/CustomIcons/components/Campaigns.js +18 -14
  201. package/dist/Molecular/CustomIcons/components/Check.js +18 -14
  202. package/dist/Molecular/CustomIcons/components/Check2.js +17 -13
  203. package/dist/Molecular/CustomIcons/components/ChevronDown.js +17 -13
  204. package/dist/Molecular/CustomIcons/components/ChevronDownDisabled.js +17 -13
  205. package/dist/Molecular/CustomIcons/components/ChevronLeft.js +17 -13
  206. package/dist/Molecular/CustomIcons/components/ChevronRight.js +17 -13
  207. package/dist/Molecular/CustomIcons/components/ChevronUp.js +17 -13
  208. package/dist/Molecular/CustomIcons/components/ChevronUpDown.js +32 -28
  209. package/dist/Molecular/CustomIcons/components/Close.js +19 -15
  210. package/dist/Molecular/CustomIcons/components/ColumnsOrder.js +44 -40
  211. package/dist/Molecular/CustomIcons/components/Delete.js +18 -14
  212. package/dist/Molecular/CustomIcons/components/Edit.js +17 -13
  213. package/dist/Molecular/CustomIcons/components/Email.js +35 -31
  214. package/dist/Molecular/CustomIcons/components/FinturfLogo.js +25 -21
  215. package/dist/Molecular/CustomIcons/components/FinturfLogo2.js +33 -29
  216. package/dist/Molecular/CustomIcons/components/Flows.js +17 -13
  217. package/dist/Molecular/CustomIcons/components/Gift.js +22 -18
  218. package/dist/Molecular/CustomIcons/components/GoogleAuth.js +31 -27
  219. package/dist/Molecular/CustomIcons/components/GooglePlay.js +31 -27
  220. package/dist/Molecular/CustomIcons/components/HelpCircle.js +20 -16
  221. package/dist/Molecular/CustomIcons/components/HelpCircle2.js +21 -17
  222. package/dist/Molecular/CustomIcons/components/HelpCircleFilled.js +20 -16
  223. package/dist/Molecular/CustomIcons/components/Home.js +20 -16
  224. package/dist/Molecular/CustomIcons/components/Home2.js +23 -19
  225. package/dist/Molecular/CustomIcons/components/Key.js +25 -21
  226. package/dist/Molecular/CustomIcons/components/Landers.js +21 -17
  227. package/dist/Molecular/CustomIcons/components/Lock.js +17 -13
  228. package/dist/Molecular/CustomIcons/components/Mail.js +25 -21
  229. package/dist/Molecular/CustomIcons/components/Mastercard.js +65 -61
  230. package/dist/Molecular/CustomIcons/components/Minus.js +30 -26
  231. package/dist/Molecular/CustomIcons/components/Offers.js +18 -14
  232. package/dist/Molecular/CustomIcons/components/Pause.js +30 -26
  233. package/dist/Molecular/CustomIcons/components/PayPal.js +44 -40
  234. package/dist/Molecular/CustomIcons/components/PayPalLightLarge.js +31 -27
  235. package/dist/Molecular/CustomIcons/components/Phone.js +32 -28
  236. package/dist/Molecular/CustomIcons/components/Play.js +30 -26
  237. package/dist/Molecular/CustomIcons/components/Plus.js +30 -26
  238. package/dist/Molecular/CustomIcons/components/Profile.js +22 -18
  239. package/dist/Molecular/CustomIcons/components/QRCode.js +32 -28
  240. package/dist/Molecular/CustomIcons/components/Rectangle.js +17 -13
  241. package/dist/Molecular/CustomIcons/components/Revert.js +20 -16
  242. package/dist/Molecular/CustomIcons/components/Star.js +14 -10
  243. package/dist/Molecular/CustomIcons/components/Star2.js +18 -14
  244. package/dist/Molecular/CustomIcons/components/TrafficSources.js +20 -16
  245. package/dist/Molecular/CustomIcons/components/Trash.js +17 -13
  246. package/dist/Molecular/CustomIcons/components/TrashRed.js +17 -13
  247. package/dist/Molecular/CustomIcons/components/Triggers.js +17 -13
  248. package/dist/Molecular/CustomIcons/components/User.js +22 -18
  249. package/dist/Molecular/CustomIcons/components/Visa.js +33 -29
  250. package/dist/Molecular/CustomIcons/components/X.js +17 -13
  251. package/dist/Molecular/CustomIcons/index.js +61 -61
  252. package/dist/Molecular/FormElement/FormElement.js +17 -19
  253. package/dist/Molecular/FormWithDependOn/FormWithDependOn.js +93 -73
  254. package/dist/Molecular/FormWithDependOn/partials/_utils.js +27 -28
  255. package/dist/Molecular/InputAddress/InputAddress.js +213 -126
  256. package/dist/Molecular/InputPassword/InputPassword.js +23 -13
  257. package/dist/index.js +1 -1
  258. package/package.json +1 -1
@@ -11,7 +11,7 @@ Object.keys(_AffiliateNetworks).forEach(function (key) {
11
11
  if (key in exports && exports[key] === _AffiliateNetworks[key]) return;
12
12
  Object.defineProperty(exports, key, {
13
13
  enumerable: true,
14
- get: function () {
14
+ get: function get() {
15
15
  return _AffiliateNetworks[key];
16
16
  }
17
17
  });
@@ -24,7 +24,7 @@ Object.keys(_AlertCircle).forEach(function (key) {
24
24
  if (key in exports && exports[key] === _AlertCircle[key]) return;
25
25
  Object.defineProperty(exports, key, {
26
26
  enumerable: true,
27
- get: function () {
27
+ get: function get() {
28
28
  return _AlertCircle[key];
29
29
  }
30
30
  });
@@ -37,7 +37,7 @@ Object.keys(_AppStore).forEach(function (key) {
37
37
  if (key in exports && exports[key] === _AppStore[key]) return;
38
38
  Object.defineProperty(exports, key, {
39
39
  enumerable: true,
40
- get: function () {
40
+ get: function get() {
41
41
  return _AppStore[key];
42
42
  }
43
43
  });
@@ -50,7 +50,7 @@ Object.keys(_Arrow).forEach(function (key) {
50
50
  if (key in exports && exports[key] === _Arrow[key]) return;
51
51
  Object.defineProperty(exports, key, {
52
52
  enumerable: true,
53
- get: function () {
53
+ get: function get() {
54
54
  return _Arrow[key];
55
55
  }
56
56
  });
@@ -63,7 +63,7 @@ Object.keys(_ArrowDown).forEach(function (key) {
63
63
  if (key in exports && exports[key] === _ArrowDown[key]) return;
64
64
  Object.defineProperty(exports, key, {
65
65
  enumerable: true,
66
- get: function () {
66
+ get: function get() {
67
67
  return _ArrowDown[key];
68
68
  }
69
69
  });
@@ -76,7 +76,7 @@ Object.keys(_ArrowLeft).forEach(function (key) {
76
76
  if (key in exports && exports[key] === _ArrowLeft[key]) return;
77
77
  Object.defineProperty(exports, key, {
78
78
  enumerable: true,
79
- get: function () {
79
+ get: function get() {
80
80
  return _ArrowLeft[key];
81
81
  }
82
82
  });
@@ -89,7 +89,7 @@ Object.keys(_ArrowRight).forEach(function (key) {
89
89
  if (key in exports && exports[key] === _ArrowRight[key]) return;
90
90
  Object.defineProperty(exports, key, {
91
91
  enumerable: true,
92
- get: function () {
92
+ get: function get() {
93
93
  return _ArrowRight[key];
94
94
  }
95
95
  });
@@ -102,7 +102,7 @@ Object.keys(_ArrowUp).forEach(function (key) {
102
102
  if (key in exports && exports[key] === _ArrowUp[key]) return;
103
103
  Object.defineProperty(exports, key, {
104
104
  enumerable: true,
105
- get: function () {
105
+ get: function get() {
106
106
  return _ArrowUp[key];
107
107
  }
108
108
  });
@@ -115,7 +115,7 @@ Object.keys(_Bell).forEach(function (key) {
115
115
  if (key in exports && exports[key] === _Bell[key]) return;
116
116
  Object.defineProperty(exports, key, {
117
117
  enumerable: true,
118
- get: function () {
118
+ get: function get() {
119
119
  return _Bell[key];
120
120
  }
121
121
  });
@@ -128,7 +128,7 @@ Object.keys(_Button).forEach(function (key) {
128
128
  if (key in exports && exports[key] === _Button[key]) return;
129
129
  Object.defineProperty(exports, key, {
130
130
  enumerable: true,
131
- get: function () {
131
+ get: function get() {
132
132
  return _Button[key];
133
133
  }
134
134
  });
@@ -141,7 +141,7 @@ Object.keys(_Campaigns).forEach(function (key) {
141
141
  if (key in exports && exports[key] === _Campaigns[key]) return;
142
142
  Object.defineProperty(exports, key, {
143
143
  enumerable: true,
144
- get: function () {
144
+ get: function get() {
145
145
  return _Campaigns[key];
146
146
  }
147
147
  });
@@ -154,7 +154,7 @@ Object.keys(_Check).forEach(function (key) {
154
154
  if (key in exports && exports[key] === _Check[key]) return;
155
155
  Object.defineProperty(exports, key, {
156
156
  enumerable: true,
157
- get: function () {
157
+ get: function get() {
158
158
  return _Check[key];
159
159
  }
160
160
  });
@@ -167,7 +167,7 @@ Object.keys(_Check2).forEach(function (key) {
167
167
  if (key in exports && exports[key] === _Check2[key]) return;
168
168
  Object.defineProperty(exports, key, {
169
169
  enumerable: true,
170
- get: function () {
170
+ get: function get() {
171
171
  return _Check2[key];
172
172
  }
173
173
  });
@@ -180,7 +180,7 @@ Object.keys(_ChevronDown).forEach(function (key) {
180
180
  if (key in exports && exports[key] === _ChevronDown[key]) return;
181
181
  Object.defineProperty(exports, key, {
182
182
  enumerable: true,
183
- get: function () {
183
+ get: function get() {
184
184
  return _ChevronDown[key];
185
185
  }
186
186
  });
@@ -193,7 +193,7 @@ Object.keys(_ChevronDownDisabled).forEach(function (key) {
193
193
  if (key in exports && exports[key] === _ChevronDownDisabled[key]) return;
194
194
  Object.defineProperty(exports, key, {
195
195
  enumerable: true,
196
- get: function () {
196
+ get: function get() {
197
197
  return _ChevronDownDisabled[key];
198
198
  }
199
199
  });
@@ -206,7 +206,7 @@ Object.keys(_ChevronLeft).forEach(function (key) {
206
206
  if (key in exports && exports[key] === _ChevronLeft[key]) return;
207
207
  Object.defineProperty(exports, key, {
208
208
  enumerable: true,
209
- get: function () {
209
+ get: function get() {
210
210
  return _ChevronLeft[key];
211
211
  }
212
212
  });
@@ -219,7 +219,7 @@ Object.keys(_ChevronRight).forEach(function (key) {
219
219
  if (key in exports && exports[key] === _ChevronRight[key]) return;
220
220
  Object.defineProperty(exports, key, {
221
221
  enumerable: true,
222
- get: function () {
222
+ get: function get() {
223
223
  return _ChevronRight[key];
224
224
  }
225
225
  });
@@ -232,7 +232,7 @@ Object.keys(_ChevronUp).forEach(function (key) {
232
232
  if (key in exports && exports[key] === _ChevronUp[key]) return;
233
233
  Object.defineProperty(exports, key, {
234
234
  enumerable: true,
235
- get: function () {
235
+ get: function get() {
236
236
  return _ChevronUp[key];
237
237
  }
238
238
  });
@@ -245,7 +245,7 @@ Object.keys(_ChevronUpDown).forEach(function (key) {
245
245
  if (key in exports && exports[key] === _ChevronUpDown[key]) return;
246
246
  Object.defineProperty(exports, key, {
247
247
  enumerable: true,
248
- get: function () {
248
+ get: function get() {
249
249
  return _ChevronUpDown[key];
250
250
  }
251
251
  });
@@ -258,7 +258,7 @@ Object.keys(_Close).forEach(function (key) {
258
258
  if (key in exports && exports[key] === _Close[key]) return;
259
259
  Object.defineProperty(exports, key, {
260
260
  enumerable: true,
261
- get: function () {
261
+ get: function get() {
262
262
  return _Close[key];
263
263
  }
264
264
  });
@@ -271,7 +271,7 @@ Object.keys(_ColumnsOrder).forEach(function (key) {
271
271
  if (key in exports && exports[key] === _ColumnsOrder[key]) return;
272
272
  Object.defineProperty(exports, key, {
273
273
  enumerable: true,
274
- get: function () {
274
+ get: function get() {
275
275
  return _ColumnsOrder[key];
276
276
  }
277
277
  });
@@ -284,7 +284,7 @@ Object.keys(_Delete).forEach(function (key) {
284
284
  if (key in exports && exports[key] === _Delete[key]) return;
285
285
  Object.defineProperty(exports, key, {
286
286
  enumerable: true,
287
- get: function () {
287
+ get: function get() {
288
288
  return _Delete[key];
289
289
  }
290
290
  });
@@ -297,7 +297,7 @@ Object.keys(_Edit).forEach(function (key) {
297
297
  if (key in exports && exports[key] === _Edit[key]) return;
298
298
  Object.defineProperty(exports, key, {
299
299
  enumerable: true,
300
- get: function () {
300
+ get: function get() {
301
301
  return _Edit[key];
302
302
  }
303
303
  });
@@ -310,7 +310,7 @@ Object.keys(_Email).forEach(function (key) {
310
310
  if (key in exports && exports[key] === _Email[key]) return;
311
311
  Object.defineProperty(exports, key, {
312
312
  enumerable: true,
313
- get: function () {
313
+ get: function get() {
314
314
  return _Email[key];
315
315
  }
316
316
  });
@@ -323,7 +323,7 @@ Object.keys(_FinturfLogo).forEach(function (key) {
323
323
  if (key in exports && exports[key] === _FinturfLogo[key]) return;
324
324
  Object.defineProperty(exports, key, {
325
325
  enumerable: true,
326
- get: function () {
326
+ get: function get() {
327
327
  return _FinturfLogo[key];
328
328
  }
329
329
  });
@@ -336,7 +336,7 @@ Object.keys(_FinturfLogo2).forEach(function (key) {
336
336
  if (key in exports && exports[key] === _FinturfLogo2[key]) return;
337
337
  Object.defineProperty(exports, key, {
338
338
  enumerable: true,
339
- get: function () {
339
+ get: function get() {
340
340
  return _FinturfLogo2[key];
341
341
  }
342
342
  });
@@ -349,7 +349,7 @@ Object.keys(_Flows).forEach(function (key) {
349
349
  if (key in exports && exports[key] === _Flows[key]) return;
350
350
  Object.defineProperty(exports, key, {
351
351
  enumerable: true,
352
- get: function () {
352
+ get: function get() {
353
353
  return _Flows[key];
354
354
  }
355
355
  });
@@ -362,7 +362,7 @@ Object.keys(_Gift).forEach(function (key) {
362
362
  if (key in exports && exports[key] === _Gift[key]) return;
363
363
  Object.defineProperty(exports, key, {
364
364
  enumerable: true,
365
- get: function () {
365
+ get: function get() {
366
366
  return _Gift[key];
367
367
  }
368
368
  });
@@ -375,7 +375,7 @@ Object.keys(_GoogleAuth).forEach(function (key) {
375
375
  if (key in exports && exports[key] === _GoogleAuth[key]) return;
376
376
  Object.defineProperty(exports, key, {
377
377
  enumerable: true,
378
- get: function () {
378
+ get: function get() {
379
379
  return _GoogleAuth[key];
380
380
  }
381
381
  });
@@ -388,7 +388,7 @@ Object.keys(_GooglePlay).forEach(function (key) {
388
388
  if (key in exports && exports[key] === _GooglePlay[key]) return;
389
389
  Object.defineProperty(exports, key, {
390
390
  enumerable: true,
391
- get: function () {
391
+ get: function get() {
392
392
  return _GooglePlay[key];
393
393
  }
394
394
  });
@@ -401,7 +401,7 @@ Object.keys(_HelpCircle).forEach(function (key) {
401
401
  if (key in exports && exports[key] === _HelpCircle[key]) return;
402
402
  Object.defineProperty(exports, key, {
403
403
  enumerable: true,
404
- get: function () {
404
+ get: function get() {
405
405
  return _HelpCircle[key];
406
406
  }
407
407
  });
@@ -414,7 +414,7 @@ Object.keys(_HelpCircle2).forEach(function (key) {
414
414
  if (key in exports && exports[key] === _HelpCircle2[key]) return;
415
415
  Object.defineProperty(exports, key, {
416
416
  enumerable: true,
417
- get: function () {
417
+ get: function get() {
418
418
  return _HelpCircle2[key];
419
419
  }
420
420
  });
@@ -427,7 +427,7 @@ Object.keys(_HelpCircleFilled).forEach(function (key) {
427
427
  if (key in exports && exports[key] === _HelpCircleFilled[key]) return;
428
428
  Object.defineProperty(exports, key, {
429
429
  enumerable: true,
430
- get: function () {
430
+ get: function get() {
431
431
  return _HelpCircleFilled[key];
432
432
  }
433
433
  });
@@ -440,7 +440,7 @@ Object.keys(_Home).forEach(function (key) {
440
440
  if (key in exports && exports[key] === _Home[key]) return;
441
441
  Object.defineProperty(exports, key, {
442
442
  enumerable: true,
443
- get: function () {
443
+ get: function get() {
444
444
  return _Home[key];
445
445
  }
446
446
  });
@@ -453,7 +453,7 @@ Object.keys(_Home2).forEach(function (key) {
453
453
  if (key in exports && exports[key] === _Home2[key]) return;
454
454
  Object.defineProperty(exports, key, {
455
455
  enumerable: true,
456
- get: function () {
456
+ get: function get() {
457
457
  return _Home2[key];
458
458
  }
459
459
  });
@@ -466,7 +466,7 @@ Object.keys(_Key).forEach(function (key) {
466
466
  if (key in exports && exports[key] === _Key[key]) return;
467
467
  Object.defineProperty(exports, key, {
468
468
  enumerable: true,
469
- get: function () {
469
+ get: function get() {
470
470
  return _Key[key];
471
471
  }
472
472
  });
@@ -479,7 +479,7 @@ Object.keys(_Landers).forEach(function (key) {
479
479
  if (key in exports && exports[key] === _Landers[key]) return;
480
480
  Object.defineProperty(exports, key, {
481
481
  enumerable: true,
482
- get: function () {
482
+ get: function get() {
483
483
  return _Landers[key];
484
484
  }
485
485
  });
@@ -492,7 +492,7 @@ Object.keys(_Lock).forEach(function (key) {
492
492
  if (key in exports && exports[key] === _Lock[key]) return;
493
493
  Object.defineProperty(exports, key, {
494
494
  enumerable: true,
495
- get: function () {
495
+ get: function get() {
496
496
  return _Lock[key];
497
497
  }
498
498
  });
@@ -505,7 +505,7 @@ Object.keys(_Mail).forEach(function (key) {
505
505
  if (key in exports && exports[key] === _Mail[key]) return;
506
506
  Object.defineProperty(exports, key, {
507
507
  enumerable: true,
508
- get: function () {
508
+ get: function get() {
509
509
  return _Mail[key];
510
510
  }
511
511
  });
@@ -518,7 +518,7 @@ Object.keys(_Mastercard).forEach(function (key) {
518
518
  if (key in exports && exports[key] === _Mastercard[key]) return;
519
519
  Object.defineProperty(exports, key, {
520
520
  enumerable: true,
521
- get: function () {
521
+ get: function get() {
522
522
  return _Mastercard[key];
523
523
  }
524
524
  });
@@ -531,7 +531,7 @@ Object.keys(_Minus).forEach(function (key) {
531
531
  if (key in exports && exports[key] === _Minus[key]) return;
532
532
  Object.defineProperty(exports, key, {
533
533
  enumerable: true,
534
- get: function () {
534
+ get: function get() {
535
535
  return _Minus[key];
536
536
  }
537
537
  });
@@ -544,7 +544,7 @@ Object.keys(_Offers).forEach(function (key) {
544
544
  if (key in exports && exports[key] === _Offers[key]) return;
545
545
  Object.defineProperty(exports, key, {
546
546
  enumerable: true,
547
- get: function () {
547
+ get: function get() {
548
548
  return _Offers[key];
549
549
  }
550
550
  });
@@ -557,7 +557,7 @@ Object.keys(_Pause).forEach(function (key) {
557
557
  if (key in exports && exports[key] === _Pause[key]) return;
558
558
  Object.defineProperty(exports, key, {
559
559
  enumerable: true,
560
- get: function () {
560
+ get: function get() {
561
561
  return _Pause[key];
562
562
  }
563
563
  });
@@ -570,7 +570,7 @@ Object.keys(_PayPal).forEach(function (key) {
570
570
  if (key in exports && exports[key] === _PayPal[key]) return;
571
571
  Object.defineProperty(exports, key, {
572
572
  enumerable: true,
573
- get: function () {
573
+ get: function get() {
574
574
  return _PayPal[key];
575
575
  }
576
576
  });
@@ -583,7 +583,7 @@ Object.keys(_PayPalLightLarge).forEach(function (key) {
583
583
  if (key in exports && exports[key] === _PayPalLightLarge[key]) return;
584
584
  Object.defineProperty(exports, key, {
585
585
  enumerable: true,
586
- get: function () {
586
+ get: function get() {
587
587
  return _PayPalLightLarge[key];
588
588
  }
589
589
  });
@@ -596,7 +596,7 @@ Object.keys(_Phone).forEach(function (key) {
596
596
  if (key in exports && exports[key] === _Phone[key]) return;
597
597
  Object.defineProperty(exports, key, {
598
598
  enumerable: true,
599
- get: function () {
599
+ get: function get() {
600
600
  return _Phone[key];
601
601
  }
602
602
  });
@@ -609,7 +609,7 @@ Object.keys(_Play).forEach(function (key) {
609
609
  if (key in exports && exports[key] === _Play[key]) return;
610
610
  Object.defineProperty(exports, key, {
611
611
  enumerable: true,
612
- get: function () {
612
+ get: function get() {
613
613
  return _Play[key];
614
614
  }
615
615
  });
@@ -622,7 +622,7 @@ Object.keys(_Plus).forEach(function (key) {
622
622
  if (key in exports && exports[key] === _Plus[key]) return;
623
623
  Object.defineProperty(exports, key, {
624
624
  enumerable: true,
625
- get: function () {
625
+ get: function get() {
626
626
  return _Plus[key];
627
627
  }
628
628
  });
@@ -635,7 +635,7 @@ Object.keys(_Profile).forEach(function (key) {
635
635
  if (key in exports && exports[key] === _Profile[key]) return;
636
636
  Object.defineProperty(exports, key, {
637
637
  enumerable: true,
638
- get: function () {
638
+ get: function get() {
639
639
  return _Profile[key];
640
640
  }
641
641
  });
@@ -648,7 +648,7 @@ Object.keys(_QRCode).forEach(function (key) {
648
648
  if (key in exports && exports[key] === _QRCode[key]) return;
649
649
  Object.defineProperty(exports, key, {
650
650
  enumerable: true,
651
- get: function () {
651
+ get: function get() {
652
652
  return _QRCode[key];
653
653
  }
654
654
  });
@@ -661,7 +661,7 @@ Object.keys(_Rectangle).forEach(function (key) {
661
661
  if (key in exports && exports[key] === _Rectangle[key]) return;
662
662
  Object.defineProperty(exports, key, {
663
663
  enumerable: true,
664
- get: function () {
664
+ get: function get() {
665
665
  return _Rectangle[key];
666
666
  }
667
667
  });
@@ -674,7 +674,7 @@ Object.keys(_Revert).forEach(function (key) {
674
674
  if (key in exports && exports[key] === _Revert[key]) return;
675
675
  Object.defineProperty(exports, key, {
676
676
  enumerable: true,
677
- get: function () {
677
+ get: function get() {
678
678
  return _Revert[key];
679
679
  }
680
680
  });
@@ -687,7 +687,7 @@ Object.keys(_Star).forEach(function (key) {
687
687
  if (key in exports && exports[key] === _Star[key]) return;
688
688
  Object.defineProperty(exports, key, {
689
689
  enumerable: true,
690
- get: function () {
690
+ get: function get() {
691
691
  return _Star[key];
692
692
  }
693
693
  });
@@ -700,7 +700,7 @@ Object.keys(_Star2).forEach(function (key) {
700
700
  if (key in exports && exports[key] === _Star2[key]) return;
701
701
  Object.defineProperty(exports, key, {
702
702
  enumerable: true,
703
- get: function () {
703
+ get: function get() {
704
704
  return _Star2[key];
705
705
  }
706
706
  });
@@ -713,7 +713,7 @@ Object.keys(_TrafficSources).forEach(function (key) {
713
713
  if (key in exports && exports[key] === _TrafficSources[key]) return;
714
714
  Object.defineProperty(exports, key, {
715
715
  enumerable: true,
716
- get: function () {
716
+ get: function get() {
717
717
  return _TrafficSources[key];
718
718
  }
719
719
  });
@@ -726,7 +726,7 @@ Object.keys(_Trash).forEach(function (key) {
726
726
  if (key in exports && exports[key] === _Trash[key]) return;
727
727
  Object.defineProperty(exports, key, {
728
728
  enumerable: true,
729
- get: function () {
729
+ get: function get() {
730
730
  return _Trash[key];
731
731
  }
732
732
  });
@@ -739,7 +739,7 @@ Object.keys(_TrashRed).forEach(function (key) {
739
739
  if (key in exports && exports[key] === _TrashRed[key]) return;
740
740
  Object.defineProperty(exports, key, {
741
741
  enumerable: true,
742
- get: function () {
742
+ get: function get() {
743
743
  return _TrashRed[key];
744
744
  }
745
745
  });
@@ -752,7 +752,7 @@ Object.keys(_Triggers).forEach(function (key) {
752
752
  if (key in exports && exports[key] === _Triggers[key]) return;
753
753
  Object.defineProperty(exports, key, {
754
754
  enumerable: true,
755
- get: function () {
755
+ get: function get() {
756
756
  return _Triggers[key];
757
757
  }
758
758
  });
@@ -765,7 +765,7 @@ Object.keys(_User).forEach(function (key) {
765
765
  if (key in exports && exports[key] === _User[key]) return;
766
766
  Object.defineProperty(exports, key, {
767
767
  enumerable: true,
768
- get: function () {
768
+ get: function get() {
769
769
  return _User[key];
770
770
  }
771
771
  });
@@ -778,7 +778,7 @@ Object.keys(_Visa).forEach(function (key) {
778
778
  if (key in exports && exports[key] === _Visa[key]) return;
779
779
  Object.defineProperty(exports, key, {
780
780
  enumerable: true,
781
- get: function () {
781
+ get: function get() {
782
782
  return _Visa[key];
783
783
  }
784
784
  });
@@ -791,7 +791,7 @@ Object.keys(_X).forEach(function (key) {
791
791
  if (key in exports && exports[key] === _X[key]) return;
792
792
  Object.defineProperty(exports, key, {
793
793
  enumerable: true,
794
- get: function () {
794
+ get: function get() {
795
795
  return _X[key];
796
796
  }
797
797
  });
@@ -9,6 +9,8 @@ exports.default = void 0;
9
9
 
10
10
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
11
 
12
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
13
+
12
14
  var _react = _interopRequireDefault(require("react"));
13
15
 
14
16
  var _classnames = _interopRequireDefault(require("classnames"));
@@ -19,22 +21,20 @@ var _Alert = _interopRequireDefault(require("./../../Atomic/UI/Alert/Alert"));
19
21
 
20
22
  require("./FormElement.scss");
21
23
 
22
- const RC = "form-element";
23
-
24
- const FormElement = _ref => {
25
- let {
26
- label,
27
- required,
28
- children,
29
- error,
30
- className,
31
- hint,
32
- isLabelBolt,
33
- isNoLabel,
34
- alert,
35
- onClickHintCallback,
36
- note
37
- } = _ref;
24
+ var RC = "form-element";
25
+
26
+ var FormElement = function FormElement(_ref) {
27
+ var label = _ref.label,
28
+ required = _ref.required,
29
+ children = _ref.children,
30
+ error = _ref.error,
31
+ className = _ref.className,
32
+ hint = _ref.hint,
33
+ isLabelBolt = _ref.isLabelBolt,
34
+ isNoLabel = _ref.isNoLabel,
35
+ alert = _ref.alert,
36
+ onClickHintCallback = _ref.onClickHintCallback,
37
+ note = _ref.note;
38
38
  return /*#__PURE__*/_react.default.createElement("div", {
39
39
  className: (0, _classnames.default)(className, RC)
40
40
  }, label && !isNoLabel && /*#__PURE__*/_react.default.createElement(_Label.default, {
@@ -46,9 +46,7 @@ const FormElement = _ref => {
46
46
  isLabelBolt: isLabelBolt,
47
47
  onClickHintCallback: onClickHintCallback
48
48
  }), children, error && /*#__PURE__*/_react.default.createElement("span", {
49
- className: (0, _classnames.default)("".concat(RC, "__error"), {
50
- ["".concat(RC, "__error--with-alert")]: alert
51
- })
49
+ className: (0, _classnames.default)("".concat(RC, "__error"), (0, _defineProperty2.default)({}, "".concat(RC, "__error--with-alert"), alert))
52
50
  }, error), alert && /*#__PURE__*/_react.default.createElement(_Alert.default, (0, _extends2.default)({
53
51
  className: "".concat(RC, "__alert")
54
52
  }, alert)));