@pinuts/bsr-uikit-relaunch 0.0.3 → 0.0.4

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 (2356) hide show
  1. package/node_modules/@babel/runtime/LICENSE +22 -0
  2. package/node_modules/@babel/runtime/README.md +19 -0
  3. package/node_modules/@babel/runtime/helpers/AwaitValue.js +4 -0
  4. package/node_modules/@babel/runtime/helpers/OverloadYield.js +4 -0
  5. package/node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js +9 -0
  6. package/node_modules/@babel/runtime/helpers/applyDecs.js +236 -0
  7. package/node_modules/@babel/runtime/helpers/applyDecs2203.js +184 -0
  8. package/node_modules/@babel/runtime/helpers/applyDecs2203R.js +191 -0
  9. package/node_modules/@babel/runtime/helpers/applyDecs2301.js +222 -0
  10. package/node_modules/@babel/runtime/helpers/applyDecs2305.js +133 -0
  11. package/node_modules/@babel/runtime/helpers/applyDecs2311.js +124 -0
  12. package/node_modules/@babel/runtime/helpers/arrayLikeToArray.js +6 -0
  13. package/node_modules/@babel/runtime/helpers/arrayWithHoles.js +4 -0
  14. package/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js +5 -0
  15. package/node_modules/@babel/runtime/helpers/assertClassBrand.js +5 -0
  16. package/node_modules/@babel/runtime/helpers/assertThisInitialized.js +5 -0
  17. package/node_modules/@babel/runtime/helpers/asyncGeneratorDelegate.js +24 -0
  18. package/node_modules/@babel/runtime/helpers/asyncIterator.js +45 -0
  19. package/node_modules/@babel/runtime/helpers/asyncToGenerator.js +26 -0
  20. package/node_modules/@babel/runtime/helpers/awaitAsyncGenerator.js +5 -0
  21. package/node_modules/@babel/runtime/helpers/callSuper.js +7 -0
  22. package/node_modules/@babel/runtime/helpers/checkInRHS.js +6 -0
  23. package/node_modules/@babel/runtime/helpers/checkPrivateRedeclaration.js +4 -0
  24. package/node_modules/@babel/runtime/helpers/classApplyDescriptorDestructureSet.js +10 -0
  25. package/node_modules/@babel/runtime/helpers/classApplyDescriptorGet.js +4 -0
  26. package/node_modules/@babel/runtime/helpers/classApplyDescriptorSet.js +7 -0
  27. package/node_modules/@babel/runtime/helpers/classCallCheck.js +4 -0
  28. package/node_modules/@babel/runtime/helpers/classCheckPrivateStaticAccess.js +5 -0
  29. package/node_modules/@babel/runtime/helpers/classCheckPrivateStaticFieldDescriptor.js +4 -0
  30. package/node_modules/@babel/runtime/helpers/classExtractFieldDescriptor.js +5 -0
  31. package/node_modules/@babel/runtime/helpers/classNameTDZError.js +4 -0
  32. package/node_modules/@babel/runtime/helpers/classPrivateFieldDestructureSet.js +7 -0
  33. package/node_modules/@babel/runtime/helpers/classPrivateFieldGet.js +7 -0
  34. package/node_modules/@babel/runtime/helpers/classPrivateFieldGet2.js +5 -0
  35. package/node_modules/@babel/runtime/helpers/classPrivateFieldInitSpec.js +5 -0
  36. package/node_modules/@babel/runtime/helpers/classPrivateFieldLooseBase.js +5 -0
  37. package/node_modules/@babel/runtime/helpers/classPrivateFieldLooseKey.js +5 -0
  38. package/node_modules/@babel/runtime/helpers/classPrivateFieldSet.js +7 -0
  39. package/node_modules/@babel/runtime/helpers/classPrivateFieldSet2.js +5 -0
  40. package/node_modules/@babel/runtime/helpers/classPrivateGetter.js +5 -0
  41. package/node_modules/@babel/runtime/helpers/classPrivateMethodGet.js +5 -0
  42. package/node_modules/@babel/runtime/helpers/classPrivateMethodInitSpec.js +5 -0
  43. package/node_modules/@babel/runtime/helpers/classPrivateMethodSet.js +4 -0
  44. package/node_modules/@babel/runtime/helpers/classPrivateSetter.js +5 -0
  45. package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldDestructureSet.js +7 -0
  46. package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecGet.js +7 -0
  47. package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecSet.js +7 -0
  48. package/node_modules/@babel/runtime/helpers/classStaticPrivateMethodGet.js +5 -0
  49. package/node_modules/@babel/runtime/helpers/classStaticPrivateMethodSet.js +4 -0
  50. package/node_modules/@babel/runtime/helpers/construct.js +10 -0
  51. package/node_modules/@babel/runtime/helpers/createClass.js +13 -0
  52. package/node_modules/@babel/runtime/helpers/createForOfIteratorHelper.js +50 -0
  53. package/node_modules/@babel/runtime/helpers/createForOfIteratorHelperLoose.js +19 -0
  54. package/node_modules/@babel/runtime/helpers/createSuper.js +16 -0
  55. package/node_modules/@babel/runtime/helpers/decorate.js +250 -0
  56. package/node_modules/@babel/runtime/helpers/defaults.js +9 -0
  57. package/node_modules/@babel/runtime/helpers/defineAccessor.js +8 -0
  58. package/node_modules/@babel/runtime/helpers/defineEnumerableProperties.js +12 -0
  59. package/node_modules/@babel/runtime/helpers/defineProperty.js +10 -0
  60. package/node_modules/@babel/runtime/helpers/dispose.js +28 -0
  61. package/node_modules/@babel/runtime/helpers/esm/AwaitValue.js +4 -0
  62. package/node_modules/@babel/runtime/helpers/esm/OverloadYield.js +4 -0
  63. package/node_modules/@babel/runtime/helpers/esm/applyDecoratedDescriptor.js +9 -0
  64. package/node_modules/@babel/runtime/helpers/esm/applyDecs.js +236 -0
  65. package/node_modules/@babel/runtime/helpers/esm/applyDecs2203.js +184 -0
  66. package/node_modules/@babel/runtime/helpers/esm/applyDecs2203R.js +191 -0
  67. package/node_modules/@babel/runtime/helpers/esm/applyDecs2301.js +222 -0
  68. package/node_modules/@babel/runtime/helpers/esm/applyDecs2305.js +133 -0
  69. package/node_modules/@babel/runtime/helpers/esm/applyDecs2311.js +124 -0
  70. package/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js +6 -0
  71. package/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js +4 -0
  72. package/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js +5 -0
  73. package/node_modules/@babel/runtime/helpers/esm/assertClassBrand.js +5 -0
  74. package/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +5 -0
  75. package/node_modules/@babel/runtime/helpers/esm/asyncGeneratorDelegate.js +24 -0
  76. package/node_modules/@babel/runtime/helpers/esm/asyncIterator.js +45 -0
  77. package/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js +26 -0
  78. package/node_modules/@babel/runtime/helpers/esm/awaitAsyncGenerator.js +5 -0
  79. package/node_modules/@babel/runtime/helpers/esm/callSuper.js +7 -0
  80. package/node_modules/@babel/runtime/helpers/esm/checkInRHS.js +6 -0
  81. package/node_modules/@babel/runtime/helpers/esm/checkPrivateRedeclaration.js +4 -0
  82. package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorDestructureSet.js +10 -0
  83. package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorGet.js +4 -0
  84. package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorSet.js +7 -0
  85. package/node_modules/@babel/runtime/helpers/esm/classCallCheck.js +4 -0
  86. package/node_modules/@babel/runtime/helpers/esm/classCheckPrivateStaticAccess.js +5 -0
  87. package/node_modules/@babel/runtime/helpers/esm/classCheckPrivateStaticFieldDescriptor.js +4 -0
  88. package/node_modules/@babel/runtime/helpers/esm/classExtractFieldDescriptor.js +5 -0
  89. package/node_modules/@babel/runtime/helpers/esm/classNameTDZError.js +4 -0
  90. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldDestructureSet.js +7 -0
  91. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldGet.js +7 -0
  92. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldGet2.js +5 -0
  93. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldInitSpec.js +5 -0
  94. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseBase.js +5 -0
  95. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseKey.js +5 -0
  96. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldSet.js +7 -0
  97. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldSet2.js +5 -0
  98. package/node_modules/@babel/runtime/helpers/esm/classPrivateGetter.js +5 -0
  99. package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodGet.js +5 -0
  100. package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodInitSpec.js +5 -0
  101. package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodSet.js +4 -0
  102. package/node_modules/@babel/runtime/helpers/esm/classPrivateSetter.js +5 -0
  103. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldDestructureSet.js +7 -0
  104. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecGet.js +7 -0
  105. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecSet.js +7 -0
  106. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodGet.js +5 -0
  107. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodSet.js +4 -0
  108. package/node_modules/@babel/runtime/helpers/esm/construct.js +10 -0
  109. package/node_modules/@babel/runtime/helpers/esm/createClass.js +13 -0
  110. package/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelper.js +50 -0
  111. package/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelperLoose.js +19 -0
  112. package/node_modules/@babel/runtime/helpers/esm/createSuper.js +16 -0
  113. package/node_modules/@babel/runtime/helpers/esm/decorate.js +250 -0
  114. package/node_modules/@babel/runtime/helpers/esm/defaults.js +9 -0
  115. package/node_modules/@babel/runtime/helpers/esm/defineAccessor.js +8 -0
  116. package/node_modules/@babel/runtime/helpers/esm/defineEnumerableProperties.js +12 -0
  117. package/node_modules/@babel/runtime/helpers/esm/defineProperty.js +10 -0
  118. package/node_modules/@babel/runtime/helpers/esm/dispose.js +28 -0
  119. package/node_modules/@babel/runtime/helpers/esm/extends.js +10 -0
  120. package/node_modules/@babel/runtime/helpers/esm/get.js +11 -0
  121. package/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js +6 -0
  122. package/node_modules/@babel/runtime/helpers/esm/identity.js +4 -0
  123. package/node_modules/@babel/runtime/helpers/esm/importDeferProxy.js +27 -0
  124. package/node_modules/@babel/runtime/helpers/esm/inherits.js +14 -0
  125. package/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js +5 -0
  126. package/node_modules/@babel/runtime/helpers/esm/initializerDefineProperty.js +9 -0
  127. package/node_modules/@babel/runtime/helpers/esm/initializerWarningHelper.js +4 -0
  128. package/node_modules/@babel/runtime/helpers/esm/instanceof.js +4 -0
  129. package/node_modules/@babel/runtime/helpers/esm/interopRequireDefault.js +6 -0
  130. package/node_modules/@babel/runtime/helpers/esm/interopRequireWildcard.js +27 -0
  131. package/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js +8 -0
  132. package/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js +9 -0
  133. package/node_modules/@babel/runtime/helpers/esm/iterableToArray.js +4 -0
  134. package/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +28 -0
  135. package/node_modules/@babel/runtime/helpers/esm/jsx.js +22 -0
  136. package/node_modules/@babel/runtime/helpers/esm/maybeArrayLike.js +9 -0
  137. package/node_modules/@babel/runtime/helpers/esm/newArrowCheck.js +4 -0
  138. package/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js +4 -0
  139. package/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js +4 -0
  140. package/node_modules/@babel/runtime/helpers/esm/nullishReceiverError.js +4 -0
  141. package/node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.js +4 -0
  142. package/node_modules/@babel/runtime/helpers/esm/objectSpread.js +14 -0
  143. package/node_modules/@babel/runtime/helpers/esm/objectSpread2.js +23 -0
  144. package/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js +13 -0
  145. package/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +10 -0
  146. package/node_modules/@babel/runtime/helpers/esm/package.json +3 -0
  147. package/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js +8 -0
  148. package/node_modules/@babel/runtime/helpers/esm/readOnlyError.js +4 -0
  149. package/node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js +304 -0
  150. package/node_modules/@babel/runtime/helpers/esm/set.js +22 -0
  151. package/node_modules/@babel/runtime/helpers/esm/setFunctionName.js +12 -0
  152. package/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +6 -0
  153. package/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js +7 -0
  154. package/node_modules/@babel/runtime/helpers/esm/slicedToArray.js +8 -0
  155. package/node_modules/@babel/runtime/helpers/esm/superPropBase.js +6 -0
  156. package/node_modules/@babel/runtime/helpers/esm/superPropGet.js +9 -0
  157. package/node_modules/@babel/runtime/helpers/esm/superPropSet.js +6 -0
  158. package/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js +8 -0
  159. package/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteralLoose.js +4 -0
  160. package/node_modules/@babel/runtime/helpers/esm/tdz.js +4 -0
  161. package/node_modules/@babel/runtime/helpers/esm/temporalRef.js +6 -0
  162. package/node_modules/@babel/runtime/helpers/esm/temporalUndefined.js +2 -0
  163. package/node_modules/@babel/runtime/helpers/esm/toArray.js +8 -0
  164. package/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js +8 -0
  165. package/node_modules/@babel/runtime/helpers/esm/toPrimitive.js +12 -0
  166. package/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js +7 -0
  167. package/node_modules/@babel/runtime/helpers/esm/toSetter.js +10 -0
  168. package/node_modules/@babel/runtime/helpers/esm/typeof.js +10 -0
  169. package/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +9 -0
  170. package/node_modules/@babel/runtime/helpers/esm/using.js +12 -0
  171. package/node_modules/@babel/runtime/helpers/esm/usingCtx.js +59 -0
  172. package/node_modules/@babel/runtime/helpers/esm/wrapAsyncGenerator.js +69 -0
  173. package/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js +27 -0
  174. package/node_modules/@babel/runtime/helpers/esm/wrapRegExp.js +51 -0
  175. package/node_modules/@babel/runtime/helpers/esm/writeOnlyError.js +4 -0
  176. package/node_modules/@babel/runtime/helpers/extends.js +10 -0
  177. package/node_modules/@babel/runtime/helpers/get.js +11 -0
  178. package/node_modules/@babel/runtime/helpers/getPrototypeOf.js +6 -0
  179. package/node_modules/@babel/runtime/helpers/identity.js +4 -0
  180. package/node_modules/@babel/runtime/helpers/importDeferProxy.js +27 -0
  181. package/node_modules/@babel/runtime/helpers/inherits.js +14 -0
  182. package/node_modules/@babel/runtime/helpers/inheritsLoose.js +5 -0
  183. package/node_modules/@babel/runtime/helpers/initializerDefineProperty.js +9 -0
  184. package/node_modules/@babel/runtime/helpers/initializerWarningHelper.js +4 -0
  185. package/node_modules/@babel/runtime/helpers/instanceof.js +4 -0
  186. package/node_modules/@babel/runtime/helpers/interopRequireDefault.js +6 -0
  187. package/node_modules/@babel/runtime/helpers/interopRequireWildcard.js +27 -0
  188. package/node_modules/@babel/runtime/helpers/isNativeFunction.js +8 -0
  189. package/node_modules/@babel/runtime/helpers/isNativeReflectConstruct.js +9 -0
  190. package/node_modules/@babel/runtime/helpers/iterableToArray.js +4 -0
  191. package/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js +28 -0
  192. package/node_modules/@babel/runtime/helpers/jsx.js +22 -0
  193. package/node_modules/@babel/runtime/helpers/maybeArrayLike.js +9 -0
  194. package/node_modules/@babel/runtime/helpers/newArrowCheck.js +4 -0
  195. package/node_modules/@babel/runtime/helpers/nonIterableRest.js +4 -0
  196. package/node_modules/@babel/runtime/helpers/nonIterableSpread.js +4 -0
  197. package/node_modules/@babel/runtime/helpers/nullishReceiverError.js +4 -0
  198. package/node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js +4 -0
  199. package/node_modules/@babel/runtime/helpers/objectSpread.js +14 -0
  200. package/node_modules/@babel/runtime/helpers/objectSpread2.js +23 -0
  201. package/node_modules/@babel/runtime/helpers/objectWithoutProperties.js +13 -0
  202. package/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js +10 -0
  203. package/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js +8 -0
  204. package/node_modules/@babel/runtime/helpers/readOnlyError.js +4 -0
  205. package/node_modules/@babel/runtime/helpers/regeneratorRuntime.js +304 -0
  206. package/node_modules/@babel/runtime/helpers/set.js +22 -0
  207. package/node_modules/@babel/runtime/helpers/setFunctionName.js +12 -0
  208. package/node_modules/@babel/runtime/helpers/setPrototypeOf.js +6 -0
  209. package/node_modules/@babel/runtime/helpers/skipFirstGeneratorNext.js +7 -0
  210. package/node_modules/@babel/runtime/helpers/slicedToArray.js +8 -0
  211. package/node_modules/@babel/runtime/helpers/superPropBase.js +6 -0
  212. package/node_modules/@babel/runtime/helpers/superPropGet.js +9 -0
  213. package/node_modules/@babel/runtime/helpers/superPropSet.js +6 -0
  214. package/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js +8 -0
  215. package/node_modules/@babel/runtime/helpers/taggedTemplateLiteralLoose.js +4 -0
  216. package/node_modules/@babel/runtime/helpers/tdz.js +4 -0
  217. package/node_modules/@babel/runtime/helpers/temporalRef.js +6 -0
  218. package/node_modules/@babel/runtime/helpers/temporalUndefined.js +2 -0
  219. package/node_modules/@babel/runtime/helpers/toArray.js +8 -0
  220. package/node_modules/@babel/runtime/helpers/toConsumableArray.js +8 -0
  221. package/node_modules/@babel/runtime/helpers/toPrimitive.js +12 -0
  222. package/node_modules/@babel/runtime/helpers/toPropertyKey.js +7 -0
  223. package/node_modules/@babel/runtime/helpers/toSetter.js +10 -0
  224. package/node_modules/@babel/runtime/helpers/typeof.js +10 -0
  225. package/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js +9 -0
  226. package/node_modules/@babel/runtime/helpers/using.js +12 -0
  227. package/node_modules/@babel/runtime/helpers/usingCtx.js +59 -0
  228. package/node_modules/@babel/runtime/helpers/wrapAsyncGenerator.js +69 -0
  229. package/node_modules/@babel/runtime/helpers/wrapNativeSuper.js +27 -0
  230. package/node_modules/@babel/runtime/helpers/wrapRegExp.js +51 -0
  231. package/node_modules/@babel/runtime/helpers/writeOnlyError.js +4 -0
  232. package/node_modules/@babel/runtime/node_modules/regenerator-runtime/LICENSE +21 -0
  233. package/node_modules/@babel/runtime/node_modules/regenerator-runtime/README.md +31 -0
  234. package/node_modules/@babel/runtime/node_modules/regenerator-runtime/package.json +19 -0
  235. package/node_modules/@babel/runtime/node_modules/regenerator-runtime/path.js +11 -0
  236. package/node_modules/@babel/runtime/node_modules/regenerator-runtime/runtime.js +761 -0
  237. package/node_modules/@babel/runtime/package.json +1056 -0
  238. package/node_modules/@babel/runtime/regenerator/index.js +15 -0
  239. package/node_modules/@pinuts/form-builder/.eslintrc.js +12 -0
  240. package/node_modules/@pinuts/form-builder/CHANGELOG.md +3 -0
  241. package/node_modules/@pinuts/form-builder/README.md +84 -0
  242. package/node_modules/@pinuts/form-builder/config-overrides.js +31 -0
  243. package/node_modules/@pinuts/form-builder/demo/public/index.html +41 -0
  244. package/node_modules/@pinuts/form-builder/demo/public/manifest.json +10 -0
  245. package/node_modules/@pinuts/form-builder/demo/public/robots.txt +3 -0
  246. package/node_modules/@pinuts/form-builder/dist/formHooks/index.d.ts +7 -0
  247. package/node_modules/@pinuts/form-builder/dist/formHooks/index.d.ts.map +1 -0
  248. package/node_modules/@pinuts/form-builder/dist/formHooks/index.js +41 -0
  249. package/node_modules/@pinuts/form-builder/dist/formHooks/useExtractLabels.d.ts +3 -0
  250. package/node_modules/@pinuts/form-builder/dist/formHooks/useExtractLabels.d.ts.map +1 -0
  251. package/node_modules/@pinuts/form-builder/dist/formHooks/useExtractLabels.js +31 -0
  252. package/node_modules/@pinuts/form-builder/dist/formHooks/useFormIsRequired.d.ts +3 -0
  253. package/node_modules/@pinuts/form-builder/dist/formHooks/useFormIsRequired.d.ts.map +1 -0
  254. package/node_modules/@pinuts/form-builder/dist/formHooks/useFormIsRequired.js +19 -0
  255. package/node_modules/@pinuts/form-builder/dist/formHooks/useGetAriaAttributes.d.ts +11 -0
  256. package/node_modules/@pinuts/form-builder/dist/formHooks/useGetAriaAttributes.d.ts.map +1 -0
  257. package/node_modules/@pinuts/form-builder/dist/formHooks/useGetAriaAttributes.js +27 -0
  258. package/node_modules/@pinuts/form-builder/dist/formHooks/useIsFieldInvalid.d.ts +3 -0
  259. package/node_modules/@pinuts/form-builder/dist/formHooks/useIsFieldInvalid.d.ts.map +1 -0
  260. package/node_modules/@pinuts/form-builder/dist/formHooks/useIsFieldInvalid.js +19 -0
  261. package/node_modules/@pinuts/form-builder/dist/formHooks/useValidationMessage.d.ts +3 -0
  262. package/node_modules/@pinuts/form-builder/dist/formHooks/useValidationMessage.d.ts.map +1 -0
  263. package/node_modules/@pinuts/form-builder/dist/formHooks/useValidationMessage.js +53 -0
  264. package/node_modules/@pinuts/form-builder/dist/formItems/Buttons/Button.d.ts +19 -0
  265. package/node_modules/@pinuts/form-builder/dist/formItems/Buttons/Button.d.ts.map +1 -0
  266. package/node_modules/@pinuts/form-builder/dist/formItems/Buttons/Button.js +46 -0
  267. package/node_modules/@pinuts/form-builder/dist/formItems/Buttons/ResetButton.d.ts +10 -0
  268. package/node_modules/@pinuts/form-builder/dist/formItems/Buttons/ResetButton.d.ts.map +1 -0
  269. package/node_modules/@pinuts/form-builder/dist/formItems/Buttons/ResetButton.js +30 -0
  270. package/node_modules/@pinuts/form-builder/dist/formItems/Buttons/SubmitButton.d.ts +10 -0
  271. package/node_modules/@pinuts/form-builder/dist/formItems/Buttons/SubmitButton.d.ts.map +1 -0
  272. package/node_modules/@pinuts/form-builder/dist/formItems/Buttons/SubmitButton.js +30 -0
  273. package/node_modules/@pinuts/form-builder/dist/formItems/Fieldset/Fieldset.d.ts +12 -0
  274. package/node_modules/@pinuts/form-builder/dist/formItems/Fieldset/Fieldset.d.ts.map +1 -0
  275. package/node_modules/@pinuts/form-builder/dist/formItems/Fieldset/Fieldset.js +67 -0
  276. package/node_modules/@pinuts/form-builder/dist/formItems/GridColumn/GridColumn.d.ts +12 -0
  277. package/node_modules/@pinuts/form-builder/dist/formItems/GridColumn/GridColumn.d.ts.map +1 -0
  278. package/node_modules/@pinuts/form-builder/dist/formItems/GridColumn/GridColumn.js +33 -0
  279. package/node_modules/@pinuts/form-builder/dist/formItems/GridRow/GridRow.d.ts +14 -0
  280. package/node_modules/@pinuts/form-builder/dist/formItems/GridRow/GridRow.d.ts.map +1 -0
  281. package/node_modules/@pinuts/form-builder/dist/formItems/GridRow/GridRow.js +37 -0
  282. package/node_modules/@pinuts/form-builder/dist/formItems/GridRowCols/GridRowCols.d.ts +14 -0
  283. package/node_modules/@pinuts/form-builder/dist/formItems/GridRowCols/GridRowCols.d.ts.map +1 -0
  284. package/node_modules/@pinuts/form-builder/dist/formItems/GridRowCols/GridRowCols.js +39 -0
  285. package/node_modules/@pinuts/form-builder/dist/formItems/HTMLInput/HTMLInput.d.ts +10 -0
  286. package/node_modules/@pinuts/form-builder/dist/formItems/HTMLInput/HTMLInput.d.ts.map +1 -0
  287. package/node_modules/@pinuts/form-builder/dist/formItems/HTMLInput/HTMLInput.js +63 -0
  288. package/node_modules/@pinuts/form-builder/dist/formItems/HrHorizontalLine/HrHorizontalLine.d.ts +3 -0
  289. package/node_modules/@pinuts/form-builder/dist/formItems/HrHorizontalLine/HrHorizontalLine.d.ts.map +1 -0
  290. package/node_modules/@pinuts/form-builder/dist/formItems/HrHorizontalLine/HrHorizontalLine.js +13 -0
  291. package/node_modules/@pinuts/form-builder/dist/formItems/Text/Text.d.ts +10 -0
  292. package/node_modules/@pinuts/form-builder/dist/formItems/Text/Text.d.ts.map +1 -0
  293. package/node_modules/@pinuts/form-builder/dist/formItems/Text/Text.js +22 -0
  294. package/node_modules/@pinuts/form-builder/dist/formbuilder/ComponentPopulator.d.ts +12 -0
  295. package/node_modules/@pinuts/form-builder/dist/formbuilder/ComponentPopulator.d.ts.map +1 -0
  296. package/node_modules/@pinuts/form-builder/dist/formbuilder/ComponentPopulator.js +20 -0
  297. package/node_modules/@pinuts/form-builder/dist/formbuilder/ComponentRegistry.d.ts +106 -0
  298. package/node_modules/@pinuts/form-builder/dist/formbuilder/ComponentRegistry.d.ts.map +1 -0
  299. package/node_modules/@pinuts/form-builder/dist/formbuilder/ComponentRegistry.js +42 -0
  300. package/node_modules/@pinuts/form-builder/dist/formbuilder/FormBuilder.d.ts +56 -0
  301. package/node_modules/@pinuts/form-builder/dist/formbuilder/FormBuilder.d.ts.map +1 -0
  302. package/node_modules/@pinuts/form-builder/dist/formbuilder/FormBuilder.js +256 -0
  303. package/node_modules/@pinuts/form-builder/dist/formbuilder/populateComponents.d.ts +6 -0
  304. package/node_modules/@pinuts/form-builder/dist/formbuilder/populateComponents.d.ts.map +1 -0
  305. package/node_modules/@pinuts/form-builder/dist/formbuilder/populateComponents.js +260 -0
  306. package/node_modules/@pinuts/form-builder/dist/hooks/index.d.ts +4 -0
  307. package/node_modules/@pinuts/form-builder/dist/hooks/index.d.ts.map +1 -0
  308. package/node_modules/@pinuts/form-builder/dist/hooks/index.js +20 -0
  309. package/node_modules/@pinuts/form-builder/dist/hooks/useMountedState.d.ts +2 -0
  310. package/node_modules/@pinuts/form-builder/dist/hooks/useMountedState.d.ts.map +1 -0
  311. package/node_modules/@pinuts/form-builder/dist/hooks/useMountedState.js +19 -0
  312. package/node_modules/@pinuts/form-builder/dist/hooks/useUniqueIds.d.ts +3 -0
  313. package/node_modules/@pinuts/form-builder/dist/hooks/useUniqueIds.d.ts.map +1 -0
  314. package/node_modules/@pinuts/form-builder/dist/hooks/useUniqueIds.js +41 -0
  315. package/node_modules/@pinuts/form-builder/dist/index.d.ts +18 -0
  316. package/node_modules/@pinuts/form-builder/dist/index.d.ts.map +1 -0
  317. package/node_modules/@pinuts/form-builder/dist/index.js +2 -0
  318. package/node_modules/@pinuts/form-builder/dist/index.js.LICENSE.txt +16 -0
  319. package/node_modules/@pinuts/form-builder/dist/presentation/FormPresentation.d.ts +11 -0
  320. package/node_modules/@pinuts/form-builder/dist/presentation/FormPresentation.d.ts.map +1 -0
  321. package/node_modules/@pinuts/form-builder/dist/presentation/FormPresentation.js +190 -0
  322. package/node_modules/@pinuts/form-builder/dist/shared/formRules/createFormRules.d.mts +11 -0
  323. package/node_modules/@pinuts/form-builder/dist/shared/formRules/createFormRules.d.mts.map +1 -0
  324. package/node_modules/@pinuts/form-builder/dist/shared/formRules/createFormRules.js +529 -0
  325. package/node_modules/@pinuts/form-builder/dist/utils/copyToClipboard.d.ts +3 -0
  326. package/node_modules/@pinuts/form-builder/dist/utils/copyToClipboard.d.ts.map +1 -0
  327. package/node_modules/@pinuts/form-builder/dist/utils/copyToClipboard.js +32 -0
  328. package/node_modules/@pinuts/form-builder/dist/utils/getAriaAttributes.d.ts +20 -0
  329. package/node_modules/@pinuts/form-builder/dist/utils/getAriaAttributes.d.ts.map +1 -0
  330. package/node_modules/@pinuts/form-builder/dist/utils/getAriaAttributes.js +42 -0
  331. package/node_modules/@pinuts/form-builder/dist/utils/getClassNames.d.ts +3 -0
  332. package/node_modules/@pinuts/form-builder/dist/utils/getClassNames.d.ts.map +1 -0
  333. package/node_modules/@pinuts/form-builder/dist/utils/getClassNames.js +12 -0
  334. package/node_modules/@pinuts/form-builder/dist/utils/getIsFieldInvalid.d.ts +3 -0
  335. package/node_modules/@pinuts/form-builder/dist/utils/getIsFieldInvalid.d.ts.map +1 -0
  336. package/node_modules/@pinuts/form-builder/dist/utils/getIsFieldInvalid.js +15 -0
  337. package/node_modules/@pinuts/form-builder/dist/utils/getIsRequired.d.ts +3 -0
  338. package/node_modules/@pinuts/form-builder/dist/utils/getIsRequired.d.ts.map +1 -0
  339. package/node_modules/@pinuts/form-builder/dist/utils/getIsRequired.js +43 -0
  340. package/node_modules/@pinuts/form-builder/dist/utils/index.d.ts +7 -0
  341. package/node_modules/@pinuts/form-builder/dist/utils/index.d.ts.map +1 -0
  342. package/node_modules/@pinuts/form-builder/dist/utils/index.js +41 -0
  343. package/node_modules/@pinuts/form-builder/package.json +93 -0
  344. package/node_modules/@pinuts/form-builder/remove-peerdeps.js +29 -0
  345. package/node_modules/@pinuts/form-builder/tsconfig.json +28 -0
  346. package/node_modules/@pinuts/form-builder/webpack.config.js +87 -0
  347. package/node_modules/@types/hoist-non-react-statics/LICENSE +21 -0
  348. package/node_modules/@types/hoist-non-react-statics/README.md +93 -0
  349. package/node_modules/@types/hoist-non-react-statics/index.d.ts +74 -0
  350. package/node_modules/@types/hoist-non-react-statics/package.json +33 -0
  351. package/node_modules/@types/prop-types/LICENSE +21 -0
  352. package/node_modules/@types/prop-types/README.md +15 -0
  353. package/node_modules/@types/prop-types/index.d.ts +114 -0
  354. package/node_modules/@types/prop-types/package.json +35 -0
  355. package/node_modules/@types/react/LICENSE +21 -0
  356. package/node_modules/@types/react/README.md +15 -0
  357. package/node_modules/@types/react/canary.d.ts +157 -0
  358. package/node_modules/@types/react/experimental.d.ts +127 -0
  359. package/node_modules/@types/react/global.d.ts +160 -0
  360. package/node_modules/@types/react/index.d.ts +4543 -0
  361. package/node_modules/@types/react/jsx-dev-runtime.d.ts +45 -0
  362. package/node_modules/@types/react/jsx-runtime.d.ts +36 -0
  363. package/node_modules/@types/react/package.json +210 -0
  364. package/node_modules/@types/react/ts5.0/canary.d.ts +157 -0
  365. package/node_modules/@types/react/ts5.0/experimental.d.ts +127 -0
  366. package/node_modules/@types/react/ts5.0/global.d.ts +160 -0
  367. package/node_modules/@types/react/ts5.0/index.d.ts +4530 -0
  368. package/node_modules/@types/react/ts5.0/jsx-dev-runtime.d.ts +44 -0
  369. package/node_modules/@types/react/ts5.0/jsx-runtime.d.ts +35 -0
  370. package/node_modules/csstype/LICENSE +19 -0
  371. package/node_modules/csstype/README.md +277 -0
  372. package/node_modules/csstype/index.d.ts +21297 -0
  373. package/node_modules/csstype/index.js.flow +6612 -0
  374. package/node_modules/csstype/package.json +66 -0
  375. package/node_modules/formik/README.md +61 -0
  376. package/node_modules/formik/dist/ErrorMessage.d.ts +16 -0
  377. package/node_modules/formik/dist/FastField.d.ts +15 -0
  378. package/node_modules/formik/dist/Field.d.ts +53 -0
  379. package/node_modules/formik/dist/FieldArray.d.ts +62 -0
  380. package/node_modules/formik/dist/Form.d.ts +3 -0
  381. package/node_modules/formik/dist/Formik.d.ts +62 -0
  382. package/node_modules/formik/dist/FormikContext.d.ts +6 -0
  383. package/node_modules/formik/dist/connect.d.ts +12 -0
  384. package/node_modules/formik/dist/formik.cjs.development.js +2044 -0
  385. package/node_modules/formik/dist/formik.cjs.development.js.map +1 -0
  386. package/node_modules/formik/dist/formik.cjs.production.min.js +2 -0
  387. package/node_modules/formik/dist/formik.cjs.production.min.js.map +1 -0
  388. package/node_modules/formik/dist/formik.esm.js +2005 -0
  389. package/node_modules/formik/dist/formik.esm.js.map +1 -0
  390. package/node_modules/formik/dist/index.d.ts +11 -0
  391. package/node_modules/formik/dist/index.js +8 -0
  392. package/node_modules/formik/dist/types.d.ts +249 -0
  393. package/node_modules/formik/dist/utils.d.ts +68 -0
  394. package/node_modules/formik/dist/withFormik.d.ts +68 -0
  395. package/node_modules/formik/node_modules/deepmerge/changelog.md +109 -0
  396. package/node_modules/formik/node_modules/deepmerge/dist/cjs.js +101 -0
  397. package/node_modules/formik/node_modules/deepmerge/dist/es.js +89 -0
  398. package/node_modules/formik/node_modules/deepmerge/dist/umd.js +97 -0
  399. package/node_modules/formik/node_modules/deepmerge/index.d.ts +14 -0
  400. package/node_modules/formik/node_modules/deepmerge/index.js +64 -0
  401. package/node_modules/formik/node_modules/deepmerge/license.txt +21 -0
  402. package/node_modules/formik/node_modules/deepmerge/package.json +44 -0
  403. package/node_modules/formik/node_modules/deepmerge/readme.md +249 -0
  404. package/node_modules/formik/node_modules/deepmerge/rollup.config.js +17 -0
  405. package/node_modules/formik/package.json +82 -0
  406. package/node_modules/hoist-non-react-statics/CHANGELOG.md +37 -0
  407. package/node_modules/hoist-non-react-statics/LICENSE.md +29 -0
  408. package/node_modules/hoist-non-react-statics/README.md +55 -0
  409. package/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js +103 -0
  410. package/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.js +449 -0
  411. package/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.min.js +1 -0
  412. package/node_modules/hoist-non-react-statics/package.json +55 -0
  413. package/node_modules/hoist-non-react-statics/src/index.js +104 -0
  414. package/node_modules/json-logic-js/.editorconfig +21 -0
  415. package/node_modules/json-logic-js/.eslintrc.json +33 -0
  416. package/node_modules/json-logic-js/CHANGELOG.md +17 -0
  417. package/node_modules/json-logic-js/LICENSE +22 -0
  418. package/node_modules/json-logic-js/README.md +127 -0
  419. package/node_modules/json-logic-js/jsonlogic.png +0 -0
  420. package/node_modules/json-logic-js/logic.js +475 -0
  421. package/node_modules/json-logic-js/package.json +33 -0
  422. package/node_modules/json-logic-js/tests/tests.js +310 -0
  423. package/node_modules/lodash/LICENSE +47 -0
  424. package/node_modules/lodash/README.md +39 -0
  425. package/node_modules/lodash/_DataView.js +7 -0
  426. package/node_modules/lodash/_Hash.js +32 -0
  427. package/node_modules/lodash/_LazyWrapper.js +28 -0
  428. package/node_modules/lodash/_ListCache.js +32 -0
  429. package/node_modules/lodash/_LodashWrapper.js +22 -0
  430. package/node_modules/lodash/_Map.js +7 -0
  431. package/node_modules/lodash/_MapCache.js +32 -0
  432. package/node_modules/lodash/_Promise.js +7 -0
  433. package/node_modules/lodash/_Set.js +7 -0
  434. package/node_modules/lodash/_SetCache.js +27 -0
  435. package/node_modules/lodash/_Stack.js +27 -0
  436. package/node_modules/lodash/_Symbol.js +6 -0
  437. package/node_modules/lodash/_Uint8Array.js +6 -0
  438. package/node_modules/lodash/_WeakMap.js +7 -0
  439. package/node_modules/lodash/_apply.js +21 -0
  440. package/node_modules/lodash/_arrayAggregator.js +22 -0
  441. package/node_modules/lodash/_arrayEach.js +22 -0
  442. package/node_modules/lodash/_arrayEachRight.js +21 -0
  443. package/node_modules/lodash/_arrayEvery.js +23 -0
  444. package/node_modules/lodash/_arrayFilter.js +25 -0
  445. package/node_modules/lodash/_arrayIncludes.js +17 -0
  446. package/node_modules/lodash/_arrayIncludesWith.js +22 -0
  447. package/node_modules/lodash/_arrayLikeKeys.js +49 -0
  448. package/node_modules/lodash/_arrayMap.js +21 -0
  449. package/node_modules/lodash/_arrayPush.js +20 -0
  450. package/node_modules/lodash/_arrayReduce.js +26 -0
  451. package/node_modules/lodash/_arrayReduceRight.js +24 -0
  452. package/node_modules/lodash/_arraySample.js +15 -0
  453. package/node_modules/lodash/_arraySampleSize.js +17 -0
  454. package/node_modules/lodash/_arrayShuffle.js +15 -0
  455. package/node_modules/lodash/_arraySome.js +23 -0
  456. package/node_modules/lodash/_asciiSize.js +12 -0
  457. package/node_modules/lodash/_asciiToArray.js +12 -0
  458. package/node_modules/lodash/_asciiWords.js +15 -0
  459. package/node_modules/lodash/_assignMergeValue.js +20 -0
  460. package/node_modules/lodash/_assignValue.js +28 -0
  461. package/node_modules/lodash/_assocIndexOf.js +21 -0
  462. package/node_modules/lodash/_baseAggregator.js +21 -0
  463. package/node_modules/lodash/_baseAssign.js +17 -0
  464. package/node_modules/lodash/_baseAssignIn.js +17 -0
  465. package/node_modules/lodash/_baseAssignValue.js +25 -0
  466. package/node_modules/lodash/_baseAt.js +23 -0
  467. package/node_modules/lodash/_baseClamp.js +22 -0
  468. package/node_modules/lodash/_baseClone.js +166 -0
  469. package/node_modules/lodash/_baseConforms.js +18 -0
  470. package/node_modules/lodash/_baseConformsTo.js +27 -0
  471. package/node_modules/lodash/_baseCreate.js +30 -0
  472. package/node_modules/lodash/_baseDelay.js +21 -0
  473. package/node_modules/lodash/_baseDifference.js +67 -0
  474. package/node_modules/lodash/_baseEach.js +14 -0
  475. package/node_modules/lodash/_baseEachRight.js +14 -0
  476. package/node_modules/lodash/_baseEvery.js +21 -0
  477. package/node_modules/lodash/_baseExtremum.js +32 -0
  478. package/node_modules/lodash/_baseFill.js +32 -0
  479. package/node_modules/lodash/_baseFilter.js +21 -0
  480. package/node_modules/lodash/_baseFindIndex.js +24 -0
  481. package/node_modules/lodash/_baseFindKey.js +23 -0
  482. package/node_modules/lodash/_baseFlatten.js +38 -0
  483. package/node_modules/lodash/_baseFor.js +16 -0
  484. package/node_modules/lodash/_baseForOwn.js +16 -0
  485. package/node_modules/lodash/_baseForOwnRight.js +16 -0
  486. package/node_modules/lodash/_baseForRight.js +15 -0
  487. package/node_modules/lodash/_baseFunctions.js +19 -0
  488. package/node_modules/lodash/_baseGet.js +24 -0
  489. package/node_modules/lodash/_baseGetAllKeys.js +20 -0
  490. package/node_modules/lodash/_baseGetTag.js +28 -0
  491. package/node_modules/lodash/_baseGt.js +14 -0
  492. package/node_modules/lodash/_baseHas.js +19 -0
  493. package/node_modules/lodash/_baseHasIn.js +13 -0
  494. package/node_modules/lodash/_baseInRange.js +18 -0
  495. package/node_modules/lodash/_baseIndexOf.js +20 -0
  496. package/node_modules/lodash/_baseIndexOfWith.js +23 -0
  497. package/node_modules/lodash/_baseIntersection.js +74 -0
  498. package/node_modules/lodash/_baseInverter.js +21 -0
  499. package/node_modules/lodash/_baseInvoke.js +24 -0
  500. package/node_modules/lodash/_baseIsArguments.js +18 -0
  501. package/node_modules/lodash/_baseIsArrayBuffer.js +17 -0
  502. package/node_modules/lodash/_baseIsDate.js +18 -0
  503. package/node_modules/lodash/_baseIsEqual.js +28 -0
  504. package/node_modules/lodash/_baseIsEqualDeep.js +83 -0
  505. package/node_modules/lodash/_baseIsMap.js +18 -0
  506. package/node_modules/lodash/_baseIsMatch.js +62 -0
  507. package/node_modules/lodash/_baseIsNaN.js +12 -0
  508. package/node_modules/lodash/_baseIsNative.js +47 -0
  509. package/node_modules/lodash/_baseIsRegExp.js +18 -0
  510. package/node_modules/lodash/_baseIsSet.js +18 -0
  511. package/node_modules/lodash/_baseIsTypedArray.js +60 -0
  512. package/node_modules/lodash/_baseIteratee.js +31 -0
  513. package/node_modules/lodash/_baseKeys.js +30 -0
  514. package/node_modules/lodash/_baseKeysIn.js +33 -0
  515. package/node_modules/lodash/_baseLodash.js +10 -0
  516. package/node_modules/lodash/_baseLt.js +14 -0
  517. package/node_modules/lodash/_baseMap.js +22 -0
  518. package/node_modules/lodash/_baseMatches.js +22 -0
  519. package/node_modules/lodash/_baseMatchesProperty.js +33 -0
  520. package/node_modules/lodash/_baseMean.js +20 -0
  521. package/node_modules/lodash/_baseMerge.js +42 -0
  522. package/node_modules/lodash/_baseMergeDeep.js +94 -0
  523. package/node_modules/lodash/_baseNth.js +20 -0
  524. package/node_modules/lodash/_baseOrderBy.js +49 -0
  525. package/node_modules/lodash/_basePick.js +19 -0
  526. package/node_modules/lodash/_basePickBy.js +30 -0
  527. package/node_modules/lodash/_baseProperty.js +14 -0
  528. package/node_modules/lodash/_basePropertyDeep.js +16 -0
  529. package/node_modules/lodash/_basePropertyOf.js +14 -0
  530. package/node_modules/lodash/_basePullAll.js +51 -0
  531. package/node_modules/lodash/_basePullAt.js +37 -0
  532. package/node_modules/lodash/_baseRandom.js +18 -0
  533. package/node_modules/lodash/_baseRange.js +28 -0
  534. package/node_modules/lodash/_baseReduce.js +23 -0
  535. package/node_modules/lodash/_baseRepeat.js +35 -0
  536. package/node_modules/lodash/_baseRest.js +17 -0
  537. package/node_modules/lodash/_baseSample.js +15 -0
  538. package/node_modules/lodash/_baseSampleSize.js +18 -0
  539. package/node_modules/lodash/_baseSet.js +51 -0
  540. package/node_modules/lodash/_baseSetData.js +17 -0
  541. package/node_modules/lodash/_baseSetToString.js +22 -0
  542. package/node_modules/lodash/_baseShuffle.js +15 -0
  543. package/node_modules/lodash/_baseSlice.js +31 -0
  544. package/node_modules/lodash/_baseSome.js +22 -0
  545. package/node_modules/lodash/_baseSortBy.js +21 -0
  546. package/node_modules/lodash/_baseSortedIndex.js +42 -0
  547. package/node_modules/lodash/_baseSortedIndexBy.js +67 -0
  548. package/node_modules/lodash/_baseSortedUniq.js +30 -0
  549. package/node_modules/lodash/_baseSum.js +24 -0
  550. package/node_modules/lodash/_baseTimes.js +20 -0
  551. package/node_modules/lodash/_baseToNumber.js +24 -0
  552. package/node_modules/lodash/_baseToPairs.js +18 -0
  553. package/node_modules/lodash/_baseToString.js +37 -0
  554. package/node_modules/lodash/_baseTrim.js +19 -0
  555. package/node_modules/lodash/_baseUnary.js +14 -0
  556. package/node_modules/lodash/_baseUniq.js +72 -0
  557. package/node_modules/lodash/_baseUnset.js +20 -0
  558. package/node_modules/lodash/_baseUpdate.js +18 -0
  559. package/node_modules/lodash/_baseValues.js +19 -0
  560. package/node_modules/lodash/_baseWhile.js +26 -0
  561. package/node_modules/lodash/_baseWrapperValue.js +25 -0
  562. package/node_modules/lodash/_baseXor.js +36 -0
  563. package/node_modules/lodash/_baseZipObject.js +23 -0
  564. package/node_modules/lodash/_cacheHas.js +13 -0
  565. package/node_modules/lodash/_castArrayLikeObject.js +14 -0
  566. package/node_modules/lodash/_castFunction.js +14 -0
  567. package/node_modules/lodash/_castPath.js +21 -0
  568. package/node_modules/lodash/_castRest.js +14 -0
  569. package/node_modules/lodash/_castSlice.js +18 -0
  570. package/node_modules/lodash/_charsEndIndex.js +19 -0
  571. package/node_modules/lodash/_charsStartIndex.js +20 -0
  572. package/node_modules/lodash/_cloneArrayBuffer.js +16 -0
  573. package/node_modules/lodash/_cloneBuffer.js +35 -0
  574. package/node_modules/lodash/_cloneDataView.js +16 -0
  575. package/node_modules/lodash/_cloneRegExp.js +17 -0
  576. package/node_modules/lodash/_cloneSymbol.js +18 -0
  577. package/node_modules/lodash/_cloneTypedArray.js +16 -0
  578. package/node_modules/lodash/_compareAscending.js +41 -0
  579. package/node_modules/lodash/_compareMultiple.js +44 -0
  580. package/node_modules/lodash/_composeArgs.js +39 -0
  581. package/node_modules/lodash/_composeArgsRight.js +41 -0
  582. package/node_modules/lodash/_copyArray.js +20 -0
  583. package/node_modules/lodash/_copyObject.js +40 -0
  584. package/node_modules/lodash/_copySymbols.js +16 -0
  585. package/node_modules/lodash/_copySymbolsIn.js +16 -0
  586. package/node_modules/lodash/_coreJsData.js +6 -0
  587. package/node_modules/lodash/_countHolders.js +21 -0
  588. package/node_modules/lodash/_createAggregator.js +23 -0
  589. package/node_modules/lodash/_createAssigner.js +37 -0
  590. package/node_modules/lodash/_createBaseEach.js +32 -0
  591. package/node_modules/lodash/_createBaseFor.js +25 -0
  592. package/node_modules/lodash/_createBind.js +28 -0
  593. package/node_modules/lodash/_createCaseFirst.js +33 -0
  594. package/node_modules/lodash/_createCompounder.js +24 -0
  595. package/node_modules/lodash/_createCtor.js +37 -0
  596. package/node_modules/lodash/_createCurry.js +46 -0
  597. package/node_modules/lodash/_createFind.js +25 -0
  598. package/node_modules/lodash/_createFlow.js +78 -0
  599. package/node_modules/lodash/_createHybrid.js +92 -0
  600. package/node_modules/lodash/_createInverter.js +17 -0
  601. package/node_modules/lodash/_createMathOperation.js +38 -0
  602. package/node_modules/lodash/_createOver.js +27 -0
  603. package/node_modules/lodash/_createPadding.js +33 -0
  604. package/node_modules/lodash/_createPartial.js +43 -0
  605. package/node_modules/lodash/_createRange.js +30 -0
  606. package/node_modules/lodash/_createRecurry.js +56 -0
  607. package/node_modules/lodash/_createRelationalOperation.js +20 -0
  608. package/node_modules/lodash/_createRound.js +35 -0
  609. package/node_modules/lodash/_createSet.js +19 -0
  610. package/node_modules/lodash/_createToPairs.js +30 -0
  611. package/node_modules/lodash/_createWrap.js +106 -0
  612. package/node_modules/lodash/_customDefaultsAssignIn.js +29 -0
  613. package/node_modules/lodash/_customDefaultsMerge.js +28 -0
  614. package/node_modules/lodash/_customOmitClone.js +16 -0
  615. package/node_modules/lodash/_deburrLetter.js +71 -0
  616. package/node_modules/lodash/_defineProperty.js +11 -0
  617. package/node_modules/lodash/_equalArrays.js +84 -0
  618. package/node_modules/lodash/_equalByTag.js +112 -0
  619. package/node_modules/lodash/_equalObjects.js +90 -0
  620. package/node_modules/lodash/_escapeHtmlChar.js +21 -0
  621. package/node_modules/lodash/_escapeStringChar.js +22 -0
  622. package/node_modules/lodash/_flatRest.js +16 -0
  623. package/node_modules/lodash/_freeGlobal.js +4 -0
  624. package/node_modules/lodash/_getAllKeys.js +16 -0
  625. package/node_modules/lodash/_getAllKeysIn.js +17 -0
  626. package/node_modules/lodash/_getData.js +15 -0
  627. package/node_modules/lodash/_getFuncName.js +31 -0
  628. package/node_modules/lodash/_getHolder.js +13 -0
  629. package/node_modules/lodash/_getMapData.js +18 -0
  630. package/node_modules/lodash/_getMatchData.js +24 -0
  631. package/node_modules/lodash/_getNative.js +17 -0
  632. package/node_modules/lodash/_getPrototype.js +6 -0
  633. package/node_modules/lodash/_getRawTag.js +46 -0
  634. package/node_modules/lodash/_getSymbols.js +30 -0
  635. package/node_modules/lodash/_getSymbolsIn.js +25 -0
  636. package/node_modules/lodash/_getTag.js +58 -0
  637. package/node_modules/lodash/_getValue.js +13 -0
  638. package/node_modules/lodash/_getView.js +33 -0
  639. package/node_modules/lodash/_getWrapDetails.js +17 -0
  640. package/node_modules/lodash/_hasPath.js +39 -0
  641. package/node_modules/lodash/_hasUnicode.js +26 -0
  642. package/node_modules/lodash/_hasUnicodeWord.js +15 -0
  643. package/node_modules/lodash/_hashClear.js +15 -0
  644. package/node_modules/lodash/_hashDelete.js +17 -0
  645. package/node_modules/lodash/_hashGet.js +30 -0
  646. package/node_modules/lodash/_hashHas.js +23 -0
  647. package/node_modules/lodash/_hashSet.js +23 -0
  648. package/node_modules/lodash/_initCloneArray.js +26 -0
  649. package/node_modules/lodash/_initCloneByTag.js +77 -0
  650. package/node_modules/lodash/_initCloneObject.js +18 -0
  651. package/node_modules/lodash/_insertWrapDetails.js +23 -0
  652. package/node_modules/lodash/_isFlattenable.js +20 -0
  653. package/node_modules/lodash/_isIndex.js +25 -0
  654. package/node_modules/lodash/_isIterateeCall.js +30 -0
  655. package/node_modules/lodash/_isKey.js +29 -0
  656. package/node_modules/lodash/_isKeyable.js +15 -0
  657. package/node_modules/lodash/_isLaziable.js +28 -0
  658. package/node_modules/lodash/_isMaskable.js +14 -0
  659. package/node_modules/lodash/_isMasked.js +20 -0
  660. package/node_modules/lodash/_isPrototype.js +18 -0
  661. package/node_modules/lodash/_isStrictComparable.js +15 -0
  662. package/node_modules/lodash/_iteratorToArray.js +18 -0
  663. package/node_modules/lodash/_lazyClone.js +23 -0
  664. package/node_modules/lodash/_lazyReverse.js +23 -0
  665. package/node_modules/lodash/_lazyValue.js +69 -0
  666. package/node_modules/lodash/_listCacheClear.js +13 -0
  667. package/node_modules/lodash/_listCacheDelete.js +35 -0
  668. package/node_modules/lodash/_listCacheGet.js +19 -0
  669. package/node_modules/lodash/_listCacheHas.js +16 -0
  670. package/node_modules/lodash/_listCacheSet.js +26 -0
  671. package/node_modules/lodash/_mapCacheClear.js +21 -0
  672. package/node_modules/lodash/_mapCacheDelete.js +18 -0
  673. package/node_modules/lodash/_mapCacheGet.js +16 -0
  674. package/node_modules/lodash/_mapCacheHas.js +16 -0
  675. package/node_modules/lodash/_mapCacheSet.js +22 -0
  676. package/node_modules/lodash/_mapToArray.js +18 -0
  677. package/node_modules/lodash/_matchesStrictComparable.js +20 -0
  678. package/node_modules/lodash/_memoizeCapped.js +26 -0
  679. package/node_modules/lodash/_mergeData.js +90 -0
  680. package/node_modules/lodash/_metaMap.js +6 -0
  681. package/node_modules/lodash/_nativeCreate.js +6 -0
  682. package/node_modules/lodash/_nativeKeys.js +6 -0
  683. package/node_modules/lodash/_nativeKeysIn.js +20 -0
  684. package/node_modules/lodash/_nodeUtil.js +30 -0
  685. package/node_modules/lodash/_objectToString.js +22 -0
  686. package/node_modules/lodash/_overArg.js +15 -0
  687. package/node_modules/lodash/_overRest.js +36 -0
  688. package/node_modules/lodash/_parent.js +16 -0
  689. package/node_modules/lodash/_reEscape.js +4 -0
  690. package/node_modules/lodash/_reEvaluate.js +4 -0
  691. package/node_modules/lodash/_reInterpolate.js +4 -0
  692. package/node_modules/lodash/_realNames.js +4 -0
  693. package/node_modules/lodash/_reorder.js +29 -0
  694. package/node_modules/lodash/_replaceHolders.js +29 -0
  695. package/node_modules/lodash/_root.js +9 -0
  696. package/node_modules/lodash/_safeGet.js +21 -0
  697. package/node_modules/lodash/_setCacheAdd.js +19 -0
  698. package/node_modules/lodash/_setCacheHas.js +14 -0
  699. package/node_modules/lodash/_setData.js +20 -0
  700. package/node_modules/lodash/_setToArray.js +18 -0
  701. package/node_modules/lodash/_setToPairs.js +18 -0
  702. package/node_modules/lodash/_setToString.js +14 -0
  703. package/node_modules/lodash/_setWrapToString.js +21 -0
  704. package/node_modules/lodash/_shortOut.js +37 -0
  705. package/node_modules/lodash/_shuffleSelf.js +28 -0
  706. package/node_modules/lodash/_stackClear.js +15 -0
  707. package/node_modules/lodash/_stackDelete.js +18 -0
  708. package/node_modules/lodash/_stackGet.js +14 -0
  709. package/node_modules/lodash/_stackHas.js +14 -0
  710. package/node_modules/lodash/_stackSet.js +34 -0
  711. package/node_modules/lodash/_strictIndexOf.js +23 -0
  712. package/node_modules/lodash/_strictLastIndexOf.js +21 -0
  713. package/node_modules/lodash/_stringSize.js +18 -0
  714. package/node_modules/lodash/_stringToArray.js +18 -0
  715. package/node_modules/lodash/_stringToPath.js +27 -0
  716. package/node_modules/lodash/_toKey.js +21 -0
  717. package/node_modules/lodash/_toSource.js +26 -0
  718. package/node_modules/lodash/_trimmedEndIndex.js +19 -0
  719. package/node_modules/lodash/_unescapeHtmlChar.js +21 -0
  720. package/node_modules/lodash/_unicodeSize.js +44 -0
  721. package/node_modules/lodash/_unicodeToArray.js +40 -0
  722. package/node_modules/lodash/_unicodeWords.js +69 -0
  723. package/node_modules/lodash/_updateWrapDetails.js +46 -0
  724. package/node_modules/lodash/_wrapperClone.js +23 -0
  725. package/node_modules/lodash/add.js +22 -0
  726. package/node_modules/lodash/after.js +42 -0
  727. package/node_modules/lodash/array.js +67 -0
  728. package/node_modules/lodash/ary.js +29 -0
  729. package/node_modules/lodash/assign.js +58 -0
  730. package/node_modules/lodash/assignIn.js +40 -0
  731. package/node_modules/lodash/assignInWith.js +38 -0
  732. package/node_modules/lodash/assignWith.js +37 -0
  733. package/node_modules/lodash/at.js +23 -0
  734. package/node_modules/lodash/attempt.js +35 -0
  735. package/node_modules/lodash/before.js +40 -0
  736. package/node_modules/lodash/bind.js +57 -0
  737. package/node_modules/lodash/bindAll.js +41 -0
  738. package/node_modules/lodash/bindKey.js +68 -0
  739. package/node_modules/lodash/camelCase.js +29 -0
  740. package/node_modules/lodash/capitalize.js +23 -0
  741. package/node_modules/lodash/castArray.js +44 -0
  742. package/node_modules/lodash/ceil.js +26 -0
  743. package/node_modules/lodash/chain.js +38 -0
  744. package/node_modules/lodash/chunk.js +50 -0
  745. package/node_modules/lodash/clamp.js +39 -0
  746. package/node_modules/lodash/clone.js +36 -0
  747. package/node_modules/lodash/cloneDeep.js +29 -0
  748. package/node_modules/lodash/cloneDeepWith.js +40 -0
  749. package/node_modules/lodash/cloneWith.js +42 -0
  750. package/node_modules/lodash/collection.js +30 -0
  751. package/node_modules/lodash/commit.js +33 -0
  752. package/node_modules/lodash/compact.js +31 -0
  753. package/node_modules/lodash/concat.js +43 -0
  754. package/node_modules/lodash/cond.js +60 -0
  755. package/node_modules/lodash/conforms.js +35 -0
  756. package/node_modules/lodash/conformsTo.js +32 -0
  757. package/node_modules/lodash/constant.js +26 -0
  758. package/node_modules/lodash/core.js +3877 -0
  759. package/node_modules/lodash/core.min.js +29 -0
  760. package/node_modules/lodash/countBy.js +40 -0
  761. package/node_modules/lodash/create.js +43 -0
  762. package/node_modules/lodash/curry.js +57 -0
  763. package/node_modules/lodash/curryRight.js +54 -0
  764. package/node_modules/lodash/date.js +3 -0
  765. package/node_modules/lodash/debounce.js +191 -0
  766. package/node_modules/lodash/deburr.js +45 -0
  767. package/node_modules/lodash/defaultTo.js +25 -0
  768. package/node_modules/lodash/defaults.js +64 -0
  769. package/node_modules/lodash/defaultsDeep.js +30 -0
  770. package/node_modules/lodash/defer.js +26 -0
  771. package/node_modules/lodash/delay.js +28 -0
  772. package/node_modules/lodash/difference.js +33 -0
  773. package/node_modules/lodash/differenceBy.js +44 -0
  774. package/node_modules/lodash/differenceWith.js +40 -0
  775. package/node_modules/lodash/divide.js +22 -0
  776. package/node_modules/lodash/drop.js +38 -0
  777. package/node_modules/lodash/dropRight.js +39 -0
  778. package/node_modules/lodash/dropRightWhile.js +45 -0
  779. package/node_modules/lodash/dropWhile.js +45 -0
  780. package/node_modules/lodash/each.js +1 -0
  781. package/node_modules/lodash/eachRight.js +1 -0
  782. package/node_modules/lodash/endsWith.js +43 -0
  783. package/node_modules/lodash/entries.js +1 -0
  784. package/node_modules/lodash/entriesIn.js +1 -0
  785. package/node_modules/lodash/eq.js +37 -0
  786. package/node_modules/lodash/escape.js +43 -0
  787. package/node_modules/lodash/escapeRegExp.js +32 -0
  788. package/node_modules/lodash/every.js +56 -0
  789. package/node_modules/lodash/extend.js +1 -0
  790. package/node_modules/lodash/extendWith.js +1 -0
  791. package/node_modules/lodash/fill.js +45 -0
  792. package/node_modules/lodash/filter.js +52 -0
  793. package/node_modules/lodash/find.js +42 -0
  794. package/node_modules/lodash/findIndex.js +55 -0
  795. package/node_modules/lodash/findKey.js +44 -0
  796. package/node_modules/lodash/findLast.js +25 -0
  797. package/node_modules/lodash/findLastIndex.js +59 -0
  798. package/node_modules/lodash/findLastKey.js +44 -0
  799. package/node_modules/lodash/first.js +1 -0
  800. package/node_modules/lodash/flake.lock +40 -0
  801. package/node_modules/lodash/flake.nix +20 -0
  802. package/node_modules/lodash/flatMap.js +29 -0
  803. package/node_modules/lodash/flatMapDeep.js +31 -0
  804. package/node_modules/lodash/flatMapDepth.js +31 -0
  805. package/node_modules/lodash/flatten.js +22 -0
  806. package/node_modules/lodash/flattenDeep.js +25 -0
  807. package/node_modules/lodash/flattenDepth.js +33 -0
  808. package/node_modules/lodash/flip.js +28 -0
  809. package/node_modules/lodash/floor.js +26 -0
  810. package/node_modules/lodash/flow.js +27 -0
  811. package/node_modules/lodash/flowRight.js +26 -0
  812. package/node_modules/lodash/forEach.js +41 -0
  813. package/node_modules/lodash/forEachRight.js +31 -0
  814. package/node_modules/lodash/forIn.js +39 -0
  815. package/node_modules/lodash/forInRight.js +37 -0
  816. package/node_modules/lodash/forOwn.js +36 -0
  817. package/node_modules/lodash/forOwnRight.js +34 -0
  818. package/node_modules/lodash/fp/F.js +1 -0
  819. package/node_modules/lodash/fp/T.js +1 -0
  820. package/node_modules/lodash/fp/__.js +1 -0
  821. package/node_modules/lodash/fp/_baseConvert.js +569 -0
  822. package/node_modules/lodash/fp/_convertBrowser.js +18 -0
  823. package/node_modules/lodash/fp/_falseOptions.js +7 -0
  824. package/node_modules/lodash/fp/_mapping.js +358 -0
  825. package/node_modules/lodash/fp/_util.js +16 -0
  826. package/node_modules/lodash/fp/add.js +5 -0
  827. package/node_modules/lodash/fp/after.js +5 -0
  828. package/node_modules/lodash/fp/all.js +1 -0
  829. package/node_modules/lodash/fp/allPass.js +1 -0
  830. package/node_modules/lodash/fp/always.js +1 -0
  831. package/node_modules/lodash/fp/any.js +1 -0
  832. package/node_modules/lodash/fp/anyPass.js +1 -0
  833. package/node_modules/lodash/fp/apply.js +1 -0
  834. package/node_modules/lodash/fp/array.js +2 -0
  835. package/node_modules/lodash/fp/ary.js +5 -0
  836. package/node_modules/lodash/fp/assign.js +5 -0
  837. package/node_modules/lodash/fp/assignAll.js +5 -0
  838. package/node_modules/lodash/fp/assignAllWith.js +5 -0
  839. package/node_modules/lodash/fp/assignIn.js +5 -0
  840. package/node_modules/lodash/fp/assignInAll.js +5 -0
  841. package/node_modules/lodash/fp/assignInAllWith.js +5 -0
  842. package/node_modules/lodash/fp/assignInWith.js +5 -0
  843. package/node_modules/lodash/fp/assignWith.js +5 -0
  844. package/node_modules/lodash/fp/assoc.js +1 -0
  845. package/node_modules/lodash/fp/assocPath.js +1 -0
  846. package/node_modules/lodash/fp/at.js +5 -0
  847. package/node_modules/lodash/fp/attempt.js +5 -0
  848. package/node_modules/lodash/fp/before.js +5 -0
  849. package/node_modules/lodash/fp/bind.js +5 -0
  850. package/node_modules/lodash/fp/bindAll.js +5 -0
  851. package/node_modules/lodash/fp/bindKey.js +5 -0
  852. package/node_modules/lodash/fp/camelCase.js +5 -0
  853. package/node_modules/lodash/fp/capitalize.js +5 -0
  854. package/node_modules/lodash/fp/castArray.js +5 -0
  855. package/node_modules/lodash/fp/ceil.js +5 -0
  856. package/node_modules/lodash/fp/chain.js +5 -0
  857. package/node_modules/lodash/fp/chunk.js +5 -0
  858. package/node_modules/lodash/fp/clamp.js +5 -0
  859. package/node_modules/lodash/fp/clone.js +5 -0
  860. package/node_modules/lodash/fp/cloneDeep.js +5 -0
  861. package/node_modules/lodash/fp/cloneDeepWith.js +5 -0
  862. package/node_modules/lodash/fp/cloneWith.js +5 -0
  863. package/node_modules/lodash/fp/collection.js +2 -0
  864. package/node_modules/lodash/fp/commit.js +5 -0
  865. package/node_modules/lodash/fp/compact.js +5 -0
  866. package/node_modules/lodash/fp/complement.js +1 -0
  867. package/node_modules/lodash/fp/compose.js +1 -0
  868. package/node_modules/lodash/fp/concat.js +5 -0
  869. package/node_modules/lodash/fp/cond.js +5 -0
  870. package/node_modules/lodash/fp/conforms.js +1 -0
  871. package/node_modules/lodash/fp/conformsTo.js +5 -0
  872. package/node_modules/lodash/fp/constant.js +5 -0
  873. package/node_modules/lodash/fp/contains.js +1 -0
  874. package/node_modules/lodash/fp/convert.js +18 -0
  875. package/node_modules/lodash/fp/countBy.js +5 -0
  876. package/node_modules/lodash/fp/create.js +5 -0
  877. package/node_modules/lodash/fp/curry.js +5 -0
  878. package/node_modules/lodash/fp/curryN.js +5 -0
  879. package/node_modules/lodash/fp/curryRight.js +5 -0
  880. package/node_modules/lodash/fp/curryRightN.js +5 -0
  881. package/node_modules/lodash/fp/date.js +2 -0
  882. package/node_modules/lodash/fp/debounce.js +5 -0
  883. package/node_modules/lodash/fp/deburr.js +5 -0
  884. package/node_modules/lodash/fp/defaultTo.js +5 -0
  885. package/node_modules/lodash/fp/defaults.js +5 -0
  886. package/node_modules/lodash/fp/defaultsAll.js +5 -0
  887. package/node_modules/lodash/fp/defaultsDeep.js +5 -0
  888. package/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
  889. package/node_modules/lodash/fp/defer.js +5 -0
  890. package/node_modules/lodash/fp/delay.js +5 -0
  891. package/node_modules/lodash/fp/difference.js +5 -0
  892. package/node_modules/lodash/fp/differenceBy.js +5 -0
  893. package/node_modules/lodash/fp/differenceWith.js +5 -0
  894. package/node_modules/lodash/fp/dissoc.js +1 -0
  895. package/node_modules/lodash/fp/dissocPath.js +1 -0
  896. package/node_modules/lodash/fp/divide.js +5 -0
  897. package/node_modules/lodash/fp/drop.js +5 -0
  898. package/node_modules/lodash/fp/dropLast.js +1 -0
  899. package/node_modules/lodash/fp/dropLastWhile.js +1 -0
  900. package/node_modules/lodash/fp/dropRight.js +5 -0
  901. package/node_modules/lodash/fp/dropRightWhile.js +5 -0
  902. package/node_modules/lodash/fp/dropWhile.js +5 -0
  903. package/node_modules/lodash/fp/each.js +1 -0
  904. package/node_modules/lodash/fp/eachRight.js +1 -0
  905. package/node_modules/lodash/fp/endsWith.js +5 -0
  906. package/node_modules/lodash/fp/entries.js +1 -0
  907. package/node_modules/lodash/fp/entriesIn.js +1 -0
  908. package/node_modules/lodash/fp/eq.js +5 -0
  909. package/node_modules/lodash/fp/equals.js +1 -0
  910. package/node_modules/lodash/fp/escape.js +5 -0
  911. package/node_modules/lodash/fp/escapeRegExp.js +5 -0
  912. package/node_modules/lodash/fp/every.js +5 -0
  913. package/node_modules/lodash/fp/extend.js +1 -0
  914. package/node_modules/lodash/fp/extendAll.js +1 -0
  915. package/node_modules/lodash/fp/extendAllWith.js +1 -0
  916. package/node_modules/lodash/fp/extendWith.js +1 -0
  917. package/node_modules/lodash/fp/fill.js +5 -0
  918. package/node_modules/lodash/fp/filter.js +5 -0
  919. package/node_modules/lodash/fp/find.js +5 -0
  920. package/node_modules/lodash/fp/findFrom.js +5 -0
  921. package/node_modules/lodash/fp/findIndex.js +5 -0
  922. package/node_modules/lodash/fp/findIndexFrom.js +5 -0
  923. package/node_modules/lodash/fp/findKey.js +5 -0
  924. package/node_modules/lodash/fp/findLast.js +5 -0
  925. package/node_modules/lodash/fp/findLastFrom.js +5 -0
  926. package/node_modules/lodash/fp/findLastIndex.js +5 -0
  927. package/node_modules/lodash/fp/findLastIndexFrom.js +5 -0
  928. package/node_modules/lodash/fp/findLastKey.js +5 -0
  929. package/node_modules/lodash/fp/first.js +1 -0
  930. package/node_modules/lodash/fp/flatMap.js +5 -0
  931. package/node_modules/lodash/fp/flatMapDeep.js +5 -0
  932. package/node_modules/lodash/fp/flatMapDepth.js +5 -0
  933. package/node_modules/lodash/fp/flatten.js +5 -0
  934. package/node_modules/lodash/fp/flattenDeep.js +5 -0
  935. package/node_modules/lodash/fp/flattenDepth.js +5 -0
  936. package/node_modules/lodash/fp/flip.js +5 -0
  937. package/node_modules/lodash/fp/floor.js +5 -0
  938. package/node_modules/lodash/fp/flow.js +5 -0
  939. package/node_modules/lodash/fp/flowRight.js +5 -0
  940. package/node_modules/lodash/fp/forEach.js +5 -0
  941. package/node_modules/lodash/fp/forEachRight.js +5 -0
  942. package/node_modules/lodash/fp/forIn.js +5 -0
  943. package/node_modules/lodash/fp/forInRight.js +5 -0
  944. package/node_modules/lodash/fp/forOwn.js +5 -0
  945. package/node_modules/lodash/fp/forOwnRight.js +5 -0
  946. package/node_modules/lodash/fp/fromPairs.js +5 -0
  947. package/node_modules/lodash/fp/function.js +2 -0
  948. package/node_modules/lodash/fp/functions.js +5 -0
  949. package/node_modules/lodash/fp/functionsIn.js +5 -0
  950. package/node_modules/lodash/fp/get.js +5 -0
  951. package/node_modules/lodash/fp/getOr.js +5 -0
  952. package/node_modules/lodash/fp/groupBy.js +5 -0
  953. package/node_modules/lodash/fp/gt.js +5 -0
  954. package/node_modules/lodash/fp/gte.js +5 -0
  955. package/node_modules/lodash/fp/has.js +5 -0
  956. package/node_modules/lodash/fp/hasIn.js +5 -0
  957. package/node_modules/lodash/fp/head.js +5 -0
  958. package/node_modules/lodash/fp/identical.js +1 -0
  959. package/node_modules/lodash/fp/identity.js +5 -0
  960. package/node_modules/lodash/fp/inRange.js +5 -0
  961. package/node_modules/lodash/fp/includes.js +5 -0
  962. package/node_modules/lodash/fp/includesFrom.js +5 -0
  963. package/node_modules/lodash/fp/indexBy.js +1 -0
  964. package/node_modules/lodash/fp/indexOf.js +5 -0
  965. package/node_modules/lodash/fp/indexOfFrom.js +5 -0
  966. package/node_modules/lodash/fp/init.js +1 -0
  967. package/node_modules/lodash/fp/initial.js +5 -0
  968. package/node_modules/lodash/fp/intersection.js +5 -0
  969. package/node_modules/lodash/fp/intersectionBy.js +5 -0
  970. package/node_modules/lodash/fp/intersectionWith.js +5 -0
  971. package/node_modules/lodash/fp/invert.js +5 -0
  972. package/node_modules/lodash/fp/invertBy.js +5 -0
  973. package/node_modules/lodash/fp/invertObj.js +1 -0
  974. package/node_modules/lodash/fp/invoke.js +5 -0
  975. package/node_modules/lodash/fp/invokeArgs.js +5 -0
  976. package/node_modules/lodash/fp/invokeArgsMap.js +5 -0
  977. package/node_modules/lodash/fp/invokeMap.js +5 -0
  978. package/node_modules/lodash/fp/isArguments.js +5 -0
  979. package/node_modules/lodash/fp/isArray.js +5 -0
  980. package/node_modules/lodash/fp/isArrayBuffer.js +5 -0
  981. package/node_modules/lodash/fp/isArrayLike.js +5 -0
  982. package/node_modules/lodash/fp/isArrayLikeObject.js +5 -0
  983. package/node_modules/lodash/fp/isBoolean.js +5 -0
  984. package/node_modules/lodash/fp/isBuffer.js +5 -0
  985. package/node_modules/lodash/fp/isDate.js +5 -0
  986. package/node_modules/lodash/fp/isElement.js +5 -0
  987. package/node_modules/lodash/fp/isEmpty.js +5 -0
  988. package/node_modules/lodash/fp/isEqual.js +5 -0
  989. package/node_modules/lodash/fp/isEqualWith.js +5 -0
  990. package/node_modules/lodash/fp/isError.js +5 -0
  991. package/node_modules/lodash/fp/isFinite.js +5 -0
  992. package/node_modules/lodash/fp/isFunction.js +5 -0
  993. package/node_modules/lodash/fp/isInteger.js +5 -0
  994. package/node_modules/lodash/fp/isLength.js +5 -0
  995. package/node_modules/lodash/fp/isMap.js +5 -0
  996. package/node_modules/lodash/fp/isMatch.js +5 -0
  997. package/node_modules/lodash/fp/isMatchWith.js +5 -0
  998. package/node_modules/lodash/fp/isNaN.js +5 -0
  999. package/node_modules/lodash/fp/isNative.js +5 -0
  1000. package/node_modules/lodash/fp/isNil.js +5 -0
  1001. package/node_modules/lodash/fp/isNull.js +5 -0
  1002. package/node_modules/lodash/fp/isNumber.js +5 -0
  1003. package/node_modules/lodash/fp/isObject.js +5 -0
  1004. package/node_modules/lodash/fp/isObjectLike.js +5 -0
  1005. package/node_modules/lodash/fp/isPlainObject.js +5 -0
  1006. package/node_modules/lodash/fp/isRegExp.js +5 -0
  1007. package/node_modules/lodash/fp/isSafeInteger.js +5 -0
  1008. package/node_modules/lodash/fp/isSet.js +5 -0
  1009. package/node_modules/lodash/fp/isString.js +5 -0
  1010. package/node_modules/lodash/fp/isSymbol.js +5 -0
  1011. package/node_modules/lodash/fp/isTypedArray.js +5 -0
  1012. package/node_modules/lodash/fp/isUndefined.js +5 -0
  1013. package/node_modules/lodash/fp/isWeakMap.js +5 -0
  1014. package/node_modules/lodash/fp/isWeakSet.js +5 -0
  1015. package/node_modules/lodash/fp/iteratee.js +5 -0
  1016. package/node_modules/lodash/fp/join.js +5 -0
  1017. package/node_modules/lodash/fp/juxt.js +1 -0
  1018. package/node_modules/lodash/fp/kebabCase.js +5 -0
  1019. package/node_modules/lodash/fp/keyBy.js +5 -0
  1020. package/node_modules/lodash/fp/keys.js +5 -0
  1021. package/node_modules/lodash/fp/keysIn.js +5 -0
  1022. package/node_modules/lodash/fp/lang.js +2 -0
  1023. package/node_modules/lodash/fp/last.js +5 -0
  1024. package/node_modules/lodash/fp/lastIndexOf.js +5 -0
  1025. package/node_modules/lodash/fp/lastIndexOfFrom.js +5 -0
  1026. package/node_modules/lodash/fp/lowerCase.js +5 -0
  1027. package/node_modules/lodash/fp/lowerFirst.js +5 -0
  1028. package/node_modules/lodash/fp/lt.js +5 -0
  1029. package/node_modules/lodash/fp/lte.js +5 -0
  1030. package/node_modules/lodash/fp/map.js +5 -0
  1031. package/node_modules/lodash/fp/mapKeys.js +5 -0
  1032. package/node_modules/lodash/fp/mapValues.js +5 -0
  1033. package/node_modules/lodash/fp/matches.js +1 -0
  1034. package/node_modules/lodash/fp/matchesProperty.js +5 -0
  1035. package/node_modules/lodash/fp/math.js +2 -0
  1036. package/node_modules/lodash/fp/max.js +5 -0
  1037. package/node_modules/lodash/fp/maxBy.js +5 -0
  1038. package/node_modules/lodash/fp/mean.js +5 -0
  1039. package/node_modules/lodash/fp/meanBy.js +5 -0
  1040. package/node_modules/lodash/fp/memoize.js +5 -0
  1041. package/node_modules/lodash/fp/merge.js +5 -0
  1042. package/node_modules/lodash/fp/mergeAll.js +5 -0
  1043. package/node_modules/lodash/fp/mergeAllWith.js +5 -0
  1044. package/node_modules/lodash/fp/mergeWith.js +5 -0
  1045. package/node_modules/lodash/fp/method.js +5 -0
  1046. package/node_modules/lodash/fp/methodOf.js +5 -0
  1047. package/node_modules/lodash/fp/min.js +5 -0
  1048. package/node_modules/lodash/fp/minBy.js +5 -0
  1049. package/node_modules/lodash/fp/mixin.js +5 -0
  1050. package/node_modules/lodash/fp/multiply.js +5 -0
  1051. package/node_modules/lodash/fp/nAry.js +1 -0
  1052. package/node_modules/lodash/fp/negate.js +5 -0
  1053. package/node_modules/lodash/fp/next.js +5 -0
  1054. package/node_modules/lodash/fp/noop.js +5 -0
  1055. package/node_modules/lodash/fp/now.js +5 -0
  1056. package/node_modules/lodash/fp/nth.js +5 -0
  1057. package/node_modules/lodash/fp/nthArg.js +5 -0
  1058. package/node_modules/lodash/fp/number.js +2 -0
  1059. package/node_modules/lodash/fp/object.js +2 -0
  1060. package/node_modules/lodash/fp/omit.js +5 -0
  1061. package/node_modules/lodash/fp/omitAll.js +1 -0
  1062. package/node_modules/lodash/fp/omitBy.js +5 -0
  1063. package/node_modules/lodash/fp/once.js +5 -0
  1064. package/node_modules/lodash/fp/orderBy.js +5 -0
  1065. package/node_modules/lodash/fp/over.js +5 -0
  1066. package/node_modules/lodash/fp/overArgs.js +5 -0
  1067. package/node_modules/lodash/fp/overEvery.js +5 -0
  1068. package/node_modules/lodash/fp/overSome.js +5 -0
  1069. package/node_modules/lodash/fp/pad.js +5 -0
  1070. package/node_modules/lodash/fp/padChars.js +5 -0
  1071. package/node_modules/lodash/fp/padCharsEnd.js +5 -0
  1072. package/node_modules/lodash/fp/padCharsStart.js +5 -0
  1073. package/node_modules/lodash/fp/padEnd.js +5 -0
  1074. package/node_modules/lodash/fp/padStart.js +5 -0
  1075. package/node_modules/lodash/fp/parseInt.js +5 -0
  1076. package/node_modules/lodash/fp/partial.js +5 -0
  1077. package/node_modules/lodash/fp/partialRight.js +5 -0
  1078. package/node_modules/lodash/fp/partition.js +5 -0
  1079. package/node_modules/lodash/fp/path.js +1 -0
  1080. package/node_modules/lodash/fp/pathEq.js +1 -0
  1081. package/node_modules/lodash/fp/pathOr.js +1 -0
  1082. package/node_modules/lodash/fp/paths.js +1 -0
  1083. package/node_modules/lodash/fp/pick.js +5 -0
  1084. package/node_modules/lodash/fp/pickAll.js +1 -0
  1085. package/node_modules/lodash/fp/pickBy.js +5 -0
  1086. package/node_modules/lodash/fp/pipe.js +1 -0
  1087. package/node_modules/lodash/fp/placeholder.js +6 -0
  1088. package/node_modules/lodash/fp/plant.js +5 -0
  1089. package/node_modules/lodash/fp/pluck.js +1 -0
  1090. package/node_modules/lodash/fp/prop.js +1 -0
  1091. package/node_modules/lodash/fp/propEq.js +1 -0
  1092. package/node_modules/lodash/fp/propOr.js +1 -0
  1093. package/node_modules/lodash/fp/property.js +1 -0
  1094. package/node_modules/lodash/fp/propertyOf.js +5 -0
  1095. package/node_modules/lodash/fp/props.js +1 -0
  1096. package/node_modules/lodash/fp/pull.js +5 -0
  1097. package/node_modules/lodash/fp/pullAll.js +5 -0
  1098. package/node_modules/lodash/fp/pullAllBy.js +5 -0
  1099. package/node_modules/lodash/fp/pullAllWith.js +5 -0
  1100. package/node_modules/lodash/fp/pullAt.js +5 -0
  1101. package/node_modules/lodash/fp/random.js +5 -0
  1102. package/node_modules/lodash/fp/range.js +5 -0
  1103. package/node_modules/lodash/fp/rangeRight.js +5 -0
  1104. package/node_modules/lodash/fp/rangeStep.js +5 -0
  1105. package/node_modules/lodash/fp/rangeStepRight.js +5 -0
  1106. package/node_modules/lodash/fp/rearg.js +5 -0
  1107. package/node_modules/lodash/fp/reduce.js +5 -0
  1108. package/node_modules/lodash/fp/reduceRight.js +5 -0
  1109. package/node_modules/lodash/fp/reject.js +5 -0
  1110. package/node_modules/lodash/fp/remove.js +5 -0
  1111. package/node_modules/lodash/fp/repeat.js +5 -0
  1112. package/node_modules/lodash/fp/replace.js +5 -0
  1113. package/node_modules/lodash/fp/rest.js +5 -0
  1114. package/node_modules/lodash/fp/restFrom.js +5 -0
  1115. package/node_modules/lodash/fp/result.js +5 -0
  1116. package/node_modules/lodash/fp/reverse.js +5 -0
  1117. package/node_modules/lodash/fp/round.js +5 -0
  1118. package/node_modules/lodash/fp/sample.js +5 -0
  1119. package/node_modules/lodash/fp/sampleSize.js +5 -0
  1120. package/node_modules/lodash/fp/seq.js +2 -0
  1121. package/node_modules/lodash/fp/set.js +5 -0
  1122. package/node_modules/lodash/fp/setWith.js +5 -0
  1123. package/node_modules/lodash/fp/shuffle.js +5 -0
  1124. package/node_modules/lodash/fp/size.js +5 -0
  1125. package/node_modules/lodash/fp/slice.js +5 -0
  1126. package/node_modules/lodash/fp/snakeCase.js +5 -0
  1127. package/node_modules/lodash/fp/some.js +5 -0
  1128. package/node_modules/lodash/fp/sortBy.js +5 -0
  1129. package/node_modules/lodash/fp/sortedIndex.js +5 -0
  1130. package/node_modules/lodash/fp/sortedIndexBy.js +5 -0
  1131. package/node_modules/lodash/fp/sortedIndexOf.js +5 -0
  1132. package/node_modules/lodash/fp/sortedLastIndex.js +5 -0
  1133. package/node_modules/lodash/fp/sortedLastIndexBy.js +5 -0
  1134. package/node_modules/lodash/fp/sortedLastIndexOf.js +5 -0
  1135. package/node_modules/lodash/fp/sortedUniq.js +5 -0
  1136. package/node_modules/lodash/fp/sortedUniqBy.js +5 -0
  1137. package/node_modules/lodash/fp/split.js +5 -0
  1138. package/node_modules/lodash/fp/spread.js +5 -0
  1139. package/node_modules/lodash/fp/spreadFrom.js +5 -0
  1140. package/node_modules/lodash/fp/startCase.js +5 -0
  1141. package/node_modules/lodash/fp/startsWith.js +5 -0
  1142. package/node_modules/lodash/fp/string.js +2 -0
  1143. package/node_modules/lodash/fp/stubArray.js +5 -0
  1144. package/node_modules/lodash/fp/stubFalse.js +5 -0
  1145. package/node_modules/lodash/fp/stubObject.js +5 -0
  1146. package/node_modules/lodash/fp/stubString.js +5 -0
  1147. package/node_modules/lodash/fp/stubTrue.js +5 -0
  1148. package/node_modules/lodash/fp/subtract.js +5 -0
  1149. package/node_modules/lodash/fp/sum.js +5 -0
  1150. package/node_modules/lodash/fp/sumBy.js +5 -0
  1151. package/node_modules/lodash/fp/symmetricDifference.js +1 -0
  1152. package/node_modules/lodash/fp/symmetricDifferenceBy.js +1 -0
  1153. package/node_modules/lodash/fp/symmetricDifferenceWith.js +1 -0
  1154. package/node_modules/lodash/fp/tail.js +5 -0
  1155. package/node_modules/lodash/fp/take.js +5 -0
  1156. package/node_modules/lodash/fp/takeLast.js +1 -0
  1157. package/node_modules/lodash/fp/takeLastWhile.js +1 -0
  1158. package/node_modules/lodash/fp/takeRight.js +5 -0
  1159. package/node_modules/lodash/fp/takeRightWhile.js +5 -0
  1160. package/node_modules/lodash/fp/takeWhile.js +5 -0
  1161. package/node_modules/lodash/fp/tap.js +5 -0
  1162. package/node_modules/lodash/fp/template.js +5 -0
  1163. package/node_modules/lodash/fp/templateSettings.js +5 -0
  1164. package/node_modules/lodash/fp/throttle.js +5 -0
  1165. package/node_modules/lodash/fp/thru.js +5 -0
  1166. package/node_modules/lodash/fp/times.js +5 -0
  1167. package/node_modules/lodash/fp/toArray.js +5 -0
  1168. package/node_modules/lodash/fp/toFinite.js +5 -0
  1169. package/node_modules/lodash/fp/toInteger.js +5 -0
  1170. package/node_modules/lodash/fp/toIterator.js +5 -0
  1171. package/node_modules/lodash/fp/toJSON.js +5 -0
  1172. package/node_modules/lodash/fp/toLength.js +5 -0
  1173. package/node_modules/lodash/fp/toLower.js +5 -0
  1174. package/node_modules/lodash/fp/toNumber.js +5 -0
  1175. package/node_modules/lodash/fp/toPairs.js +5 -0
  1176. package/node_modules/lodash/fp/toPairsIn.js +5 -0
  1177. package/node_modules/lodash/fp/toPath.js +5 -0
  1178. package/node_modules/lodash/fp/toPlainObject.js +5 -0
  1179. package/node_modules/lodash/fp/toSafeInteger.js +5 -0
  1180. package/node_modules/lodash/fp/toString.js +5 -0
  1181. package/node_modules/lodash/fp/toUpper.js +5 -0
  1182. package/node_modules/lodash/fp/transform.js +5 -0
  1183. package/node_modules/lodash/fp/trim.js +5 -0
  1184. package/node_modules/lodash/fp/trimChars.js +5 -0
  1185. package/node_modules/lodash/fp/trimCharsEnd.js +5 -0
  1186. package/node_modules/lodash/fp/trimCharsStart.js +5 -0
  1187. package/node_modules/lodash/fp/trimEnd.js +5 -0
  1188. package/node_modules/lodash/fp/trimStart.js +5 -0
  1189. package/node_modules/lodash/fp/truncate.js +5 -0
  1190. package/node_modules/lodash/fp/unapply.js +1 -0
  1191. package/node_modules/lodash/fp/unary.js +5 -0
  1192. package/node_modules/lodash/fp/unescape.js +5 -0
  1193. package/node_modules/lodash/fp/union.js +5 -0
  1194. package/node_modules/lodash/fp/unionBy.js +5 -0
  1195. package/node_modules/lodash/fp/unionWith.js +5 -0
  1196. package/node_modules/lodash/fp/uniq.js +5 -0
  1197. package/node_modules/lodash/fp/uniqBy.js +5 -0
  1198. package/node_modules/lodash/fp/uniqWith.js +5 -0
  1199. package/node_modules/lodash/fp/uniqueId.js +5 -0
  1200. package/node_modules/lodash/fp/unnest.js +1 -0
  1201. package/node_modules/lodash/fp/unset.js +5 -0
  1202. package/node_modules/lodash/fp/unzip.js +5 -0
  1203. package/node_modules/lodash/fp/unzipWith.js +5 -0
  1204. package/node_modules/lodash/fp/update.js +5 -0
  1205. package/node_modules/lodash/fp/updateWith.js +5 -0
  1206. package/node_modules/lodash/fp/upperCase.js +5 -0
  1207. package/node_modules/lodash/fp/upperFirst.js +5 -0
  1208. package/node_modules/lodash/fp/useWith.js +1 -0
  1209. package/node_modules/lodash/fp/util.js +2 -0
  1210. package/node_modules/lodash/fp/value.js +5 -0
  1211. package/node_modules/lodash/fp/valueOf.js +5 -0
  1212. package/node_modules/lodash/fp/values.js +5 -0
  1213. package/node_modules/lodash/fp/valuesIn.js +5 -0
  1214. package/node_modules/lodash/fp/where.js +1 -0
  1215. package/node_modules/lodash/fp/whereEq.js +1 -0
  1216. package/node_modules/lodash/fp/without.js +5 -0
  1217. package/node_modules/lodash/fp/words.js +5 -0
  1218. package/node_modules/lodash/fp/wrap.js +5 -0
  1219. package/node_modules/lodash/fp/wrapperAt.js +5 -0
  1220. package/node_modules/lodash/fp/wrapperChain.js +5 -0
  1221. package/node_modules/lodash/fp/wrapperLodash.js +5 -0
  1222. package/node_modules/lodash/fp/wrapperReverse.js +5 -0
  1223. package/node_modules/lodash/fp/wrapperValue.js +5 -0
  1224. package/node_modules/lodash/fp/xor.js +5 -0
  1225. package/node_modules/lodash/fp/xorBy.js +5 -0
  1226. package/node_modules/lodash/fp/xorWith.js +5 -0
  1227. package/node_modules/lodash/fp/zip.js +5 -0
  1228. package/node_modules/lodash/fp/zipAll.js +5 -0
  1229. package/node_modules/lodash/fp/zipObj.js +1 -0
  1230. package/node_modules/lodash/fp/zipObject.js +5 -0
  1231. package/node_modules/lodash/fp/zipObjectDeep.js +5 -0
  1232. package/node_modules/lodash/fp/zipWith.js +5 -0
  1233. package/node_modules/lodash/fp.js +2 -0
  1234. package/node_modules/lodash/fromPairs.js +28 -0
  1235. package/node_modules/lodash/function.js +25 -0
  1236. package/node_modules/lodash/functions.js +31 -0
  1237. package/node_modules/lodash/functionsIn.js +31 -0
  1238. package/node_modules/lodash/get.js +33 -0
  1239. package/node_modules/lodash/groupBy.js +41 -0
  1240. package/node_modules/lodash/gt.js +29 -0
  1241. package/node_modules/lodash/gte.js +30 -0
  1242. package/node_modules/lodash/has.js +35 -0
  1243. package/node_modules/lodash/hasIn.js +34 -0
  1244. package/node_modules/lodash/head.js +23 -0
  1245. package/node_modules/lodash/identity.js +21 -0
  1246. package/node_modules/lodash/inRange.js +55 -0
  1247. package/node_modules/lodash/includes.js +53 -0
  1248. package/node_modules/lodash/index.js +1 -0
  1249. package/node_modules/lodash/indexOf.js +42 -0
  1250. package/node_modules/lodash/initial.js +22 -0
  1251. package/node_modules/lodash/intersection.js +30 -0
  1252. package/node_modules/lodash/intersectionBy.js +45 -0
  1253. package/node_modules/lodash/intersectionWith.js +41 -0
  1254. package/node_modules/lodash/invert.js +42 -0
  1255. package/node_modules/lodash/invertBy.js +56 -0
  1256. package/node_modules/lodash/invoke.js +24 -0
  1257. package/node_modules/lodash/invokeMap.js +41 -0
  1258. package/node_modules/lodash/isArguments.js +36 -0
  1259. package/node_modules/lodash/isArray.js +26 -0
  1260. package/node_modules/lodash/isArrayBuffer.js +27 -0
  1261. package/node_modules/lodash/isArrayLike.js +33 -0
  1262. package/node_modules/lodash/isArrayLikeObject.js +33 -0
  1263. package/node_modules/lodash/isBoolean.js +29 -0
  1264. package/node_modules/lodash/isBuffer.js +38 -0
  1265. package/node_modules/lodash/isDate.js +27 -0
  1266. package/node_modules/lodash/isElement.js +25 -0
  1267. package/node_modules/lodash/isEmpty.js +77 -0
  1268. package/node_modules/lodash/isEqual.js +35 -0
  1269. package/node_modules/lodash/isEqualWith.js +41 -0
  1270. package/node_modules/lodash/isError.js +36 -0
  1271. package/node_modules/lodash/isFinite.js +36 -0
  1272. package/node_modules/lodash/isFunction.js +37 -0
  1273. package/node_modules/lodash/isInteger.js +33 -0
  1274. package/node_modules/lodash/isLength.js +35 -0
  1275. package/node_modules/lodash/isMap.js +27 -0
  1276. package/node_modules/lodash/isMatch.js +36 -0
  1277. package/node_modules/lodash/isMatchWith.js +41 -0
  1278. package/node_modules/lodash/isNaN.js +38 -0
  1279. package/node_modules/lodash/isNative.js +40 -0
  1280. package/node_modules/lodash/isNil.js +25 -0
  1281. package/node_modules/lodash/isNull.js +22 -0
  1282. package/node_modules/lodash/isNumber.js +38 -0
  1283. package/node_modules/lodash/isObject.js +31 -0
  1284. package/node_modules/lodash/isObjectLike.js +29 -0
  1285. package/node_modules/lodash/isPlainObject.js +62 -0
  1286. package/node_modules/lodash/isRegExp.js +27 -0
  1287. package/node_modules/lodash/isSafeInteger.js +37 -0
  1288. package/node_modules/lodash/isSet.js +27 -0
  1289. package/node_modules/lodash/isString.js +30 -0
  1290. package/node_modules/lodash/isSymbol.js +29 -0
  1291. package/node_modules/lodash/isTypedArray.js +27 -0
  1292. package/node_modules/lodash/isUndefined.js +22 -0
  1293. package/node_modules/lodash/isWeakMap.js +28 -0
  1294. package/node_modules/lodash/isWeakSet.js +28 -0
  1295. package/node_modules/lodash/iteratee.js +53 -0
  1296. package/node_modules/lodash/join.js +26 -0
  1297. package/node_modules/lodash/kebabCase.js +28 -0
  1298. package/node_modules/lodash/keyBy.js +36 -0
  1299. package/node_modules/lodash/keys.js +37 -0
  1300. package/node_modules/lodash/keysIn.js +32 -0
  1301. package/node_modules/lodash/lang.js +58 -0
  1302. package/node_modules/lodash/last.js +20 -0
  1303. package/node_modules/lodash/lastIndexOf.js +46 -0
  1304. package/node_modules/lodash/lodash.js +17209 -0
  1305. package/node_modules/lodash/lodash.min.js +140 -0
  1306. package/node_modules/lodash/lowerCase.js +27 -0
  1307. package/node_modules/lodash/lowerFirst.js +22 -0
  1308. package/node_modules/lodash/lt.js +29 -0
  1309. package/node_modules/lodash/lte.js +30 -0
  1310. package/node_modules/lodash/map.js +53 -0
  1311. package/node_modules/lodash/mapKeys.js +36 -0
  1312. package/node_modules/lodash/mapValues.js +43 -0
  1313. package/node_modules/lodash/matches.js +46 -0
  1314. package/node_modules/lodash/matchesProperty.js +44 -0
  1315. package/node_modules/lodash/math.js +17 -0
  1316. package/node_modules/lodash/max.js +29 -0
  1317. package/node_modules/lodash/maxBy.js +34 -0
  1318. package/node_modules/lodash/mean.js +22 -0
  1319. package/node_modules/lodash/meanBy.js +31 -0
  1320. package/node_modules/lodash/memoize.js +73 -0
  1321. package/node_modules/lodash/merge.js +39 -0
  1322. package/node_modules/lodash/mergeWith.js +39 -0
  1323. package/node_modules/lodash/method.js +34 -0
  1324. package/node_modules/lodash/methodOf.js +33 -0
  1325. package/node_modules/lodash/min.js +29 -0
  1326. package/node_modules/lodash/minBy.js +34 -0
  1327. package/node_modules/lodash/mixin.js +74 -0
  1328. package/node_modules/lodash/multiply.js +22 -0
  1329. package/node_modules/lodash/negate.js +40 -0
  1330. package/node_modules/lodash/next.js +35 -0
  1331. package/node_modules/lodash/noop.js +17 -0
  1332. package/node_modules/lodash/now.js +23 -0
  1333. package/node_modules/lodash/nth.js +29 -0
  1334. package/node_modules/lodash/nthArg.js +32 -0
  1335. package/node_modules/lodash/number.js +5 -0
  1336. package/node_modules/lodash/object.js +49 -0
  1337. package/node_modules/lodash/omit.js +57 -0
  1338. package/node_modules/lodash/omitBy.js +29 -0
  1339. package/node_modules/lodash/once.js +25 -0
  1340. package/node_modules/lodash/orderBy.js +47 -0
  1341. package/node_modules/lodash/over.js +24 -0
  1342. package/node_modules/lodash/overArgs.js +61 -0
  1343. package/node_modules/lodash/overEvery.js +34 -0
  1344. package/node_modules/lodash/overSome.js +37 -0
  1345. package/node_modules/lodash/package.json +17 -0
  1346. package/node_modules/lodash/pad.js +49 -0
  1347. package/node_modules/lodash/padEnd.js +39 -0
  1348. package/node_modules/lodash/padStart.js +39 -0
  1349. package/node_modules/lodash/parseInt.js +43 -0
  1350. package/node_modules/lodash/partial.js +50 -0
  1351. package/node_modules/lodash/partialRight.js +49 -0
  1352. package/node_modules/lodash/partition.js +43 -0
  1353. package/node_modules/lodash/pick.js +25 -0
  1354. package/node_modules/lodash/pickBy.js +37 -0
  1355. package/node_modules/lodash/plant.js +48 -0
  1356. package/node_modules/lodash/property.js +32 -0
  1357. package/node_modules/lodash/propertyOf.js +30 -0
  1358. package/node_modules/lodash/pull.js +29 -0
  1359. package/node_modules/lodash/pullAll.js +29 -0
  1360. package/node_modules/lodash/pullAllBy.js +33 -0
  1361. package/node_modules/lodash/pullAllWith.js +32 -0
  1362. package/node_modules/lodash/pullAt.js +43 -0
  1363. package/node_modules/lodash/random.js +82 -0
  1364. package/node_modules/lodash/range.js +46 -0
  1365. package/node_modules/lodash/rangeRight.js +41 -0
  1366. package/node_modules/lodash/rearg.js +33 -0
  1367. package/node_modules/lodash/reduce.js +51 -0
  1368. package/node_modules/lodash/reduceRight.js +36 -0
  1369. package/node_modules/lodash/reject.js +46 -0
  1370. package/node_modules/lodash/release.md +48 -0
  1371. package/node_modules/lodash/remove.js +53 -0
  1372. package/node_modules/lodash/repeat.js +37 -0
  1373. package/node_modules/lodash/replace.js +29 -0
  1374. package/node_modules/lodash/rest.js +40 -0
  1375. package/node_modules/lodash/result.js +56 -0
  1376. package/node_modules/lodash/reverse.js +34 -0
  1377. package/node_modules/lodash/round.js +26 -0
  1378. package/node_modules/lodash/sample.js +24 -0
  1379. package/node_modules/lodash/sampleSize.js +37 -0
  1380. package/node_modules/lodash/seq.js +16 -0
  1381. package/node_modules/lodash/set.js +35 -0
  1382. package/node_modules/lodash/setWith.js +32 -0
  1383. package/node_modules/lodash/shuffle.js +25 -0
  1384. package/node_modules/lodash/size.js +46 -0
  1385. package/node_modules/lodash/slice.js +37 -0
  1386. package/node_modules/lodash/snakeCase.js +28 -0
  1387. package/node_modules/lodash/some.js +51 -0
  1388. package/node_modules/lodash/sortBy.js +48 -0
  1389. package/node_modules/lodash/sortedIndex.js +24 -0
  1390. package/node_modules/lodash/sortedIndexBy.js +33 -0
  1391. package/node_modules/lodash/sortedIndexOf.js +31 -0
  1392. package/node_modules/lodash/sortedLastIndex.js +25 -0
  1393. package/node_modules/lodash/sortedLastIndexBy.js +33 -0
  1394. package/node_modules/lodash/sortedLastIndexOf.js +31 -0
  1395. package/node_modules/lodash/sortedUniq.js +24 -0
  1396. package/node_modules/lodash/sortedUniqBy.js +26 -0
  1397. package/node_modules/lodash/split.js +52 -0
  1398. package/node_modules/lodash/spread.js +63 -0
  1399. package/node_modules/lodash/startCase.js +29 -0
  1400. package/node_modules/lodash/startsWith.js +39 -0
  1401. package/node_modules/lodash/string.js +33 -0
  1402. package/node_modules/lodash/stubArray.js +23 -0
  1403. package/node_modules/lodash/stubFalse.js +18 -0
  1404. package/node_modules/lodash/stubObject.js +23 -0
  1405. package/node_modules/lodash/stubString.js +18 -0
  1406. package/node_modules/lodash/stubTrue.js +18 -0
  1407. package/node_modules/lodash/subtract.js +22 -0
  1408. package/node_modules/lodash/sum.js +24 -0
  1409. package/node_modules/lodash/sumBy.js +33 -0
  1410. package/node_modules/lodash/tail.js +22 -0
  1411. package/node_modules/lodash/take.js +37 -0
  1412. package/node_modules/lodash/takeRight.js +39 -0
  1413. package/node_modules/lodash/takeRightWhile.js +45 -0
  1414. package/node_modules/lodash/takeWhile.js +45 -0
  1415. package/node_modules/lodash/tap.js +29 -0
  1416. package/node_modules/lodash/template.js +272 -0
  1417. package/node_modules/lodash/templateSettings.js +67 -0
  1418. package/node_modules/lodash/throttle.js +69 -0
  1419. package/node_modules/lodash/thru.js +28 -0
  1420. package/node_modules/lodash/times.js +51 -0
  1421. package/node_modules/lodash/toArray.js +58 -0
  1422. package/node_modules/lodash/toFinite.js +42 -0
  1423. package/node_modules/lodash/toInteger.js +36 -0
  1424. package/node_modules/lodash/toIterator.js +23 -0
  1425. package/node_modules/lodash/toJSON.js +1 -0
  1426. package/node_modules/lodash/toLength.js +38 -0
  1427. package/node_modules/lodash/toLower.js +28 -0
  1428. package/node_modules/lodash/toNumber.js +64 -0
  1429. package/node_modules/lodash/toPairs.js +30 -0
  1430. package/node_modules/lodash/toPairsIn.js +30 -0
  1431. package/node_modules/lodash/toPath.js +33 -0
  1432. package/node_modules/lodash/toPlainObject.js +32 -0
  1433. package/node_modules/lodash/toSafeInteger.js +37 -0
  1434. package/node_modules/lodash/toString.js +28 -0
  1435. package/node_modules/lodash/toUpper.js +28 -0
  1436. package/node_modules/lodash/transform.js +65 -0
  1437. package/node_modules/lodash/trim.js +47 -0
  1438. package/node_modules/lodash/trimEnd.js +41 -0
  1439. package/node_modules/lodash/trimStart.js +43 -0
  1440. package/node_modules/lodash/truncate.js +111 -0
  1441. package/node_modules/lodash/unary.js +22 -0
  1442. package/node_modules/lodash/unescape.js +34 -0
  1443. package/node_modules/lodash/union.js +26 -0
  1444. package/node_modules/lodash/unionBy.js +39 -0
  1445. package/node_modules/lodash/unionWith.js +34 -0
  1446. package/node_modules/lodash/uniq.js +25 -0
  1447. package/node_modules/lodash/uniqBy.js +31 -0
  1448. package/node_modules/lodash/uniqWith.js +28 -0
  1449. package/node_modules/lodash/uniqueId.js +28 -0
  1450. package/node_modules/lodash/unset.js +34 -0
  1451. package/node_modules/lodash/unzip.js +45 -0
  1452. package/node_modules/lodash/unzipWith.js +39 -0
  1453. package/node_modules/lodash/update.js +35 -0
  1454. package/node_modules/lodash/updateWith.js +33 -0
  1455. package/node_modules/lodash/upperCase.js +27 -0
  1456. package/node_modules/lodash/upperFirst.js +22 -0
  1457. package/node_modules/lodash/util.js +34 -0
  1458. package/node_modules/lodash/value.js +1 -0
  1459. package/node_modules/lodash/valueOf.js +1 -0
  1460. package/node_modules/lodash/values.js +34 -0
  1461. package/node_modules/lodash/valuesIn.js +32 -0
  1462. package/node_modules/lodash/without.js +31 -0
  1463. package/node_modules/lodash/words.js +35 -0
  1464. package/node_modules/lodash/wrap.js +30 -0
  1465. package/node_modules/lodash/wrapperAt.js +48 -0
  1466. package/node_modules/lodash/wrapperChain.js +34 -0
  1467. package/node_modules/lodash/wrapperLodash.js +147 -0
  1468. package/node_modules/lodash/wrapperReverse.js +44 -0
  1469. package/node_modules/lodash/wrapperValue.js +21 -0
  1470. package/node_modules/lodash/xor.js +28 -0
  1471. package/node_modules/lodash/xorBy.js +39 -0
  1472. package/node_modules/lodash/xorWith.js +34 -0
  1473. package/node_modules/lodash/zip.js +22 -0
  1474. package/node_modules/lodash/zipObject.js +24 -0
  1475. package/node_modules/lodash/zipObjectDeep.js +23 -0
  1476. package/node_modules/lodash/zipWith.js +32 -0
  1477. package/node_modules/lodash-es/LICENSE +47 -0
  1478. package/node_modules/lodash-es/README.md +10 -0
  1479. package/node_modules/lodash-es/_DataView.js +7 -0
  1480. package/node_modules/lodash-es/_Hash.js +32 -0
  1481. package/node_modules/lodash-es/_LazyWrapper.js +28 -0
  1482. package/node_modules/lodash-es/_ListCache.js +32 -0
  1483. package/node_modules/lodash-es/_LodashWrapper.js +22 -0
  1484. package/node_modules/lodash-es/_Map.js +7 -0
  1485. package/node_modules/lodash-es/_MapCache.js +32 -0
  1486. package/node_modules/lodash-es/_Promise.js +7 -0
  1487. package/node_modules/lodash-es/_Set.js +7 -0
  1488. package/node_modules/lodash-es/_SetCache.js +27 -0
  1489. package/node_modules/lodash-es/_Stack.js +27 -0
  1490. package/node_modules/lodash-es/_Symbol.js +6 -0
  1491. package/node_modules/lodash-es/_Uint8Array.js +6 -0
  1492. package/node_modules/lodash-es/_WeakMap.js +7 -0
  1493. package/node_modules/lodash-es/_addMapEntry.js +15 -0
  1494. package/node_modules/lodash-es/_addSetEntry.js +15 -0
  1495. package/node_modules/lodash-es/_apply.js +21 -0
  1496. package/node_modules/lodash-es/_arrayAggregator.js +22 -0
  1497. package/node_modules/lodash-es/_arrayEach.js +22 -0
  1498. package/node_modules/lodash-es/_arrayEachRight.js +21 -0
  1499. package/node_modules/lodash-es/_arrayEvery.js +23 -0
  1500. package/node_modules/lodash-es/_arrayFilter.js +25 -0
  1501. package/node_modules/lodash-es/_arrayIncludes.js +17 -0
  1502. package/node_modules/lodash-es/_arrayIncludesWith.js +22 -0
  1503. package/node_modules/lodash-es/_arrayLikeKeys.js +49 -0
  1504. package/node_modules/lodash-es/_arrayMap.js +21 -0
  1505. package/node_modules/lodash-es/_arrayPush.js +20 -0
  1506. package/node_modules/lodash-es/_arrayReduce.js +26 -0
  1507. package/node_modules/lodash-es/_arrayReduceRight.js +24 -0
  1508. package/node_modules/lodash-es/_arraySample.js +15 -0
  1509. package/node_modules/lodash-es/_arraySampleSize.js +17 -0
  1510. package/node_modules/lodash-es/_arrayShuffle.js +15 -0
  1511. package/node_modules/lodash-es/_arraySome.js +23 -0
  1512. package/node_modules/lodash-es/_asciiSize.js +12 -0
  1513. package/node_modules/lodash-es/_asciiToArray.js +12 -0
  1514. package/node_modules/lodash-es/_asciiWords.js +15 -0
  1515. package/node_modules/lodash-es/_assignMergeValue.js +20 -0
  1516. package/node_modules/lodash-es/_assignValue.js +28 -0
  1517. package/node_modules/lodash-es/_assocIndexOf.js +21 -0
  1518. package/node_modules/lodash-es/_baseAggregator.js +21 -0
  1519. package/node_modules/lodash-es/_baseAssign.js +17 -0
  1520. package/node_modules/lodash-es/_baseAssignIn.js +17 -0
  1521. package/node_modules/lodash-es/_baseAssignValue.js +25 -0
  1522. package/node_modules/lodash-es/_baseAt.js +23 -0
  1523. package/node_modules/lodash-es/_baseClamp.js +22 -0
  1524. package/node_modules/lodash-es/_baseClone.js +166 -0
  1525. package/node_modules/lodash-es/_baseConforms.js +18 -0
  1526. package/node_modules/lodash-es/_baseConformsTo.js +27 -0
  1527. package/node_modules/lodash-es/_baseCreate.js +30 -0
  1528. package/node_modules/lodash-es/_baseDelay.js +21 -0
  1529. package/node_modules/lodash-es/_baseDifference.js +67 -0
  1530. package/node_modules/lodash-es/_baseEach.js +14 -0
  1531. package/node_modules/lodash-es/_baseEachRight.js +14 -0
  1532. package/node_modules/lodash-es/_baseEvery.js +21 -0
  1533. package/node_modules/lodash-es/_baseExtremum.js +32 -0
  1534. package/node_modules/lodash-es/_baseFill.js +32 -0
  1535. package/node_modules/lodash-es/_baseFilter.js +21 -0
  1536. package/node_modules/lodash-es/_baseFindIndex.js +24 -0
  1537. package/node_modules/lodash-es/_baseFindKey.js +23 -0
  1538. package/node_modules/lodash-es/_baseFlatten.js +38 -0
  1539. package/node_modules/lodash-es/_baseFor.js +16 -0
  1540. package/node_modules/lodash-es/_baseForOwn.js +16 -0
  1541. package/node_modules/lodash-es/_baseForOwnRight.js +16 -0
  1542. package/node_modules/lodash-es/_baseForRight.js +15 -0
  1543. package/node_modules/lodash-es/_baseFunctions.js +19 -0
  1544. package/node_modules/lodash-es/_baseGet.js +24 -0
  1545. package/node_modules/lodash-es/_baseGetAllKeys.js +20 -0
  1546. package/node_modules/lodash-es/_baseGetTag.js +28 -0
  1547. package/node_modules/lodash-es/_baseGt.js +14 -0
  1548. package/node_modules/lodash-es/_baseHas.js +19 -0
  1549. package/node_modules/lodash-es/_baseHasIn.js +13 -0
  1550. package/node_modules/lodash-es/_baseInRange.js +18 -0
  1551. package/node_modules/lodash-es/_baseIndexOf.js +20 -0
  1552. package/node_modules/lodash-es/_baseIndexOfWith.js +23 -0
  1553. package/node_modules/lodash-es/_baseIntersection.js +74 -0
  1554. package/node_modules/lodash-es/_baseInverter.js +21 -0
  1555. package/node_modules/lodash-es/_baseInvoke.js +24 -0
  1556. package/node_modules/lodash-es/_baseIsArguments.js +18 -0
  1557. package/node_modules/lodash-es/_baseIsArrayBuffer.js +17 -0
  1558. package/node_modules/lodash-es/_baseIsDate.js +18 -0
  1559. package/node_modules/lodash-es/_baseIsEqual.js +28 -0
  1560. package/node_modules/lodash-es/_baseIsEqualDeep.js +83 -0
  1561. package/node_modules/lodash-es/_baseIsMap.js +18 -0
  1562. package/node_modules/lodash-es/_baseIsMatch.js +62 -0
  1563. package/node_modules/lodash-es/_baseIsNaN.js +12 -0
  1564. package/node_modules/lodash-es/_baseIsNative.js +47 -0
  1565. package/node_modules/lodash-es/_baseIsRegExp.js +18 -0
  1566. package/node_modules/lodash-es/_baseIsSet.js +18 -0
  1567. package/node_modules/lodash-es/_baseIsTypedArray.js +60 -0
  1568. package/node_modules/lodash-es/_baseIteratee.js +31 -0
  1569. package/node_modules/lodash-es/_baseKeys.js +30 -0
  1570. package/node_modules/lodash-es/_baseKeysIn.js +33 -0
  1571. package/node_modules/lodash-es/_baseLodash.js +10 -0
  1572. package/node_modules/lodash-es/_baseLt.js +14 -0
  1573. package/node_modules/lodash-es/_baseMap.js +22 -0
  1574. package/node_modules/lodash-es/_baseMatches.js +22 -0
  1575. package/node_modules/lodash-es/_baseMatchesProperty.js +33 -0
  1576. package/node_modules/lodash-es/_baseMean.js +20 -0
  1577. package/node_modules/lodash-es/_baseMerge.js +42 -0
  1578. package/node_modules/lodash-es/_baseMergeDeep.js +94 -0
  1579. package/node_modules/lodash-es/_baseNth.js +20 -0
  1580. package/node_modules/lodash-es/_baseOrderBy.js +49 -0
  1581. package/node_modules/lodash-es/_basePick.js +19 -0
  1582. package/node_modules/lodash-es/_basePickBy.js +30 -0
  1583. package/node_modules/lodash-es/_baseProperty.js +14 -0
  1584. package/node_modules/lodash-es/_basePropertyDeep.js +16 -0
  1585. package/node_modules/lodash-es/_basePropertyOf.js +14 -0
  1586. package/node_modules/lodash-es/_basePullAll.js +51 -0
  1587. package/node_modules/lodash-es/_basePullAt.js +37 -0
  1588. package/node_modules/lodash-es/_baseRandom.js +18 -0
  1589. package/node_modules/lodash-es/_baseRange.js +28 -0
  1590. package/node_modules/lodash-es/_baseReduce.js +23 -0
  1591. package/node_modules/lodash-es/_baseRepeat.js +35 -0
  1592. package/node_modules/lodash-es/_baseRest.js +17 -0
  1593. package/node_modules/lodash-es/_baseSample.js +15 -0
  1594. package/node_modules/lodash-es/_baseSampleSize.js +18 -0
  1595. package/node_modules/lodash-es/_baseSet.js +51 -0
  1596. package/node_modules/lodash-es/_baseSetData.js +17 -0
  1597. package/node_modules/lodash-es/_baseSetToString.js +22 -0
  1598. package/node_modules/lodash-es/_baseShuffle.js +15 -0
  1599. package/node_modules/lodash-es/_baseSlice.js +31 -0
  1600. package/node_modules/lodash-es/_baseSome.js +22 -0
  1601. package/node_modules/lodash-es/_baseSortBy.js +21 -0
  1602. package/node_modules/lodash-es/_baseSortedIndex.js +42 -0
  1603. package/node_modules/lodash-es/_baseSortedIndexBy.js +67 -0
  1604. package/node_modules/lodash-es/_baseSortedUniq.js +30 -0
  1605. package/node_modules/lodash-es/_baseSum.js +24 -0
  1606. package/node_modules/lodash-es/_baseTimes.js +20 -0
  1607. package/node_modules/lodash-es/_baseToNumber.js +24 -0
  1608. package/node_modules/lodash-es/_baseToPairs.js +18 -0
  1609. package/node_modules/lodash-es/_baseToString.js +37 -0
  1610. package/node_modules/lodash-es/_baseTrim.js +19 -0
  1611. package/node_modules/lodash-es/_baseUnary.js +14 -0
  1612. package/node_modules/lodash-es/_baseUniq.js +72 -0
  1613. package/node_modules/lodash-es/_baseUnset.js +20 -0
  1614. package/node_modules/lodash-es/_baseUpdate.js +18 -0
  1615. package/node_modules/lodash-es/_baseValues.js +19 -0
  1616. package/node_modules/lodash-es/_baseWhile.js +26 -0
  1617. package/node_modules/lodash-es/_baseWrapperValue.js +25 -0
  1618. package/node_modules/lodash-es/_baseXor.js +36 -0
  1619. package/node_modules/lodash-es/_baseZipObject.js +23 -0
  1620. package/node_modules/lodash-es/_cacheHas.js +13 -0
  1621. package/node_modules/lodash-es/_castArrayLikeObject.js +14 -0
  1622. package/node_modules/lodash-es/_castFunction.js +14 -0
  1623. package/node_modules/lodash-es/_castPath.js +21 -0
  1624. package/node_modules/lodash-es/_castRest.js +14 -0
  1625. package/node_modules/lodash-es/_castSlice.js +18 -0
  1626. package/node_modules/lodash-es/_charsEndIndex.js +19 -0
  1627. package/node_modules/lodash-es/_charsStartIndex.js +20 -0
  1628. package/node_modules/lodash-es/_cloneArrayBuffer.js +16 -0
  1629. package/node_modules/lodash-es/_cloneBuffer.js +35 -0
  1630. package/node_modules/lodash-es/_cloneDataView.js +16 -0
  1631. package/node_modules/lodash-es/_cloneMap.js +22 -0
  1632. package/node_modules/lodash-es/_cloneRegExp.js +17 -0
  1633. package/node_modules/lodash-es/_cloneSet.js +22 -0
  1634. package/node_modules/lodash-es/_cloneSymbol.js +18 -0
  1635. package/node_modules/lodash-es/_cloneTypedArray.js +16 -0
  1636. package/node_modules/lodash-es/_compareAscending.js +41 -0
  1637. package/node_modules/lodash-es/_compareMultiple.js +44 -0
  1638. package/node_modules/lodash-es/_composeArgs.js +39 -0
  1639. package/node_modules/lodash-es/_composeArgsRight.js +41 -0
  1640. package/node_modules/lodash-es/_copyArray.js +20 -0
  1641. package/node_modules/lodash-es/_copyObject.js +40 -0
  1642. package/node_modules/lodash-es/_copySymbols.js +16 -0
  1643. package/node_modules/lodash-es/_copySymbolsIn.js +16 -0
  1644. package/node_modules/lodash-es/_coreJsData.js +6 -0
  1645. package/node_modules/lodash-es/_countHolders.js +21 -0
  1646. package/node_modules/lodash-es/_createAggregator.js +23 -0
  1647. package/node_modules/lodash-es/_createAssigner.js +37 -0
  1648. package/node_modules/lodash-es/_createBaseEach.js +32 -0
  1649. package/node_modules/lodash-es/_createBaseFor.js +25 -0
  1650. package/node_modules/lodash-es/_createBind.js +28 -0
  1651. package/node_modules/lodash-es/_createCaseFirst.js +33 -0
  1652. package/node_modules/lodash-es/_createCompounder.js +24 -0
  1653. package/node_modules/lodash-es/_createCtor.js +37 -0
  1654. package/node_modules/lodash-es/_createCurry.js +46 -0
  1655. package/node_modules/lodash-es/_createFind.js +25 -0
  1656. package/node_modules/lodash-es/_createFlow.js +78 -0
  1657. package/node_modules/lodash-es/_createHybrid.js +92 -0
  1658. package/node_modules/lodash-es/_createInverter.js +17 -0
  1659. package/node_modules/lodash-es/_createMathOperation.js +38 -0
  1660. package/node_modules/lodash-es/_createOver.js +27 -0
  1661. package/node_modules/lodash-es/_createPadding.js +33 -0
  1662. package/node_modules/lodash-es/_createPartial.js +43 -0
  1663. package/node_modules/lodash-es/_createRange.js +30 -0
  1664. package/node_modules/lodash-es/_createRecurry.js +56 -0
  1665. package/node_modules/lodash-es/_createRelationalOperation.js +20 -0
  1666. package/node_modules/lodash-es/_createRound.js +35 -0
  1667. package/node_modules/lodash-es/_createSet.js +19 -0
  1668. package/node_modules/lodash-es/_createToPairs.js +30 -0
  1669. package/node_modules/lodash-es/_createWrap.js +106 -0
  1670. package/node_modules/lodash-es/_customDefaultsAssignIn.js +29 -0
  1671. package/node_modules/lodash-es/_customDefaultsMerge.js +28 -0
  1672. package/node_modules/lodash-es/_customOmitClone.js +16 -0
  1673. package/node_modules/lodash-es/_deburrLetter.js +71 -0
  1674. package/node_modules/lodash-es/_defineProperty.js +11 -0
  1675. package/node_modules/lodash-es/_equalArrays.js +84 -0
  1676. package/node_modules/lodash-es/_equalByTag.js +112 -0
  1677. package/node_modules/lodash-es/_equalObjects.js +90 -0
  1678. package/node_modules/lodash-es/_escapeHtmlChar.js +21 -0
  1679. package/node_modules/lodash-es/_escapeStringChar.js +22 -0
  1680. package/node_modules/lodash-es/_flatRest.js +16 -0
  1681. package/node_modules/lodash-es/_freeGlobal.js +4 -0
  1682. package/node_modules/lodash-es/_getAllKeys.js +16 -0
  1683. package/node_modules/lodash-es/_getAllKeysIn.js +17 -0
  1684. package/node_modules/lodash-es/_getData.js +15 -0
  1685. package/node_modules/lodash-es/_getFuncName.js +31 -0
  1686. package/node_modules/lodash-es/_getHolder.js +13 -0
  1687. package/node_modules/lodash-es/_getMapData.js +18 -0
  1688. package/node_modules/lodash-es/_getMatchData.js +24 -0
  1689. package/node_modules/lodash-es/_getNative.js +17 -0
  1690. package/node_modules/lodash-es/_getPrototype.js +6 -0
  1691. package/node_modules/lodash-es/_getRawTag.js +46 -0
  1692. package/node_modules/lodash-es/_getSymbols.js +30 -0
  1693. package/node_modules/lodash-es/_getSymbolsIn.js +25 -0
  1694. package/node_modules/lodash-es/_getTag.js +58 -0
  1695. package/node_modules/lodash-es/_getValue.js +13 -0
  1696. package/node_modules/lodash-es/_getView.js +33 -0
  1697. package/node_modules/lodash-es/_getWrapDetails.js +17 -0
  1698. package/node_modules/lodash-es/_hasPath.js +39 -0
  1699. package/node_modules/lodash-es/_hasUnicode.js +26 -0
  1700. package/node_modules/lodash-es/_hasUnicodeWord.js +15 -0
  1701. package/node_modules/lodash-es/_hashClear.js +15 -0
  1702. package/node_modules/lodash-es/_hashDelete.js +17 -0
  1703. package/node_modules/lodash-es/_hashGet.js +30 -0
  1704. package/node_modules/lodash-es/_hashHas.js +23 -0
  1705. package/node_modules/lodash-es/_hashSet.js +23 -0
  1706. package/node_modules/lodash-es/_initCloneArray.js +26 -0
  1707. package/node_modules/lodash-es/_initCloneByTag.js +77 -0
  1708. package/node_modules/lodash-es/_initCloneObject.js +18 -0
  1709. package/node_modules/lodash-es/_insertWrapDetails.js +23 -0
  1710. package/node_modules/lodash-es/_isFlattenable.js +20 -0
  1711. package/node_modules/lodash-es/_isIndex.js +25 -0
  1712. package/node_modules/lodash-es/_isIterateeCall.js +30 -0
  1713. package/node_modules/lodash-es/_isKey.js +29 -0
  1714. package/node_modules/lodash-es/_isKeyable.js +15 -0
  1715. package/node_modules/lodash-es/_isLaziable.js +28 -0
  1716. package/node_modules/lodash-es/_isMaskable.js +14 -0
  1717. package/node_modules/lodash-es/_isMasked.js +20 -0
  1718. package/node_modules/lodash-es/_isPrototype.js +18 -0
  1719. package/node_modules/lodash-es/_isStrictComparable.js +15 -0
  1720. package/node_modules/lodash-es/_iteratorToArray.js +18 -0
  1721. package/node_modules/lodash-es/_lazyClone.js +23 -0
  1722. package/node_modules/lodash-es/_lazyReverse.js +23 -0
  1723. package/node_modules/lodash-es/_lazyValue.js +69 -0
  1724. package/node_modules/lodash-es/_listCacheClear.js +13 -0
  1725. package/node_modules/lodash-es/_listCacheDelete.js +35 -0
  1726. package/node_modules/lodash-es/_listCacheGet.js +19 -0
  1727. package/node_modules/lodash-es/_listCacheHas.js +16 -0
  1728. package/node_modules/lodash-es/_listCacheSet.js +26 -0
  1729. package/node_modules/lodash-es/_mapCacheClear.js +21 -0
  1730. package/node_modules/lodash-es/_mapCacheDelete.js +18 -0
  1731. package/node_modules/lodash-es/_mapCacheGet.js +16 -0
  1732. package/node_modules/lodash-es/_mapCacheHas.js +16 -0
  1733. package/node_modules/lodash-es/_mapCacheSet.js +22 -0
  1734. package/node_modules/lodash-es/_mapToArray.js +18 -0
  1735. package/node_modules/lodash-es/_matchesStrictComparable.js +20 -0
  1736. package/node_modules/lodash-es/_memoizeCapped.js +26 -0
  1737. package/node_modules/lodash-es/_mergeData.js +90 -0
  1738. package/node_modules/lodash-es/_metaMap.js +6 -0
  1739. package/node_modules/lodash-es/_nativeCreate.js +6 -0
  1740. package/node_modules/lodash-es/_nativeKeys.js +6 -0
  1741. package/node_modules/lodash-es/_nativeKeysIn.js +20 -0
  1742. package/node_modules/lodash-es/_nodeUtil.js +30 -0
  1743. package/node_modules/lodash-es/_objectToString.js +22 -0
  1744. package/node_modules/lodash-es/_overArg.js +15 -0
  1745. package/node_modules/lodash-es/_overRest.js +36 -0
  1746. package/node_modules/lodash-es/_parent.js +16 -0
  1747. package/node_modules/lodash-es/_reEscape.js +4 -0
  1748. package/node_modules/lodash-es/_reEvaluate.js +4 -0
  1749. package/node_modules/lodash-es/_reInterpolate.js +4 -0
  1750. package/node_modules/lodash-es/_realNames.js +4 -0
  1751. package/node_modules/lodash-es/_reorder.js +29 -0
  1752. package/node_modules/lodash-es/_replaceHolders.js +29 -0
  1753. package/node_modules/lodash-es/_root.js +9 -0
  1754. package/node_modules/lodash-es/_safeGet.js +21 -0
  1755. package/node_modules/lodash-es/_setCacheAdd.js +19 -0
  1756. package/node_modules/lodash-es/_setCacheHas.js +14 -0
  1757. package/node_modules/lodash-es/_setData.js +20 -0
  1758. package/node_modules/lodash-es/_setToArray.js +18 -0
  1759. package/node_modules/lodash-es/_setToPairs.js +18 -0
  1760. package/node_modules/lodash-es/_setToString.js +14 -0
  1761. package/node_modules/lodash-es/_setWrapToString.js +21 -0
  1762. package/node_modules/lodash-es/_shortOut.js +37 -0
  1763. package/node_modules/lodash-es/_shuffleSelf.js +28 -0
  1764. package/node_modules/lodash-es/_stackClear.js +15 -0
  1765. package/node_modules/lodash-es/_stackDelete.js +18 -0
  1766. package/node_modules/lodash-es/_stackGet.js +14 -0
  1767. package/node_modules/lodash-es/_stackHas.js +14 -0
  1768. package/node_modules/lodash-es/_stackSet.js +34 -0
  1769. package/node_modules/lodash-es/_strictIndexOf.js +23 -0
  1770. package/node_modules/lodash-es/_strictLastIndexOf.js +21 -0
  1771. package/node_modules/lodash-es/_stringSize.js +18 -0
  1772. package/node_modules/lodash-es/_stringToArray.js +18 -0
  1773. package/node_modules/lodash-es/_stringToPath.js +27 -0
  1774. package/node_modules/lodash-es/_toKey.js +21 -0
  1775. package/node_modules/lodash-es/_toSource.js +26 -0
  1776. package/node_modules/lodash-es/_trimmedEndIndex.js +19 -0
  1777. package/node_modules/lodash-es/_unescapeHtmlChar.js +21 -0
  1778. package/node_modules/lodash-es/_unicodeSize.js +44 -0
  1779. package/node_modules/lodash-es/_unicodeToArray.js +40 -0
  1780. package/node_modules/lodash-es/_unicodeWords.js +69 -0
  1781. package/node_modules/lodash-es/_updateWrapDetails.js +46 -0
  1782. package/node_modules/lodash-es/_wrapperClone.js +23 -0
  1783. package/node_modules/lodash-es/add.js +22 -0
  1784. package/node_modules/lodash-es/after.js +42 -0
  1785. package/node_modules/lodash-es/array.default.js +81 -0
  1786. package/node_modules/lodash-es/array.js +66 -0
  1787. package/node_modules/lodash-es/ary.js +29 -0
  1788. package/node_modules/lodash-es/assign.js +58 -0
  1789. package/node_modules/lodash-es/assignIn.js +40 -0
  1790. package/node_modules/lodash-es/assignInWith.js +38 -0
  1791. package/node_modules/lodash-es/assignWith.js +37 -0
  1792. package/node_modules/lodash-es/at.js +23 -0
  1793. package/node_modules/lodash-es/attempt.js +35 -0
  1794. package/node_modules/lodash-es/before.js +40 -0
  1795. package/node_modules/lodash-es/bind.js +57 -0
  1796. package/node_modules/lodash-es/bindAll.js +41 -0
  1797. package/node_modules/lodash-es/bindKey.js +68 -0
  1798. package/node_modules/lodash-es/camelCase.js +29 -0
  1799. package/node_modules/lodash-es/capitalize.js +23 -0
  1800. package/node_modules/lodash-es/castArray.js +44 -0
  1801. package/node_modules/lodash-es/ceil.js +26 -0
  1802. package/node_modules/lodash-es/chain.js +38 -0
  1803. package/node_modules/lodash-es/chunk.js +50 -0
  1804. package/node_modules/lodash-es/clamp.js +39 -0
  1805. package/node_modules/lodash-es/clone.js +36 -0
  1806. package/node_modules/lodash-es/cloneDeep.js +29 -0
  1807. package/node_modules/lodash-es/cloneDeepWith.js +40 -0
  1808. package/node_modules/lodash-es/cloneWith.js +42 -0
  1809. package/node_modules/lodash-es/collection.default.js +37 -0
  1810. package/node_modules/lodash-es/collection.js +29 -0
  1811. package/node_modules/lodash-es/commit.js +33 -0
  1812. package/node_modules/lodash-es/compact.js +31 -0
  1813. package/node_modules/lodash-es/concat.js +43 -0
  1814. package/node_modules/lodash-es/cond.js +60 -0
  1815. package/node_modules/lodash-es/conforms.js +35 -0
  1816. package/node_modules/lodash-es/conformsTo.js +32 -0
  1817. package/node_modules/lodash-es/constant.js +26 -0
  1818. package/node_modules/lodash-es/countBy.js +40 -0
  1819. package/node_modules/lodash-es/create.js +43 -0
  1820. package/node_modules/lodash-es/curry.js +57 -0
  1821. package/node_modules/lodash-es/curryRight.js +54 -0
  1822. package/node_modules/lodash-es/date.default.js +5 -0
  1823. package/node_modules/lodash-es/date.js +2 -0
  1824. package/node_modules/lodash-es/debounce.js +191 -0
  1825. package/node_modules/lodash-es/deburr.js +45 -0
  1826. package/node_modules/lodash-es/defaultTo.js +25 -0
  1827. package/node_modules/lodash-es/defaults.js +64 -0
  1828. package/node_modules/lodash-es/defaultsDeep.js +30 -0
  1829. package/node_modules/lodash-es/defer.js +26 -0
  1830. package/node_modules/lodash-es/delay.js +28 -0
  1831. package/node_modules/lodash-es/difference.js +33 -0
  1832. package/node_modules/lodash-es/differenceBy.js +44 -0
  1833. package/node_modules/lodash-es/differenceWith.js +40 -0
  1834. package/node_modules/lodash-es/divide.js +22 -0
  1835. package/node_modules/lodash-es/drop.js +38 -0
  1836. package/node_modules/lodash-es/dropRight.js +39 -0
  1837. package/node_modules/lodash-es/dropRightWhile.js +45 -0
  1838. package/node_modules/lodash-es/dropWhile.js +45 -0
  1839. package/node_modules/lodash-es/each.js +1 -0
  1840. package/node_modules/lodash-es/eachRight.js +1 -0
  1841. package/node_modules/lodash-es/endsWith.js +43 -0
  1842. package/node_modules/lodash-es/entries.js +1 -0
  1843. package/node_modules/lodash-es/entriesIn.js +1 -0
  1844. package/node_modules/lodash-es/eq.js +37 -0
  1845. package/node_modules/lodash-es/escape.js +43 -0
  1846. package/node_modules/lodash-es/escapeRegExp.js +32 -0
  1847. package/node_modules/lodash-es/every.js +56 -0
  1848. package/node_modules/lodash-es/extend.js +1 -0
  1849. package/node_modules/lodash-es/extendWith.js +1 -0
  1850. package/node_modules/lodash-es/fill.js +45 -0
  1851. package/node_modules/lodash-es/filter.js +52 -0
  1852. package/node_modules/lodash-es/find.js +42 -0
  1853. package/node_modules/lodash-es/findIndex.js +55 -0
  1854. package/node_modules/lodash-es/findKey.js +44 -0
  1855. package/node_modules/lodash-es/findLast.js +25 -0
  1856. package/node_modules/lodash-es/findLastIndex.js +59 -0
  1857. package/node_modules/lodash-es/findLastKey.js +44 -0
  1858. package/node_modules/lodash-es/first.js +1 -0
  1859. package/node_modules/lodash-es/flake.lock +40 -0
  1860. package/node_modules/lodash-es/flake.nix +20 -0
  1861. package/node_modules/lodash-es/flatMap.js +29 -0
  1862. package/node_modules/lodash-es/flatMapDeep.js +31 -0
  1863. package/node_modules/lodash-es/flatMapDepth.js +31 -0
  1864. package/node_modules/lodash-es/flatten.js +22 -0
  1865. package/node_modules/lodash-es/flattenDeep.js +25 -0
  1866. package/node_modules/lodash-es/flattenDepth.js +33 -0
  1867. package/node_modules/lodash-es/flip.js +28 -0
  1868. package/node_modules/lodash-es/floor.js +26 -0
  1869. package/node_modules/lodash-es/flow.js +27 -0
  1870. package/node_modules/lodash-es/flowRight.js +26 -0
  1871. package/node_modules/lodash-es/forEach.js +41 -0
  1872. package/node_modules/lodash-es/forEachRight.js +31 -0
  1873. package/node_modules/lodash-es/forIn.js +39 -0
  1874. package/node_modules/lodash-es/forInRight.js +37 -0
  1875. package/node_modules/lodash-es/forOwn.js +36 -0
  1876. package/node_modules/lodash-es/forOwnRight.js +34 -0
  1877. package/node_modules/lodash-es/fromPairs.js +28 -0
  1878. package/node_modules/lodash-es/function.default.js +31 -0
  1879. package/node_modules/lodash-es/function.js +24 -0
  1880. package/node_modules/lodash-es/functions.js +31 -0
  1881. package/node_modules/lodash-es/functionsIn.js +31 -0
  1882. package/node_modules/lodash-es/get.js +33 -0
  1883. package/node_modules/lodash-es/groupBy.js +41 -0
  1884. package/node_modules/lodash-es/gt.js +29 -0
  1885. package/node_modules/lodash-es/gte.js +30 -0
  1886. package/node_modules/lodash-es/has.js +35 -0
  1887. package/node_modules/lodash-es/hasIn.js +34 -0
  1888. package/node_modules/lodash-es/head.js +23 -0
  1889. package/node_modules/lodash-es/identity.js +21 -0
  1890. package/node_modules/lodash-es/inRange.js +55 -0
  1891. package/node_modules/lodash-es/includes.js +53 -0
  1892. package/node_modules/lodash-es/indexOf.js +42 -0
  1893. package/node_modules/lodash-es/initial.js +22 -0
  1894. package/node_modules/lodash-es/intersection.js +30 -0
  1895. package/node_modules/lodash-es/intersectionBy.js +45 -0
  1896. package/node_modules/lodash-es/intersectionWith.js +41 -0
  1897. package/node_modules/lodash-es/invert.js +42 -0
  1898. package/node_modules/lodash-es/invertBy.js +56 -0
  1899. package/node_modules/lodash-es/invoke.js +24 -0
  1900. package/node_modules/lodash-es/invokeMap.js +41 -0
  1901. package/node_modules/lodash-es/isArguments.js +36 -0
  1902. package/node_modules/lodash-es/isArray.js +26 -0
  1903. package/node_modules/lodash-es/isArrayBuffer.js +27 -0
  1904. package/node_modules/lodash-es/isArrayLike.js +33 -0
  1905. package/node_modules/lodash-es/isArrayLikeObject.js +33 -0
  1906. package/node_modules/lodash-es/isBoolean.js +29 -0
  1907. package/node_modules/lodash-es/isBuffer.js +38 -0
  1908. package/node_modules/lodash-es/isDate.js +27 -0
  1909. package/node_modules/lodash-es/isElement.js +25 -0
  1910. package/node_modules/lodash-es/isEmpty.js +77 -0
  1911. package/node_modules/lodash-es/isEqual.js +35 -0
  1912. package/node_modules/lodash-es/isEqualWith.js +41 -0
  1913. package/node_modules/lodash-es/isError.js +36 -0
  1914. package/node_modules/lodash-es/isFinite.js +36 -0
  1915. package/node_modules/lodash-es/isFunction.js +37 -0
  1916. package/node_modules/lodash-es/isInteger.js +33 -0
  1917. package/node_modules/lodash-es/isLength.js +35 -0
  1918. package/node_modules/lodash-es/isMap.js +27 -0
  1919. package/node_modules/lodash-es/isMatch.js +36 -0
  1920. package/node_modules/lodash-es/isMatchWith.js +41 -0
  1921. package/node_modules/lodash-es/isNaN.js +38 -0
  1922. package/node_modules/lodash-es/isNative.js +40 -0
  1923. package/node_modules/lodash-es/isNil.js +25 -0
  1924. package/node_modules/lodash-es/isNull.js +22 -0
  1925. package/node_modules/lodash-es/isNumber.js +38 -0
  1926. package/node_modules/lodash-es/isObject.js +31 -0
  1927. package/node_modules/lodash-es/isObjectLike.js +29 -0
  1928. package/node_modules/lodash-es/isPlainObject.js +62 -0
  1929. package/node_modules/lodash-es/isRegExp.js +27 -0
  1930. package/node_modules/lodash-es/isSafeInteger.js +37 -0
  1931. package/node_modules/lodash-es/isSet.js +27 -0
  1932. package/node_modules/lodash-es/isString.js +30 -0
  1933. package/node_modules/lodash-es/isSymbol.js +29 -0
  1934. package/node_modules/lodash-es/isTypedArray.js +27 -0
  1935. package/node_modules/lodash-es/isUndefined.js +22 -0
  1936. package/node_modules/lodash-es/isWeakMap.js +28 -0
  1937. package/node_modules/lodash-es/isWeakSet.js +28 -0
  1938. package/node_modules/lodash-es/iteratee.js +53 -0
  1939. package/node_modules/lodash-es/join.js +26 -0
  1940. package/node_modules/lodash-es/kebabCase.js +28 -0
  1941. package/node_modules/lodash-es/keyBy.js +36 -0
  1942. package/node_modules/lodash-es/keys.js +37 -0
  1943. package/node_modules/lodash-es/keysIn.js +32 -0
  1944. package/node_modules/lodash-es/lang.default.js +71 -0
  1945. package/node_modules/lodash-es/lang.js +57 -0
  1946. package/node_modules/lodash-es/last.js +20 -0
  1947. package/node_modules/lodash-es/lastIndexOf.js +46 -0
  1948. package/node_modules/lodash-es/lodash.default.js +643 -0
  1949. package/node_modules/lodash-es/lodash.js +331 -0
  1950. package/node_modules/lodash-es/lowerCase.js +27 -0
  1951. package/node_modules/lodash-es/lowerFirst.js +22 -0
  1952. package/node_modules/lodash-es/lt.js +29 -0
  1953. package/node_modules/lodash-es/lte.js +30 -0
  1954. package/node_modules/lodash-es/map.js +53 -0
  1955. package/node_modules/lodash-es/mapKeys.js +36 -0
  1956. package/node_modules/lodash-es/mapValues.js +43 -0
  1957. package/node_modules/lodash-es/matches.js +46 -0
  1958. package/node_modules/lodash-es/matchesProperty.js +44 -0
  1959. package/node_modules/lodash-es/math.default.js +21 -0
  1960. package/node_modules/lodash-es/math.js +16 -0
  1961. package/node_modules/lodash-es/max.js +29 -0
  1962. package/node_modules/lodash-es/maxBy.js +34 -0
  1963. package/node_modules/lodash-es/mean.js +22 -0
  1964. package/node_modules/lodash-es/meanBy.js +31 -0
  1965. package/node_modules/lodash-es/memoize.js +73 -0
  1966. package/node_modules/lodash-es/merge.js +39 -0
  1967. package/node_modules/lodash-es/mergeWith.js +39 -0
  1968. package/node_modules/lodash-es/method.js +34 -0
  1969. package/node_modules/lodash-es/methodOf.js +33 -0
  1970. package/node_modules/lodash-es/min.js +29 -0
  1971. package/node_modules/lodash-es/minBy.js +34 -0
  1972. package/node_modules/lodash-es/mixin.js +74 -0
  1973. package/node_modules/lodash-es/multiply.js +22 -0
  1974. package/node_modules/lodash-es/negate.js +40 -0
  1975. package/node_modules/lodash-es/next.js +35 -0
  1976. package/node_modules/lodash-es/noop.js +17 -0
  1977. package/node_modules/lodash-es/now.js +23 -0
  1978. package/node_modules/lodash-es/nth.js +29 -0
  1979. package/node_modules/lodash-es/nthArg.js +32 -0
  1980. package/node_modules/lodash-es/number.default.js +7 -0
  1981. package/node_modules/lodash-es/number.js +4 -0
  1982. package/node_modules/lodash-es/object.default.js +60 -0
  1983. package/node_modules/lodash-es/object.js +48 -0
  1984. package/node_modules/lodash-es/omit.js +57 -0
  1985. package/node_modules/lodash-es/omitBy.js +29 -0
  1986. package/node_modules/lodash-es/once.js +25 -0
  1987. package/node_modules/lodash-es/orderBy.js +47 -0
  1988. package/node_modules/lodash-es/over.js +24 -0
  1989. package/node_modules/lodash-es/overArgs.js +61 -0
  1990. package/node_modules/lodash-es/overEvery.js +34 -0
  1991. package/node_modules/lodash-es/overSome.js +37 -0
  1992. package/node_modules/lodash-es/package.json +21 -0
  1993. package/node_modules/lodash-es/pad.js +49 -0
  1994. package/node_modules/lodash-es/padEnd.js +39 -0
  1995. package/node_modules/lodash-es/padStart.js +39 -0
  1996. package/node_modules/lodash-es/parseInt.js +43 -0
  1997. package/node_modules/lodash-es/partial.js +50 -0
  1998. package/node_modules/lodash-es/partialRight.js +49 -0
  1999. package/node_modules/lodash-es/partition.js +43 -0
  2000. package/node_modules/lodash-es/pick.js +25 -0
  2001. package/node_modules/lodash-es/pickBy.js +37 -0
  2002. package/node_modules/lodash-es/plant.js +48 -0
  2003. package/node_modules/lodash-es/property.js +32 -0
  2004. package/node_modules/lodash-es/propertyOf.js +30 -0
  2005. package/node_modules/lodash-es/pull.js +29 -0
  2006. package/node_modules/lodash-es/pullAll.js +29 -0
  2007. package/node_modules/lodash-es/pullAllBy.js +33 -0
  2008. package/node_modules/lodash-es/pullAllWith.js +32 -0
  2009. package/node_modules/lodash-es/pullAt.js +43 -0
  2010. package/node_modules/lodash-es/random.js +82 -0
  2011. package/node_modules/lodash-es/range.js +46 -0
  2012. package/node_modules/lodash-es/rangeRight.js +41 -0
  2013. package/node_modules/lodash-es/rearg.js +33 -0
  2014. package/node_modules/lodash-es/reduce.js +51 -0
  2015. package/node_modules/lodash-es/reduceRight.js +36 -0
  2016. package/node_modules/lodash-es/reject.js +46 -0
  2017. package/node_modules/lodash-es/release.md +48 -0
  2018. package/node_modules/lodash-es/remove.js +53 -0
  2019. package/node_modules/lodash-es/repeat.js +37 -0
  2020. package/node_modules/lodash-es/replace.js +29 -0
  2021. package/node_modules/lodash-es/rest.js +40 -0
  2022. package/node_modules/lodash-es/result.js +56 -0
  2023. package/node_modules/lodash-es/reverse.js +34 -0
  2024. package/node_modules/lodash-es/round.js +26 -0
  2025. package/node_modules/lodash-es/sample.js +24 -0
  2026. package/node_modules/lodash-es/sampleSize.js +37 -0
  2027. package/node_modules/lodash-es/seq.default.js +20 -0
  2028. package/node_modules/lodash-es/seq.js +15 -0
  2029. package/node_modules/lodash-es/set.js +35 -0
  2030. package/node_modules/lodash-es/setWith.js +32 -0
  2031. package/node_modules/lodash-es/shuffle.js +25 -0
  2032. package/node_modules/lodash-es/size.js +46 -0
  2033. package/node_modules/lodash-es/slice.js +37 -0
  2034. package/node_modules/lodash-es/snakeCase.js +28 -0
  2035. package/node_modules/lodash-es/some.js +51 -0
  2036. package/node_modules/lodash-es/sortBy.js +48 -0
  2037. package/node_modules/lodash-es/sortedIndex.js +24 -0
  2038. package/node_modules/lodash-es/sortedIndexBy.js +33 -0
  2039. package/node_modules/lodash-es/sortedIndexOf.js +31 -0
  2040. package/node_modules/lodash-es/sortedLastIndex.js +25 -0
  2041. package/node_modules/lodash-es/sortedLastIndexBy.js +33 -0
  2042. package/node_modules/lodash-es/sortedLastIndexOf.js +31 -0
  2043. package/node_modules/lodash-es/sortedUniq.js +24 -0
  2044. package/node_modules/lodash-es/sortedUniqBy.js +26 -0
  2045. package/node_modules/lodash-es/split.js +52 -0
  2046. package/node_modules/lodash-es/spread.js +63 -0
  2047. package/node_modules/lodash-es/startCase.js +29 -0
  2048. package/node_modules/lodash-es/startsWith.js +39 -0
  2049. package/node_modules/lodash-es/string.default.js +41 -0
  2050. package/node_modules/lodash-es/string.js +32 -0
  2051. package/node_modules/lodash-es/stubArray.js +23 -0
  2052. package/node_modules/lodash-es/stubFalse.js +18 -0
  2053. package/node_modules/lodash-es/stubObject.js +23 -0
  2054. package/node_modules/lodash-es/stubString.js +18 -0
  2055. package/node_modules/lodash-es/stubTrue.js +18 -0
  2056. package/node_modules/lodash-es/subtract.js +22 -0
  2057. package/node_modules/lodash-es/sum.js +24 -0
  2058. package/node_modules/lodash-es/sumBy.js +33 -0
  2059. package/node_modules/lodash-es/tail.js +22 -0
  2060. package/node_modules/lodash-es/take.js +37 -0
  2061. package/node_modules/lodash-es/takeRight.js +39 -0
  2062. package/node_modules/lodash-es/takeRightWhile.js +45 -0
  2063. package/node_modules/lodash-es/takeWhile.js +45 -0
  2064. package/node_modules/lodash-es/tap.js +29 -0
  2065. package/node_modules/lodash-es/template.js +272 -0
  2066. package/node_modules/lodash-es/templateSettings.js +67 -0
  2067. package/node_modules/lodash-es/throttle.js +69 -0
  2068. package/node_modules/lodash-es/thru.js +28 -0
  2069. package/node_modules/lodash-es/times.js +51 -0
  2070. package/node_modules/lodash-es/toArray.js +58 -0
  2071. package/node_modules/lodash-es/toFinite.js +42 -0
  2072. package/node_modules/lodash-es/toInteger.js +36 -0
  2073. package/node_modules/lodash-es/toIterator.js +23 -0
  2074. package/node_modules/lodash-es/toJSON.js +1 -0
  2075. package/node_modules/lodash-es/toLength.js +38 -0
  2076. package/node_modules/lodash-es/toLower.js +28 -0
  2077. package/node_modules/lodash-es/toNumber.js +64 -0
  2078. package/node_modules/lodash-es/toPairs.js +30 -0
  2079. package/node_modules/lodash-es/toPairsIn.js +30 -0
  2080. package/node_modules/lodash-es/toPath.js +33 -0
  2081. package/node_modules/lodash-es/toPlainObject.js +32 -0
  2082. package/node_modules/lodash-es/toSafeInteger.js +37 -0
  2083. package/node_modules/lodash-es/toString.js +28 -0
  2084. package/node_modules/lodash-es/toUpper.js +28 -0
  2085. package/node_modules/lodash-es/transform.js +65 -0
  2086. package/node_modules/lodash-es/trim.js +47 -0
  2087. package/node_modules/lodash-es/trimEnd.js +41 -0
  2088. package/node_modules/lodash-es/trimStart.js +43 -0
  2089. package/node_modules/lodash-es/truncate.js +111 -0
  2090. package/node_modules/lodash-es/unary.js +22 -0
  2091. package/node_modules/lodash-es/unescape.js +34 -0
  2092. package/node_modules/lodash-es/union.js +26 -0
  2093. package/node_modules/lodash-es/unionBy.js +39 -0
  2094. package/node_modules/lodash-es/unionWith.js +34 -0
  2095. package/node_modules/lodash-es/uniq.js +25 -0
  2096. package/node_modules/lodash-es/uniqBy.js +31 -0
  2097. package/node_modules/lodash-es/uniqWith.js +28 -0
  2098. package/node_modules/lodash-es/uniqueId.js +28 -0
  2099. package/node_modules/lodash-es/unset.js +34 -0
  2100. package/node_modules/lodash-es/unzip.js +45 -0
  2101. package/node_modules/lodash-es/unzipWith.js +39 -0
  2102. package/node_modules/lodash-es/update.js +35 -0
  2103. package/node_modules/lodash-es/updateWith.js +33 -0
  2104. package/node_modules/lodash-es/upperCase.js +27 -0
  2105. package/node_modules/lodash-es/upperFirst.js +22 -0
  2106. package/node_modules/lodash-es/util.default.js +42 -0
  2107. package/node_modules/lodash-es/util.js +33 -0
  2108. package/node_modules/lodash-es/value.js +1 -0
  2109. package/node_modules/lodash-es/valueOf.js +1 -0
  2110. package/node_modules/lodash-es/values.js +34 -0
  2111. package/node_modules/lodash-es/valuesIn.js +32 -0
  2112. package/node_modules/lodash-es/without.js +31 -0
  2113. package/node_modules/lodash-es/words.js +35 -0
  2114. package/node_modules/lodash-es/wrap.js +30 -0
  2115. package/node_modules/lodash-es/wrapperAt.js +48 -0
  2116. package/node_modules/lodash-es/wrapperChain.js +34 -0
  2117. package/node_modules/lodash-es/wrapperLodash.js +147 -0
  2118. package/node_modules/lodash-es/wrapperReverse.js +44 -0
  2119. package/node_modules/lodash-es/wrapperValue.js +21 -0
  2120. package/node_modules/lodash-es/xor.js +28 -0
  2121. package/node_modules/lodash-es/xorBy.js +39 -0
  2122. package/node_modules/lodash-es/xorWith.js +34 -0
  2123. package/node_modules/lodash-es/zip.js +22 -0
  2124. package/node_modules/lodash-es/zipObject.js +24 -0
  2125. package/node_modules/lodash-es/zipObjectDeep.js +23 -0
  2126. package/node_modules/lodash-es/zipWith.js +32 -0
  2127. package/node_modules/react-fast-compare/LICENSE +22 -0
  2128. package/node_modules/react-fast-compare/README.md +141 -0
  2129. package/node_modules/react-fast-compare/index.d.ts +4 -0
  2130. package/node_modules/react-fast-compare/index.js +94 -0
  2131. package/node_modules/react-fast-compare/package.json +80 -0
  2132. package/node_modules/react-is/LICENSE +21 -0
  2133. package/node_modules/react-is/README.md +104 -0
  2134. package/node_modules/react-is/build-info.json +8 -0
  2135. package/node_modules/react-is/cjs/react-is.development.js +181 -0
  2136. package/node_modules/react-is/cjs/react-is.production.min.js +15 -0
  2137. package/node_modules/react-is/index.js +7 -0
  2138. package/node_modules/react-is/package.json +27 -0
  2139. package/node_modules/react-is/umd/react-is.development.js +181 -0
  2140. package/node_modules/react-is/umd/react-is.production.min.js +13 -0
  2141. package/node_modules/react-json-editor-ajrm/CHANGELOG.md +122 -0
  2142. package/node_modules/react-json-editor-ajrm/LICENSE.md +9 -0
  2143. package/node_modules/react-json-editor-ajrm/README.md +223 -0
  2144. package/node_modules/react-json-editor-ajrm/err.js +109 -0
  2145. package/node_modules/react-json-editor-ajrm/es/err.js +68 -0
  2146. package/node_modules/react-json-editor-ajrm/es/index.js +2097 -0
  2147. package/node_modules/react-json-editor-ajrm/es/locale/de.js +87 -0
  2148. package/node_modules/react-json-editor-ajrm/es/locale/en.js +114 -0
  2149. package/node_modules/react-json-editor-ajrm/es/locale/es.js +86 -0
  2150. package/node_modules/react-json-editor-ajrm/es/locale/fr.js +87 -0
  2151. package/node_modules/react-json-editor-ajrm/es/locale/hin.js +114 -0
  2152. package/node_modules/react-json-editor-ajrm/es/locale/id.js +114 -0
  2153. package/node_modules/react-json-editor-ajrm/es/locale/index.js +7 -0
  2154. package/node_modules/react-json-editor-ajrm/es/locale/jpn.js +114 -0
  2155. package/node_modules/react-json-editor-ajrm/es/locale/pt.js +86 -0
  2156. package/node_modules/react-json-editor-ajrm/es/locale/ru.js +114 -0
  2157. package/node_modules/react-json-editor-ajrm/es/locale/ta.js +114 -0
  2158. package/node_modules/react-json-editor-ajrm/es/locale/zh-cn.js +114 -0
  2159. package/node_modules/react-json-editor-ajrm/es/mitsuketa/index.js +1104 -0
  2160. package/node_modules/react-json-editor-ajrm/es/themes.js +27 -0
  2161. package/node_modules/react-json-editor-ajrm/index.js +2199 -0
  2162. package/node_modules/react-json-editor-ajrm/locale/de.js +94 -0
  2163. package/node_modules/react-json-editor-ajrm/locale/en.js +121 -0
  2164. package/node_modules/react-json-editor-ajrm/locale/es.js +93 -0
  2165. package/node_modules/react-json-editor-ajrm/locale/fr.js +94 -0
  2166. package/node_modules/react-json-editor-ajrm/locale/hin.js +121 -0
  2167. package/node_modules/react-json-editor-ajrm/locale/id.js +121 -0
  2168. package/node_modules/react-json-editor-ajrm/locale/index.js +20 -0
  2169. package/node_modules/react-json-editor-ajrm/locale/jpn.js +121 -0
  2170. package/node_modules/react-json-editor-ajrm/locale/pt.js +93 -0
  2171. package/node_modules/react-json-editor-ajrm/locale/ru.js +121 -0
  2172. package/node_modules/react-json-editor-ajrm/locale/ta.js +121 -0
  2173. package/node_modules/react-json-editor-ajrm/locale/zh-cn.js +121 -0
  2174. package/node_modules/react-json-editor-ajrm/mitsuketa/index.js +1189 -0
  2175. package/node_modules/react-json-editor-ajrm/package.json +66 -0
  2176. package/node_modules/react-json-editor-ajrm/themes.js +34 -0
  2177. package/node_modules/tiny-warning/LICENSE +21 -0
  2178. package/node_modules/tiny-warning/README.md +68 -0
  2179. package/node_modules/tiny-warning/dist/tiny-warning.cjs.js +22 -0
  2180. package/node_modules/tiny-warning/dist/tiny-warning.cjs.js.flow +3 -0
  2181. package/node_modules/tiny-warning/dist/tiny-warning.esm.js +20 -0
  2182. package/node_modules/tiny-warning/dist/tiny-warning.js +27 -0
  2183. package/node_modules/tiny-warning/dist/tiny-warning.min.js +1 -0
  2184. package/node_modules/tiny-warning/package.json +53 -0
  2185. package/node_modules/tiny-warning/src/index.d.ts +1 -0
  2186. package/node_modules/tiny-warning/src/index.js +30 -0
  2187. package/node_modules/tslib/CopyrightNotice.txt +15 -0
  2188. package/node_modules/tslib/LICENSE.txt +12 -0
  2189. package/node_modules/tslib/README.md +164 -0
  2190. package/node_modules/tslib/SECURITY.md +41 -0
  2191. package/node_modules/tslib/modules/index.d.ts +37 -0
  2192. package/node_modules/tslib/modules/index.js +68 -0
  2193. package/node_modules/tslib/modules/package.json +3 -0
  2194. package/node_modules/tslib/package.json +47 -0
  2195. package/node_modules/tslib/tslib.d.ts +453 -0
  2196. package/node_modules/tslib/tslib.es6.html +1 -0
  2197. package/node_modules/tslib/tslib.es6.js +379 -0
  2198. package/node_modules/tslib/tslib.es6.mjs +378 -0
  2199. package/node_modules/tslib/tslib.html +1 -0
  2200. package/node_modules/tslib/tslib.js +429 -0
  2201. package/node_modules/typescript/LICENSE.txt +55 -0
  2202. package/node_modules/typescript/README.md +50 -0
  2203. package/node_modules/typescript/SECURITY.md +41 -0
  2204. package/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
  2205. package/node_modules/typescript/bin/tsc +2 -0
  2206. package/node_modules/typescript/bin/tsserver +2 -0
  2207. package/node_modules/typescript/lib/cancellationToken.js +90 -0
  2208. package/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2087 -0
  2209. package/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2087 -0
  2210. package/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2087 -0
  2211. package/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2087 -0
  2212. package/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2087 -0
  2213. package/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2087 -0
  2214. package/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2087 -0
  2215. package/node_modules/typescript/lib/lib.d.ts +22 -0
  2216. package/node_modules/typescript/lib/lib.decorators.d.ts +386 -0
  2217. package/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
  2218. package/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +41 -0
  2219. package/node_modules/typescript/lib/lib.dom.d.ts +28087 -0
  2220. package/node_modules/typescript/lib/lib.dom.iterable.d.ts +491 -0
  2221. package/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
  2222. package/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
  2223. package/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
  2224. package/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
  2225. package/node_modules/typescript/lib/lib.es2015.iterable.d.ts +527 -0
  2226. package/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
  2227. package/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
  2228. package/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
  2229. package/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
  2230. package/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
  2231. package/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
  2232. package/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
  2233. package/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
  2234. package/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
  2235. package/node_modules/typescript/lib/lib.es2017.d.ts +25 -0
  2236. package/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
  2237. package/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
  2238. package/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
  2239. package/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
  2240. package/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
  2241. package/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
  2242. package/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
  2243. package/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
  2244. package/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +53 -0
  2245. package/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
  2246. package/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
  2247. package/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
  2248. package/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
  2249. package/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
  2250. package/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
  2251. package/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
  2252. package/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
  2253. package/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
  2254. package/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
  2255. package/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
  2256. package/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
  2257. package/node_modules/typescript/lib/lib.es2020.bigint.d.ts +727 -0
  2258. package/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
  2259. package/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
  2260. package/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
  2261. package/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
  2262. package/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
  2263. package/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
  2264. package/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +97 -0
  2265. package/node_modules/typescript/lib/lib.es2020.string.d.ts +42 -0
  2266. package/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +41 -0
  2267. package/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
  2268. package/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
  2269. package/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
  2270. package/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
  2271. package/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
  2272. package/node_modules/typescript/lib/lib.es2021.weakref.d.ts +76 -0
  2273. package/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
  2274. package/node_modules/typescript/lib/lib.es2022.d.ts +26 -0
  2275. package/node_modules/typescript/lib/lib.es2022.error.d.ts +73 -0
  2276. package/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
  2277. package/node_modules/typescript/lib/lib.es2022.intl.d.ts +121 -0
  2278. package/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
  2279. package/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
  2280. package/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts +39 -0
  2281. package/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
  2282. package/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
  2283. package/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
  2284. package/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
  2285. package/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
  2286. package/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
  2287. package/node_modules/typescript/lib/lib.es5.d.ts +4585 -0
  2288. package/node_modules/typescript/lib/lib.es6.d.ts +23 -0
  2289. package/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
  2290. package/node_modules/typescript/lib/lib.esnext.collection.d.ts +106 -0
  2291. package/node_modules/typescript/lib/lib.esnext.d.ts +29 -0
  2292. package/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
  2293. package/node_modules/typescript/lib/lib.esnext.disposable.d.ts +193 -0
  2294. package/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
  2295. package/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
  2296. package/node_modules/typescript/lib/lib.esnext.iterator.d.ts +148 -0
  2297. package/node_modules/typescript/lib/lib.esnext.object.d.ts +29 -0
  2298. package/node_modules/typescript/lib/lib.esnext.promise.d.ts +35 -0
  2299. package/node_modules/typescript/lib/lib.esnext.regexp.d.ts +25 -0
  2300. package/node_modules/typescript/lib/lib.esnext.string.d.ts +29 -0
  2301. package/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
  2302. package/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +41 -0
  2303. package/node_modules/typescript/lib/lib.webworker.d.ts +9410 -0
  2304. package/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
  2305. package/node_modules/typescript/lib/lib.webworker.iterable.d.ts +288 -0
  2306. package/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2087 -0
  2307. package/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2087 -0
  2308. package/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2087 -0
  2309. package/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2087 -0
  2310. package/node_modules/typescript/lib/tsc.js +130771 -0
  2311. package/node_modules/typescript/lib/tsserver.js +623 -0
  2312. package/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
  2313. package/node_modules/typescript/lib/tsserverlibrary.js +21 -0
  2314. package/node_modules/typescript/lib/typesMap.json +497 -0
  2315. package/node_modules/typescript/lib/typescript.d.ts +11328 -0
  2316. package/node_modules/typescript/lib/typescript.js +196073 -0
  2317. package/node_modules/typescript/lib/typingsInstaller.js +236 -0
  2318. package/node_modules/typescript/lib/watchGuard.js +53 -0
  2319. package/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2087 -0
  2320. package/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2087 -0
  2321. package/node_modules/typescript/package.json +121 -0
  2322. package/package.json +4 -1
  2323. package/.idea/.name +0 -1
  2324. package/.idea/misc.xml +0 -6
  2325. package/.idea/modules.xml +0 -8
  2326. package/.idea/vcs.xml +0 -6
  2327. package/bsr-uikit-relaunch.iml +0 -9
  2328. package/dist/styles/_colors.scss +0 -165
  2329. package/dist/styles/bootstrap-customized.scss +0 -815
  2330. package/dist/styles/fonts/hbs-fonts/hbs-fonts.css +0 -67
  2331. package/dist/styles/fonts/hbs-fonts/simple-bold/SimpleHBSTT-Bold.eot +0 -0
  2332. package/dist/styles/fonts/hbs-fonts/simple-bold/SimpleHBSTT-Bold.svg +0 -264
  2333. package/dist/styles/fonts/hbs-fonts/simple-bold/SimpleHBSTT-Bold.ttf +0 -0
  2334. package/dist/styles/fonts/hbs-fonts/simple-bold/SimpleHBSTT-Bold.woff +0 -0
  2335. package/dist/styles/fonts/hbs-fonts/univers/1449347/1f2c3faa-231e-4e71-aba4-b1adb03e0322.svg +0 -4846
  2336. package/dist/styles/fonts/hbs-fonts/univers/1449347/51a2e8ba-97c4-47a9-af92-e8b379eeddbd.eot +0 -0
  2337. package/dist/styles/fonts/hbs-fonts/univers/1449347/77019bfb-2faa-487f-97aa-b498678dc990.ttf +0 -0
  2338. package/dist/styles/fonts/hbs-fonts/univers/1449347/89420d17-2c68-4bb3-b4d4-373b0d0f016b.woff2 +0 -0
  2339. package/dist/styles/fonts/hbs-fonts/univers/1449347/e79b121c-bda4-4092-a565-1c29b272ef18.woff +0 -0
  2340. package/dist/styles/fonts/hbs-fonts/univers/1449355/6baa7b6e-6971-4b5f-8129-8630113d8cb7.eot +0 -0
  2341. package/dist/styles/fonts/hbs-fonts/univers/1449355/aab88c6b-6b75-42f0-aec5-74a5c4ed199d.woff2 +0 -0
  2342. package/dist/styles/fonts/hbs-fonts/univers/1449355/ac6c8f47-2d16-43de-96c6-4526ab446296.woff +0 -0
  2343. package/dist/styles/fonts/hbs-fonts/univers/1449355/cc2006cf-463d-41db-88b0-24bf58fdf832.ttf +0 -0
  2344. package/dist/styles/fonts/hbs-fonts/univers/1449355/f6946e91-a2c4-4793-bcb2-b617d23b3b80.svg +0 -5216
  2345. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449383/1df6de95-3b72-4134-8e0f-f250931b1cb1.woff +0 -0
  2346. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449383/27bd8c18-1ca0-4a74-a175-108571bab2fc.eot +0 -0
  2347. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449383/5667db2e-a3c3-408f-ad82-3ca721a0e2e7.svg +0 -4807
  2348. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449383/8282dfe6-2f66-4a8e-bc65-669a3066eee8.ttf +0 -0
  2349. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449383/a92a459a-dc32-498f-b2dc-b761713792f4.woff2 +0 -0
  2350. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449391/14cd37b6-7bde-488e-bbba-17c5046ee4c3.svg +0 -4666
  2351. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449391/308dd9a4-aea8-4532-8c6d-a415a35f0015.woff2 +0 -0
  2352. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449391/4414ced7-592d-4fdc-8521-8bf095659b6e.eot +0 -0
  2353. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449391/9e1c34e4-257a-478b-9d35-84e680e8d373.ttf +0 -0
  2354. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449391/9f5abf71-fdd9-408f-b075-7a8a1b7c9a6e.woff +0 -0
  2355. package/dist/styles/module-variables.scss +0 -13
  2356. package/dist/styles/variables.scss +0 -75
@@ -0,0 +1,2005 @@
1
+ import deepmerge from 'deepmerge';
2
+ import isPlainObject from 'lodash-es/isPlainObject';
3
+ import cloneDeep from 'lodash-es/cloneDeep';
4
+ import { createContext, useContext, Children, useRef, useEffect, useState, useCallback, useMemo, useImperativeHandle, createElement, useLayoutEffect, forwardRef, Component } from 'react';
5
+ import isEqual from 'react-fast-compare';
6
+ import invariant from 'tiny-warning';
7
+ import clone from 'lodash-es/clone';
8
+ import toPath from 'lodash-es/toPath';
9
+ import hoistNonReactStatics from 'hoist-non-react-statics';
10
+
11
+ function _extends() {
12
+ _extends = Object.assign || function (target) {
13
+ for (var i = 1; i < arguments.length; i++) {
14
+ var source = arguments[i];
15
+
16
+ for (var key in source) {
17
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
18
+ target[key] = source[key];
19
+ }
20
+ }
21
+ }
22
+
23
+ return target;
24
+ };
25
+
26
+ return _extends.apply(this, arguments);
27
+ }
28
+
29
+ function _inheritsLoose(subClass, superClass) {
30
+ subClass.prototype = Object.create(superClass.prototype);
31
+ subClass.prototype.constructor = subClass;
32
+ subClass.__proto__ = superClass;
33
+ }
34
+
35
+ function _objectWithoutPropertiesLoose(source, excluded) {
36
+ if (source == null) return {};
37
+ var target = {};
38
+ var sourceKeys = Object.keys(source);
39
+ var key, i;
40
+
41
+ for (i = 0; i < sourceKeys.length; i++) {
42
+ key = sourceKeys[i];
43
+ if (excluded.indexOf(key) >= 0) continue;
44
+ target[key] = source[key];
45
+ }
46
+
47
+ return target;
48
+ }
49
+
50
+ function _assertThisInitialized(self) {
51
+ if (self === void 0) {
52
+ throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
53
+ }
54
+
55
+ return self;
56
+ }
57
+
58
+ var FormikContext = /*#__PURE__*/createContext(undefined);
59
+ FormikContext.displayName = 'FormikContext';
60
+ var FormikProvider = FormikContext.Provider;
61
+ var FormikConsumer = FormikContext.Consumer;
62
+ function useFormikContext() {
63
+ var formik = useContext(FormikContext);
64
+ !!!formik ? process.env.NODE_ENV !== "production" ? invariant(false, "Formik context is undefined, please verify you are calling useFormikContext() as child of a <Formik> component.") : invariant(false) : void 0;
65
+ return formik;
66
+ }
67
+
68
+ /** @private is the value an empty array? */
69
+
70
+ var isEmptyArray = function isEmptyArray(value) {
71
+ return Array.isArray(value) && value.length === 0;
72
+ };
73
+ /** @private is the given object a Function? */
74
+
75
+ var isFunction = function isFunction(obj) {
76
+ return typeof obj === 'function';
77
+ };
78
+ /** @private is the given object an Object? */
79
+
80
+ var isObject = function isObject(obj) {
81
+ return obj !== null && typeof obj === 'object';
82
+ };
83
+ /** @private is the given object an integer? */
84
+
85
+ var isInteger = function isInteger(obj) {
86
+ return String(Math.floor(Number(obj))) === obj;
87
+ };
88
+ /** @private is the given object a string? */
89
+
90
+ var isString = function isString(obj) {
91
+ return Object.prototype.toString.call(obj) === '[object String]';
92
+ };
93
+ /** @private is the given object a NaN? */
94
+ // eslint-disable-next-line no-self-compare
95
+
96
+ var isNaN$1 = function isNaN(obj) {
97
+ return obj !== obj;
98
+ };
99
+ /** @private Does a React component have exactly 0 children? */
100
+
101
+ var isEmptyChildren = function isEmptyChildren(children) {
102
+ return Children.count(children) === 0;
103
+ };
104
+ /** @private is the given object/value a promise? */
105
+
106
+ var isPromise = function isPromise(value) {
107
+ return isObject(value) && isFunction(value.then);
108
+ };
109
+ /** @private is the given object/value a type of synthetic event? */
110
+
111
+ var isInputEvent = function isInputEvent(value) {
112
+ return value && isObject(value) && isObject(value.target);
113
+ };
114
+ /**
115
+ * Same as document.activeElement but wraps in a try-catch block. In IE it is
116
+ * not safe to call document.activeElement if there is nothing focused.
117
+ *
118
+ * The activeElement will be null only if the document or document body is not
119
+ * yet defined.
120
+ *
121
+ * @param {?Document} doc Defaults to current document.
122
+ * @return {Element | null}
123
+ * @see https://github.com/facebook/fbjs/blob/master/packages/fbjs/src/core/dom/getActiveElement.js
124
+ */
125
+
126
+ function getActiveElement(doc) {
127
+ doc = doc || (typeof document !== 'undefined' ? document : undefined);
128
+
129
+ if (typeof doc === 'undefined') {
130
+ return null;
131
+ }
132
+
133
+ try {
134
+ return doc.activeElement || doc.body;
135
+ } catch (e) {
136
+ return doc.body;
137
+ }
138
+ }
139
+ /**
140
+ * Deeply get a value from an object via its path.
141
+ */
142
+
143
+ function getIn(obj, key, def, p) {
144
+ if (p === void 0) {
145
+ p = 0;
146
+ }
147
+
148
+ var path = toPath(key);
149
+
150
+ while (obj && p < path.length) {
151
+ obj = obj[path[p++]];
152
+ } // check if path is not in the end
153
+
154
+
155
+ if (p !== path.length && !obj) {
156
+ return def;
157
+ }
158
+
159
+ return obj === undefined ? def : obj;
160
+ }
161
+ /**
162
+ * Deeply set a value from in object via it's path. If the value at `path`
163
+ * has changed, return a shallow copy of obj with `value` set at `path`.
164
+ * If `value` has not changed, return the original `obj`.
165
+ *
166
+ * Existing objects / arrays along `path` are also shallow copied. Sibling
167
+ * objects along path retain the same internal js reference. Since new
168
+ * objects / arrays are only created along `path`, we can test if anything
169
+ * changed in a nested structure by comparing the object's reference in
170
+ * the old and new object, similar to how russian doll cache invalidation
171
+ * works.
172
+ *
173
+ * In earlier versions of this function, which used cloneDeep, there were
174
+ * issues whereby settings a nested value would mutate the parent
175
+ * instead of creating a new object. `clone` avoids that bug making a
176
+ * shallow copy of the objects along the update path
177
+ * so no object is mutated in place.
178
+ *
179
+ * Before changing this function, please read through the following
180
+ * discussions.
181
+ *
182
+ * @see https://github.com/developit/linkstate
183
+ * @see https://github.com/jaredpalmer/formik/pull/123
184
+ */
185
+
186
+ function setIn(obj, path, value) {
187
+ var res = clone(obj); // this keeps inheritance when obj is a class
188
+
189
+ var resVal = res;
190
+ var i = 0;
191
+ var pathArray = toPath(path);
192
+
193
+ for (; i < pathArray.length - 1; i++) {
194
+ var currentPath = pathArray[i];
195
+ var currentObj = getIn(obj, pathArray.slice(0, i + 1));
196
+
197
+ if (currentObj && (isObject(currentObj) || Array.isArray(currentObj))) {
198
+ resVal = resVal[currentPath] = clone(currentObj);
199
+ } else {
200
+ var nextPath = pathArray[i + 1];
201
+ resVal = resVal[currentPath] = isInteger(nextPath) && Number(nextPath) >= 0 ? [] : {};
202
+ }
203
+ } // Return original object if new value is the same as current
204
+
205
+
206
+ if ((i === 0 ? obj : resVal)[pathArray[i]] === value) {
207
+ return obj;
208
+ }
209
+
210
+ if (value === undefined) {
211
+ delete resVal[pathArray[i]];
212
+ } else {
213
+ resVal[pathArray[i]] = value;
214
+ } // If the path array has a single element, the loop did not run.
215
+ // Deleting on `resVal` had no effect in this scenario, so we delete on the result instead.
216
+
217
+
218
+ if (i === 0 && value === undefined) {
219
+ delete res[pathArray[i]];
220
+ }
221
+
222
+ return res;
223
+ }
224
+ /**
225
+ * Recursively a set the same value for all keys and arrays nested object, cloning
226
+ * @param object
227
+ * @param value
228
+ * @param visited
229
+ * @param response
230
+ */
231
+
232
+ function setNestedObjectValues(object, value, visited, response) {
233
+ if (visited === void 0) {
234
+ visited = new WeakMap();
235
+ }
236
+
237
+ if (response === void 0) {
238
+ response = {};
239
+ }
240
+
241
+ for (var _i = 0, _Object$keys = Object.keys(object); _i < _Object$keys.length; _i++) {
242
+ var k = _Object$keys[_i];
243
+ var val = object[k];
244
+
245
+ if (isObject(val)) {
246
+ if (!visited.get(val)) {
247
+ visited.set(val, true); // In order to keep array values consistent for both dot path and
248
+ // bracket syntax, we need to check if this is an array so that
249
+ // this will output { friends: [true] } and not { friends: { "0": true } }
250
+
251
+ response[k] = Array.isArray(val) ? [] : {};
252
+ setNestedObjectValues(val, value, visited, response[k]);
253
+ }
254
+ } else {
255
+ response[k] = value;
256
+ }
257
+ }
258
+
259
+ return response;
260
+ }
261
+
262
+ function formikReducer(state, msg) {
263
+ switch (msg.type) {
264
+ case 'SET_VALUES':
265
+ return _extends({}, state, {
266
+ values: msg.payload
267
+ });
268
+
269
+ case 'SET_TOUCHED':
270
+ return _extends({}, state, {
271
+ touched: msg.payload
272
+ });
273
+
274
+ case 'SET_ERRORS':
275
+ if (isEqual(state.errors, msg.payload)) {
276
+ return state;
277
+ }
278
+
279
+ return _extends({}, state, {
280
+ errors: msg.payload
281
+ });
282
+
283
+ case 'SET_STATUS':
284
+ return _extends({}, state, {
285
+ status: msg.payload
286
+ });
287
+
288
+ case 'SET_ISSUBMITTING':
289
+ return _extends({}, state, {
290
+ isSubmitting: msg.payload
291
+ });
292
+
293
+ case 'SET_ISVALIDATING':
294
+ return _extends({}, state, {
295
+ isValidating: msg.payload
296
+ });
297
+
298
+ case 'SET_FIELD_VALUE':
299
+ return _extends({}, state, {
300
+ values: setIn(state.values, msg.payload.field, msg.payload.value)
301
+ });
302
+
303
+ case 'SET_FIELD_TOUCHED':
304
+ return _extends({}, state, {
305
+ touched: setIn(state.touched, msg.payload.field, msg.payload.value)
306
+ });
307
+
308
+ case 'SET_FIELD_ERROR':
309
+ return _extends({}, state, {
310
+ errors: setIn(state.errors, msg.payload.field, msg.payload.value)
311
+ });
312
+
313
+ case 'RESET_FORM':
314
+ return _extends({}, state, msg.payload);
315
+
316
+ case 'SET_FORMIK_STATE':
317
+ return msg.payload(state);
318
+
319
+ case 'SUBMIT_ATTEMPT':
320
+ return _extends({}, state, {
321
+ touched: setNestedObjectValues(state.values, true),
322
+ isSubmitting: true,
323
+ submitCount: state.submitCount + 1
324
+ });
325
+
326
+ case 'SUBMIT_FAILURE':
327
+ return _extends({}, state, {
328
+ isSubmitting: false
329
+ });
330
+
331
+ case 'SUBMIT_SUCCESS':
332
+ return _extends({}, state, {
333
+ isSubmitting: false
334
+ });
335
+
336
+ default:
337
+ return state;
338
+ }
339
+ } // Initial empty states // objects
340
+
341
+
342
+ var emptyErrors = {};
343
+ var emptyTouched = {};
344
+ function useFormik(_ref) {
345
+ var _ref$validateOnChange = _ref.validateOnChange,
346
+ validateOnChange = _ref$validateOnChange === void 0 ? true : _ref$validateOnChange,
347
+ _ref$validateOnBlur = _ref.validateOnBlur,
348
+ validateOnBlur = _ref$validateOnBlur === void 0 ? true : _ref$validateOnBlur,
349
+ _ref$validateOnMount = _ref.validateOnMount,
350
+ validateOnMount = _ref$validateOnMount === void 0 ? false : _ref$validateOnMount,
351
+ isInitialValid = _ref.isInitialValid,
352
+ _ref$enableReinitiali = _ref.enableReinitialize,
353
+ enableReinitialize = _ref$enableReinitiali === void 0 ? false : _ref$enableReinitiali,
354
+ onSubmit = _ref.onSubmit,
355
+ rest = _objectWithoutPropertiesLoose(_ref, ["validateOnChange", "validateOnBlur", "validateOnMount", "isInitialValid", "enableReinitialize", "onSubmit"]);
356
+
357
+ var props = _extends({
358
+ validateOnChange: validateOnChange,
359
+ validateOnBlur: validateOnBlur,
360
+ validateOnMount: validateOnMount,
361
+ onSubmit: onSubmit
362
+ }, rest);
363
+
364
+ var initialValues = useRef(props.initialValues);
365
+ var initialErrors = useRef(props.initialErrors || emptyErrors);
366
+ var initialTouched = useRef(props.initialTouched || emptyTouched);
367
+ var initialStatus = useRef(props.initialStatus);
368
+ var isMounted = useRef(false);
369
+ var fieldRegistry = useRef({});
370
+
371
+ if (process.env.NODE_ENV !== "production") {
372
+ // eslint-disable-next-line react-hooks/rules-of-hooks
373
+ useEffect(function () {
374
+ !(typeof isInitialValid === 'undefined') ? process.env.NODE_ENV !== "production" ? invariant(false, 'isInitialValid has been deprecated and will be removed in future versions of Formik. Please use initialErrors or validateOnMount instead.') : invariant(false) : void 0; // eslint-disable-next-line
375
+ }, []);
376
+ }
377
+
378
+ useEffect(function () {
379
+ isMounted.current = true;
380
+ return function () {
381
+ isMounted.current = false;
382
+ };
383
+ }, []);
384
+
385
+ var _React$useState = useState(0),
386
+ setIteration = _React$useState[1];
387
+
388
+ var stateRef = useRef({
389
+ values: cloneDeep(props.initialValues),
390
+ errors: cloneDeep(props.initialErrors) || emptyErrors,
391
+ touched: cloneDeep(props.initialTouched) || emptyTouched,
392
+ status: cloneDeep(props.initialStatus),
393
+ isSubmitting: false,
394
+ isValidating: false,
395
+ submitCount: 0
396
+ });
397
+ var state = stateRef.current;
398
+ var dispatch = useCallback(function (action) {
399
+ var prev = stateRef.current;
400
+ stateRef.current = formikReducer(prev, action); // force rerender
401
+
402
+ if (prev !== stateRef.current) setIteration(function (x) {
403
+ return x + 1;
404
+ });
405
+ }, []);
406
+ var runValidateHandler = useCallback(function (values, field) {
407
+ return new Promise(function (resolve, reject) {
408
+ var maybePromisedErrors = props.validate(values, field);
409
+
410
+ if (maybePromisedErrors == null) {
411
+ // use loose null check here on purpose
412
+ resolve(emptyErrors);
413
+ } else if (isPromise(maybePromisedErrors)) {
414
+ maybePromisedErrors.then(function (errors) {
415
+ resolve(errors || emptyErrors);
416
+ }, function (actualException) {
417
+ if (process.env.NODE_ENV !== 'production') {
418
+ console.warn("Warning: An unhandled error was caught during validation in <Formik validate />", actualException);
419
+ }
420
+
421
+ reject(actualException);
422
+ });
423
+ } else {
424
+ resolve(maybePromisedErrors);
425
+ }
426
+ });
427
+ }, [props.validate]);
428
+ /**
429
+ * Run validation against a Yup schema and optionally run a function if successful
430
+ */
431
+
432
+ var runValidationSchema = useCallback(function (values, field) {
433
+ var validationSchema = props.validationSchema;
434
+ var schema = isFunction(validationSchema) ? validationSchema(field) : validationSchema;
435
+ var promise = field && schema.validateAt ? schema.validateAt(field, values) : validateYupSchema(values, schema);
436
+ return new Promise(function (resolve, reject) {
437
+ promise.then(function () {
438
+ resolve(emptyErrors);
439
+ }, function (err) {
440
+ // Yup will throw a validation error if validation fails. We catch those and
441
+ // resolve them into Formik errors. We can sniff if something is a Yup error
442
+ // by checking error.name.
443
+ // @see https://github.com/jquense/yup#validationerrorerrors-string--arraystring-value-any-path-string
444
+ if (err.name === 'ValidationError') {
445
+ resolve(yupToFormErrors(err));
446
+ } else {
447
+ // We throw any other errors
448
+ if (process.env.NODE_ENV !== 'production') {
449
+ console.warn("Warning: An unhandled error was caught during validation in <Formik validationSchema />", err);
450
+ }
451
+
452
+ reject(err);
453
+ }
454
+ });
455
+ });
456
+ }, [props.validationSchema]);
457
+ var runSingleFieldLevelValidation = useCallback(function (field, value) {
458
+ return new Promise(function (resolve) {
459
+ return resolve(fieldRegistry.current[field].validate(value));
460
+ });
461
+ }, []);
462
+ var runFieldLevelValidations = useCallback(function (values) {
463
+ var fieldKeysWithValidation = Object.keys(fieldRegistry.current).filter(function (f) {
464
+ return isFunction(fieldRegistry.current[f].validate);
465
+ }); // Construct an array with all of the field validation functions
466
+
467
+ var fieldValidations = fieldKeysWithValidation.length > 0 ? fieldKeysWithValidation.map(function (f) {
468
+ return runSingleFieldLevelValidation(f, getIn(values, f));
469
+ }) : [Promise.resolve('DO_NOT_DELETE_YOU_WILL_BE_FIRED')]; // use special case ;)
470
+
471
+ return Promise.all(fieldValidations).then(function (fieldErrorsList) {
472
+ return fieldErrorsList.reduce(function (prev, curr, index) {
473
+ if (curr === 'DO_NOT_DELETE_YOU_WILL_BE_FIRED') {
474
+ return prev;
475
+ }
476
+
477
+ if (curr) {
478
+ prev = setIn(prev, fieldKeysWithValidation[index], curr);
479
+ }
480
+
481
+ return prev;
482
+ }, {});
483
+ });
484
+ }, [runSingleFieldLevelValidation]); // Run all validations and return the result
485
+
486
+ var runAllValidations = useCallback(function (values) {
487
+ return Promise.all([runFieldLevelValidations(values), props.validationSchema ? runValidationSchema(values) : {}, props.validate ? runValidateHandler(values) : {}]).then(function (_ref2) {
488
+ var fieldErrors = _ref2[0],
489
+ schemaErrors = _ref2[1],
490
+ validateErrors = _ref2[2];
491
+ var combinedErrors = deepmerge.all([fieldErrors, schemaErrors, validateErrors], {
492
+ arrayMerge: arrayMerge
493
+ });
494
+ return combinedErrors;
495
+ });
496
+ }, [props.validate, props.validationSchema, runFieldLevelValidations, runValidateHandler, runValidationSchema]); // Run all validations methods and update state accordingly
497
+
498
+ var validateFormWithHighPriority = useEventCallback(function (values) {
499
+ if (values === void 0) {
500
+ values = state.values;
501
+ }
502
+
503
+ dispatch({
504
+ type: 'SET_ISVALIDATING',
505
+ payload: true
506
+ });
507
+ return runAllValidations(values).then(function (combinedErrors) {
508
+ if (!!isMounted.current) {
509
+ dispatch({
510
+ type: 'SET_ISVALIDATING',
511
+ payload: false
512
+ });
513
+ dispatch({
514
+ type: 'SET_ERRORS',
515
+ payload: combinedErrors
516
+ });
517
+ }
518
+
519
+ return combinedErrors;
520
+ });
521
+ });
522
+ useEffect(function () {
523
+ if (validateOnMount && isMounted.current === true && isEqual(initialValues.current, props.initialValues)) {
524
+ validateFormWithHighPriority(initialValues.current);
525
+ }
526
+ }, [validateOnMount, validateFormWithHighPriority]);
527
+ var resetForm = useCallback(function (nextState) {
528
+ var values = nextState && nextState.values ? nextState.values : initialValues.current;
529
+ var errors = nextState && nextState.errors ? nextState.errors : initialErrors.current ? initialErrors.current : props.initialErrors || {};
530
+ var touched = nextState && nextState.touched ? nextState.touched : initialTouched.current ? initialTouched.current : props.initialTouched || {};
531
+ var status = nextState && nextState.status ? nextState.status : initialStatus.current ? initialStatus.current : props.initialStatus;
532
+ initialValues.current = values;
533
+ initialErrors.current = errors;
534
+ initialTouched.current = touched;
535
+ initialStatus.current = status;
536
+
537
+ var dispatchFn = function dispatchFn() {
538
+ dispatch({
539
+ type: 'RESET_FORM',
540
+ payload: {
541
+ isSubmitting: !!nextState && !!nextState.isSubmitting,
542
+ errors: errors,
543
+ touched: touched,
544
+ status: status,
545
+ values: values,
546
+ isValidating: !!nextState && !!nextState.isValidating,
547
+ submitCount: !!nextState && !!nextState.submitCount && typeof nextState.submitCount === 'number' ? nextState.submitCount : 0
548
+ }
549
+ });
550
+ };
551
+
552
+ if (props.onReset) {
553
+ var maybePromisedOnReset = props.onReset(state.values, imperativeMethods);
554
+
555
+ if (isPromise(maybePromisedOnReset)) {
556
+ maybePromisedOnReset.then(dispatchFn);
557
+ } else {
558
+ dispatchFn();
559
+ }
560
+ } else {
561
+ dispatchFn();
562
+ }
563
+ }, [props.initialErrors, props.initialStatus, props.initialTouched, props.onReset]);
564
+ useEffect(function () {
565
+ if (isMounted.current === true && !isEqual(initialValues.current, props.initialValues)) {
566
+ if (enableReinitialize) {
567
+ initialValues.current = props.initialValues;
568
+ resetForm();
569
+
570
+ if (validateOnMount) {
571
+ validateFormWithHighPriority(initialValues.current);
572
+ }
573
+ }
574
+ }
575
+ }, [enableReinitialize, props.initialValues, resetForm, validateOnMount, validateFormWithHighPriority]);
576
+ useEffect(function () {
577
+ if (enableReinitialize && isMounted.current === true && !isEqual(initialErrors.current, props.initialErrors)) {
578
+ initialErrors.current = props.initialErrors || emptyErrors;
579
+ dispatch({
580
+ type: 'SET_ERRORS',
581
+ payload: props.initialErrors || emptyErrors
582
+ });
583
+ }
584
+ }, [enableReinitialize, props.initialErrors]);
585
+ useEffect(function () {
586
+ if (enableReinitialize && isMounted.current === true && !isEqual(initialTouched.current, props.initialTouched)) {
587
+ initialTouched.current = props.initialTouched || emptyTouched;
588
+ dispatch({
589
+ type: 'SET_TOUCHED',
590
+ payload: props.initialTouched || emptyTouched
591
+ });
592
+ }
593
+ }, [enableReinitialize, props.initialTouched]);
594
+ useEffect(function () {
595
+ if (enableReinitialize && isMounted.current === true && !isEqual(initialStatus.current, props.initialStatus)) {
596
+ initialStatus.current = props.initialStatus;
597
+ dispatch({
598
+ type: 'SET_STATUS',
599
+ payload: props.initialStatus
600
+ });
601
+ }
602
+ }, [enableReinitialize, props.initialStatus, props.initialTouched]);
603
+ var validateField = useEventCallback(function (name) {
604
+ // This will efficiently validate a single field by avoiding state
605
+ // changes if the validation function is synchronous. It's different from
606
+ // what is called when using validateForm.
607
+ if (fieldRegistry.current[name] && isFunction(fieldRegistry.current[name].validate)) {
608
+ var value = getIn(state.values, name);
609
+ var maybePromise = fieldRegistry.current[name].validate(value);
610
+
611
+ if (isPromise(maybePromise)) {
612
+ // Only flip isValidating if the function is async.
613
+ dispatch({
614
+ type: 'SET_ISVALIDATING',
615
+ payload: true
616
+ });
617
+ return maybePromise.then(function (x) {
618
+ return x;
619
+ }).then(function (error) {
620
+ dispatch({
621
+ type: 'SET_FIELD_ERROR',
622
+ payload: {
623
+ field: name,
624
+ value: error
625
+ }
626
+ });
627
+ dispatch({
628
+ type: 'SET_ISVALIDATING',
629
+ payload: false
630
+ });
631
+ });
632
+ } else {
633
+ dispatch({
634
+ type: 'SET_FIELD_ERROR',
635
+ payload: {
636
+ field: name,
637
+ value: maybePromise
638
+ }
639
+ });
640
+ return Promise.resolve(maybePromise);
641
+ }
642
+ } else if (props.validationSchema) {
643
+ dispatch({
644
+ type: 'SET_ISVALIDATING',
645
+ payload: true
646
+ });
647
+ return runValidationSchema(state.values, name).then(function (x) {
648
+ return x;
649
+ }).then(function (error) {
650
+ dispatch({
651
+ type: 'SET_FIELD_ERROR',
652
+ payload: {
653
+ field: name,
654
+ value: getIn(error, name)
655
+ }
656
+ });
657
+ dispatch({
658
+ type: 'SET_ISVALIDATING',
659
+ payload: false
660
+ });
661
+ });
662
+ }
663
+
664
+ return Promise.resolve();
665
+ });
666
+ var registerField = useCallback(function (name, _ref3) {
667
+ var validate = _ref3.validate;
668
+ fieldRegistry.current[name] = {
669
+ validate: validate
670
+ };
671
+ }, []);
672
+ var unregisterField = useCallback(function (name) {
673
+ delete fieldRegistry.current[name];
674
+ }, []);
675
+ var setTouched = useEventCallback(function (touched, shouldValidate) {
676
+ dispatch({
677
+ type: 'SET_TOUCHED',
678
+ payload: touched
679
+ });
680
+ var willValidate = shouldValidate === undefined ? validateOnBlur : shouldValidate;
681
+ return willValidate ? validateFormWithHighPriority(state.values) : Promise.resolve();
682
+ });
683
+ var setErrors = useCallback(function (errors) {
684
+ dispatch({
685
+ type: 'SET_ERRORS',
686
+ payload: errors
687
+ });
688
+ }, []);
689
+ var setValues = useEventCallback(function (values, shouldValidate) {
690
+ var resolvedValues = isFunction(values) ? values(state.values) : values;
691
+ dispatch({
692
+ type: 'SET_VALUES',
693
+ payload: resolvedValues
694
+ });
695
+ var willValidate = shouldValidate === undefined ? validateOnChange : shouldValidate;
696
+ return willValidate ? validateFormWithHighPriority(resolvedValues) : Promise.resolve();
697
+ });
698
+ var setFieldError = useCallback(function (field, value) {
699
+ dispatch({
700
+ type: 'SET_FIELD_ERROR',
701
+ payload: {
702
+ field: field,
703
+ value: value
704
+ }
705
+ });
706
+ }, []);
707
+ var setFieldValue = useEventCallback(function (field, value, shouldValidate) {
708
+ dispatch({
709
+ type: 'SET_FIELD_VALUE',
710
+ payload: {
711
+ field: field,
712
+ value: value
713
+ }
714
+ });
715
+ var willValidate = shouldValidate === undefined ? validateOnChange : shouldValidate;
716
+ return willValidate ? validateFormWithHighPriority(setIn(state.values, field, value)) : Promise.resolve();
717
+ });
718
+ var executeChange = useCallback(function (eventOrTextValue, maybePath) {
719
+ // By default, assume that the first argument is a string. This allows us to use
720
+ // handleChange with React Native and React Native Web's onChangeText prop which
721
+ // provides just the value of the input.
722
+ var field = maybePath;
723
+ var val = eventOrTextValue;
724
+ var parsed; // If the first argument is not a string though, it has to be a synthetic React Event (or a fake one),
725
+ // so we handle like we would a normal HTML change event.
726
+
727
+ if (!isString(eventOrTextValue)) {
728
+ // If we can, persist the event
729
+ // @see https://reactjs.org/docs/events.html#event-pooling
730
+ if (eventOrTextValue.persist) {
731
+ eventOrTextValue.persist();
732
+ }
733
+
734
+ var target = eventOrTextValue.target ? eventOrTextValue.target : eventOrTextValue.currentTarget;
735
+ var type = target.type,
736
+ name = target.name,
737
+ id = target.id,
738
+ value = target.value,
739
+ checked = target.checked,
740
+ outerHTML = target.outerHTML,
741
+ options = target.options,
742
+ multiple = target.multiple;
743
+ field = maybePath ? maybePath : name ? name : id;
744
+
745
+ if (!field && process.env.NODE_ENV !== "production") {
746
+ warnAboutMissingIdentifier({
747
+ htmlContent: outerHTML,
748
+ documentationAnchorLink: 'handlechange-e-reactchangeeventany--void',
749
+ handlerName: 'handleChange'
750
+ });
751
+ }
752
+
753
+ val = /number|range/.test(type) ? (parsed = parseFloat(value), isNaN(parsed) ? '' : parsed) : /checkbox/.test(type) // checkboxes
754
+ ? getValueForCheckbox(getIn(state.values, field), checked, value) : options && multiple // <select multiple>
755
+ ? getSelectedValues(options) : value;
756
+ }
757
+
758
+ if (field) {
759
+ // Set form fields by name
760
+ setFieldValue(field, val);
761
+ }
762
+ }, [setFieldValue, state.values]);
763
+ var handleChange = useEventCallback(function (eventOrPath) {
764
+ if (isString(eventOrPath)) {
765
+ return function (event) {
766
+ return executeChange(event, eventOrPath);
767
+ };
768
+ } else {
769
+ executeChange(eventOrPath);
770
+ }
771
+ });
772
+ var setFieldTouched = useEventCallback(function (field, touched, shouldValidate) {
773
+ if (touched === void 0) {
774
+ touched = true;
775
+ }
776
+
777
+ dispatch({
778
+ type: 'SET_FIELD_TOUCHED',
779
+ payload: {
780
+ field: field,
781
+ value: touched
782
+ }
783
+ });
784
+ var willValidate = shouldValidate === undefined ? validateOnBlur : shouldValidate;
785
+ return willValidate ? validateFormWithHighPriority(state.values) : Promise.resolve();
786
+ });
787
+ var executeBlur = useCallback(function (e, path) {
788
+ if (e.persist) {
789
+ e.persist();
790
+ }
791
+
792
+ var _e$target = e.target,
793
+ name = _e$target.name,
794
+ id = _e$target.id,
795
+ outerHTML = _e$target.outerHTML;
796
+ var field = path ? path : name ? name : id;
797
+
798
+ if (!field && process.env.NODE_ENV !== "production") {
799
+ warnAboutMissingIdentifier({
800
+ htmlContent: outerHTML,
801
+ documentationAnchorLink: 'handleblur-e-any--void',
802
+ handlerName: 'handleBlur'
803
+ });
804
+ }
805
+
806
+ setFieldTouched(field, true);
807
+ }, [setFieldTouched]);
808
+ var handleBlur = useEventCallback(function (eventOrString) {
809
+ if (isString(eventOrString)) {
810
+ return function (event) {
811
+ return executeBlur(event, eventOrString);
812
+ };
813
+ } else {
814
+ executeBlur(eventOrString);
815
+ }
816
+ });
817
+ var setFormikState = useCallback(function (stateOrCb) {
818
+ if (isFunction(stateOrCb)) {
819
+ dispatch({
820
+ type: 'SET_FORMIK_STATE',
821
+ payload: stateOrCb
822
+ });
823
+ } else {
824
+ dispatch({
825
+ type: 'SET_FORMIK_STATE',
826
+ payload: function payload() {
827
+ return stateOrCb;
828
+ }
829
+ });
830
+ }
831
+ }, []);
832
+ var setStatus = useCallback(function (status) {
833
+ dispatch({
834
+ type: 'SET_STATUS',
835
+ payload: status
836
+ });
837
+ }, []);
838
+ var setSubmitting = useCallback(function (isSubmitting) {
839
+ dispatch({
840
+ type: 'SET_ISSUBMITTING',
841
+ payload: isSubmitting
842
+ });
843
+ }, []);
844
+ var submitForm = useEventCallback(function () {
845
+ dispatch({
846
+ type: 'SUBMIT_ATTEMPT'
847
+ });
848
+ return validateFormWithHighPriority().then(function (combinedErrors) {
849
+ // In case an error was thrown and passed to the resolved Promise,
850
+ // `combinedErrors` can be an instance of an Error. We need to check
851
+ // that and abort the submit.
852
+ // If we don't do that, calling `Object.keys(new Error())` yields an
853
+ // empty array, which causes the validation to pass and the form
854
+ // to be submitted.
855
+ var isInstanceOfError = combinedErrors instanceof Error;
856
+ var isActuallyValid = !isInstanceOfError && Object.keys(combinedErrors).length === 0;
857
+
858
+ if (isActuallyValid) {
859
+ // Proceed with submit...
860
+ //
861
+ // To respect sync submit fns, we can't simply wrap executeSubmit in a promise and
862
+ // _always_ dispatch SUBMIT_SUCCESS because isSubmitting would then always be false.
863
+ // This would be fine in simple cases, but make it impossible to disable submit
864
+ // buttons where people use callbacks or promises as side effects (which is basically
865
+ // all of v1 Formik code). Instead, recall that we are inside of a promise chain already,
866
+ // so we can try/catch executeSubmit(), if it returns undefined, then just bail.
867
+ // If there are errors, throw em. Otherwise, wrap executeSubmit in a promise and handle
868
+ // cleanup of isSubmitting on behalf of the consumer.
869
+ var promiseOrUndefined;
870
+
871
+ try {
872
+ promiseOrUndefined = executeSubmit(); // Bail if it's sync, consumer is responsible for cleaning up
873
+ // via setSubmitting(false)
874
+
875
+ if (promiseOrUndefined === undefined) {
876
+ return;
877
+ }
878
+ } catch (error) {
879
+ throw error;
880
+ }
881
+
882
+ return Promise.resolve(promiseOrUndefined).then(function (result) {
883
+ if (!!isMounted.current) {
884
+ dispatch({
885
+ type: 'SUBMIT_SUCCESS'
886
+ });
887
+ }
888
+
889
+ return result;
890
+ })["catch"](function (_errors) {
891
+ if (!!isMounted.current) {
892
+ dispatch({
893
+ type: 'SUBMIT_FAILURE'
894
+ }); // This is a legit error rejected by the onSubmit fn
895
+ // so we don't want to break the promise chain
896
+
897
+ throw _errors;
898
+ }
899
+ });
900
+ } else if (!!isMounted.current) {
901
+ // ^^^ Make sure Formik is still mounted before updating state
902
+ dispatch({
903
+ type: 'SUBMIT_FAILURE'
904
+ }); // throw combinedErrors;
905
+
906
+ if (isInstanceOfError) {
907
+ throw combinedErrors;
908
+ }
909
+ }
910
+
911
+ return;
912
+ });
913
+ });
914
+ var handleSubmit = useEventCallback(function (e) {
915
+ if (e && e.preventDefault && isFunction(e.preventDefault)) {
916
+ e.preventDefault();
917
+ }
918
+
919
+ if (e && e.stopPropagation && isFunction(e.stopPropagation)) {
920
+ e.stopPropagation();
921
+ } // Warn if form submission is triggered by a <button> without a
922
+ // specified `type` attribute during development. This mitigates
923
+ // a common gotcha in forms with both reset and submit buttons,
924
+ // where the dev forgets to add type="button" to the reset button.
925
+
926
+
927
+ if (process.env.NODE_ENV !== "production" && typeof document !== 'undefined') {
928
+ // Safely get the active element (works with IE)
929
+ var activeElement = getActiveElement();
930
+
931
+ if (activeElement !== null && activeElement instanceof HTMLButtonElement) {
932
+ !(activeElement.attributes && activeElement.attributes.getNamedItem('type')) ? process.env.NODE_ENV !== "production" ? invariant(false, 'You submitted a Formik form using a button with an unspecified `type` attribute. Most browsers default button elements to `type="submit"`. If this is not a submit button, please add `type="button"`.') : invariant(false) : void 0;
933
+ }
934
+ }
935
+
936
+ submitForm()["catch"](function (reason) {
937
+ console.warn("Warning: An unhandled error was caught from submitForm()", reason);
938
+ });
939
+ });
940
+ var imperativeMethods = {
941
+ resetForm: resetForm,
942
+ validateForm: validateFormWithHighPriority,
943
+ validateField: validateField,
944
+ setErrors: setErrors,
945
+ setFieldError: setFieldError,
946
+ setFieldTouched: setFieldTouched,
947
+ setFieldValue: setFieldValue,
948
+ setStatus: setStatus,
949
+ setSubmitting: setSubmitting,
950
+ setTouched: setTouched,
951
+ setValues: setValues,
952
+ setFormikState: setFormikState,
953
+ submitForm: submitForm
954
+ };
955
+ var executeSubmit = useEventCallback(function () {
956
+ return onSubmit(state.values, imperativeMethods);
957
+ });
958
+ var handleReset = useEventCallback(function (e) {
959
+ if (e && e.preventDefault && isFunction(e.preventDefault)) {
960
+ e.preventDefault();
961
+ }
962
+
963
+ if (e && e.stopPropagation && isFunction(e.stopPropagation)) {
964
+ e.stopPropagation();
965
+ }
966
+
967
+ resetForm();
968
+ });
969
+ var getFieldMeta = useCallback(function (name) {
970
+ return {
971
+ value: getIn(state.values, name),
972
+ error: getIn(state.errors, name),
973
+ touched: !!getIn(state.touched, name),
974
+ initialValue: getIn(initialValues.current, name),
975
+ initialTouched: !!getIn(initialTouched.current, name),
976
+ initialError: getIn(initialErrors.current, name)
977
+ };
978
+ }, [state.errors, state.touched, state.values]);
979
+ var getFieldHelpers = useCallback(function (name) {
980
+ return {
981
+ setValue: function setValue(value, shouldValidate) {
982
+ return setFieldValue(name, value, shouldValidate);
983
+ },
984
+ setTouched: function setTouched(value, shouldValidate) {
985
+ return setFieldTouched(name, value, shouldValidate);
986
+ },
987
+ setError: function setError(value) {
988
+ return setFieldError(name, value);
989
+ }
990
+ };
991
+ }, [setFieldValue, setFieldTouched, setFieldError]);
992
+ var getFieldProps = useCallback(function (nameOrOptions) {
993
+ var isAnObject = isObject(nameOrOptions);
994
+ var name = isAnObject ? nameOrOptions.name : nameOrOptions;
995
+ var valueState = getIn(state.values, name);
996
+ var field = {
997
+ name: name,
998
+ value: valueState,
999
+ onChange: handleChange,
1000
+ onBlur: handleBlur
1001
+ };
1002
+
1003
+ if (isAnObject) {
1004
+ var type = nameOrOptions.type,
1005
+ valueProp = nameOrOptions.value,
1006
+ is = nameOrOptions.as,
1007
+ multiple = nameOrOptions.multiple;
1008
+
1009
+ if (type === 'checkbox') {
1010
+ if (valueProp === undefined) {
1011
+ field.checked = !!valueState;
1012
+ } else {
1013
+ field.checked = !!(Array.isArray(valueState) && ~valueState.indexOf(valueProp));
1014
+ field.value = valueProp;
1015
+ }
1016
+ } else if (type === 'radio') {
1017
+ field.checked = valueState === valueProp;
1018
+ field.value = valueProp;
1019
+ } else if (is === 'select' && multiple) {
1020
+ field.value = field.value || [];
1021
+ field.multiple = true;
1022
+ }
1023
+ }
1024
+
1025
+ return field;
1026
+ }, [handleBlur, handleChange, state.values]);
1027
+ var dirty = useMemo(function () {
1028
+ return !isEqual(initialValues.current, state.values);
1029
+ }, [initialValues.current, state.values]);
1030
+ var isValid = useMemo(function () {
1031
+ return typeof isInitialValid !== 'undefined' ? dirty ? state.errors && Object.keys(state.errors).length === 0 : isInitialValid !== false && isFunction(isInitialValid) ? isInitialValid(props) : isInitialValid : state.errors && Object.keys(state.errors).length === 0;
1032
+ }, [isInitialValid, dirty, state.errors, props]);
1033
+
1034
+ var ctx = _extends({}, state, {
1035
+ initialValues: initialValues.current,
1036
+ initialErrors: initialErrors.current,
1037
+ initialTouched: initialTouched.current,
1038
+ initialStatus: initialStatus.current,
1039
+ handleBlur: handleBlur,
1040
+ handleChange: handleChange,
1041
+ handleReset: handleReset,
1042
+ handleSubmit: handleSubmit,
1043
+ resetForm: resetForm,
1044
+ setErrors: setErrors,
1045
+ setFormikState: setFormikState,
1046
+ setFieldTouched: setFieldTouched,
1047
+ setFieldValue: setFieldValue,
1048
+ setFieldError: setFieldError,
1049
+ setStatus: setStatus,
1050
+ setSubmitting: setSubmitting,
1051
+ setTouched: setTouched,
1052
+ setValues: setValues,
1053
+ submitForm: submitForm,
1054
+ validateForm: validateFormWithHighPriority,
1055
+ validateField: validateField,
1056
+ isValid: isValid,
1057
+ dirty: dirty,
1058
+ unregisterField: unregisterField,
1059
+ registerField: registerField,
1060
+ getFieldProps: getFieldProps,
1061
+ getFieldMeta: getFieldMeta,
1062
+ getFieldHelpers: getFieldHelpers,
1063
+ validateOnBlur: validateOnBlur,
1064
+ validateOnChange: validateOnChange,
1065
+ validateOnMount: validateOnMount
1066
+ });
1067
+
1068
+ return ctx;
1069
+ }
1070
+ function Formik(props) {
1071
+ var formikbag = useFormik(props);
1072
+ var component = props.component,
1073
+ children = props.children,
1074
+ render = props.render,
1075
+ innerRef = props.innerRef; // This allows folks to pass a ref to <Formik />
1076
+
1077
+ useImperativeHandle(innerRef, function () {
1078
+ return formikbag;
1079
+ });
1080
+
1081
+ if (process.env.NODE_ENV !== "production") {
1082
+ // eslint-disable-next-line react-hooks/rules-of-hooks
1083
+ useEffect(function () {
1084
+ !!props.render ? process.env.NODE_ENV !== "production" ? invariant(false, "<Formik render> has been deprecated and will be removed in future versions of Formik. Please use a child callback function instead. To get rid of this warning, replace <Formik render={(props) => ...} /> with <Formik>{(props) => ...}</Formik>") : invariant(false) : void 0; // eslint-disable-next-line
1085
+ }, []);
1086
+ }
1087
+
1088
+ return createElement(FormikProvider, {
1089
+ value: formikbag
1090
+ }, component ? createElement(component, formikbag) : render ? render(formikbag) : children // children come last, always called
1091
+ ? isFunction(children) ? children(formikbag) : !isEmptyChildren(children) ? Children.only(children) : null : null);
1092
+ }
1093
+
1094
+ function warnAboutMissingIdentifier(_ref4) {
1095
+ var htmlContent = _ref4.htmlContent,
1096
+ documentationAnchorLink = _ref4.documentationAnchorLink,
1097
+ handlerName = _ref4.handlerName;
1098
+ console.warn("Warning: Formik called `" + handlerName + "`, but you forgot to pass an `id` or `name` attribute to your input:\n " + htmlContent + "\n Formik cannot determine which value to update. For more info see https://formik.org/docs/api/formik#" + documentationAnchorLink + "\n ");
1099
+ }
1100
+ /**
1101
+ * Transform Yup ValidationError to a more usable object
1102
+ */
1103
+
1104
+
1105
+ function yupToFormErrors(yupError) {
1106
+ var errors = {};
1107
+
1108
+ if (yupError.inner) {
1109
+ if (yupError.inner.length === 0) {
1110
+ return setIn(errors, yupError.path, yupError.message);
1111
+ }
1112
+
1113
+ for (var _iterator = yupError.inner, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {
1114
+ var _ref5;
1115
+
1116
+ if (_isArray) {
1117
+ if (_i >= _iterator.length) break;
1118
+ _ref5 = _iterator[_i++];
1119
+ } else {
1120
+ _i = _iterator.next();
1121
+ if (_i.done) break;
1122
+ _ref5 = _i.value;
1123
+ }
1124
+
1125
+ var err = _ref5;
1126
+
1127
+ if (!getIn(errors, err.path)) {
1128
+ errors = setIn(errors, err.path, err.message);
1129
+ }
1130
+ }
1131
+ }
1132
+
1133
+ return errors;
1134
+ }
1135
+ /**
1136
+ * Validate a yup schema.
1137
+ */
1138
+
1139
+ function validateYupSchema(values, schema, sync, context) {
1140
+ if (sync === void 0) {
1141
+ sync = false;
1142
+ }
1143
+
1144
+ var normalizedValues = prepareDataForValidation(values);
1145
+ return schema[sync ? 'validateSync' : 'validate'](normalizedValues, {
1146
+ abortEarly: false,
1147
+ context: context || normalizedValues
1148
+ });
1149
+ }
1150
+ /**
1151
+ * Recursively prepare values.
1152
+ */
1153
+
1154
+ function prepareDataForValidation(values) {
1155
+ var data = Array.isArray(values) ? [] : {};
1156
+
1157
+ for (var k in values) {
1158
+ if (Object.prototype.hasOwnProperty.call(values, k)) {
1159
+ var key = String(k);
1160
+
1161
+ if (Array.isArray(values[key]) === true) {
1162
+ data[key] = values[key].map(function (value) {
1163
+ if (Array.isArray(value) === true || isPlainObject(value)) {
1164
+ return prepareDataForValidation(value);
1165
+ } else {
1166
+ return value !== '' ? value : undefined;
1167
+ }
1168
+ });
1169
+ } else if (isPlainObject(values[key])) {
1170
+ data[key] = prepareDataForValidation(values[key]);
1171
+ } else {
1172
+ data[key] = values[key] !== '' ? values[key] : undefined;
1173
+ }
1174
+ }
1175
+ }
1176
+
1177
+ return data;
1178
+ }
1179
+ /**
1180
+ * deepmerge array merging algorithm
1181
+ * https://github.com/KyleAMathews/deepmerge#combine-array
1182
+ */
1183
+
1184
+ function arrayMerge(target, source, options) {
1185
+ var destination = target.slice();
1186
+ source.forEach(function merge(e, i) {
1187
+ if (typeof destination[i] === 'undefined') {
1188
+ var cloneRequested = options.clone !== false;
1189
+ var shouldClone = cloneRequested && options.isMergeableObject(e);
1190
+ destination[i] = shouldClone ? deepmerge(Array.isArray(e) ? [] : {}, e, options) : e;
1191
+ } else if (options.isMergeableObject(e)) {
1192
+ destination[i] = deepmerge(target[i], e, options);
1193
+ } else if (target.indexOf(e) === -1) {
1194
+ destination.push(e);
1195
+ }
1196
+ });
1197
+ return destination;
1198
+ }
1199
+ /** Return multi select values based on an array of options */
1200
+
1201
+
1202
+ function getSelectedValues(options) {
1203
+ return Array.from(options).filter(function (el) {
1204
+ return el.selected;
1205
+ }).map(function (el) {
1206
+ return el.value;
1207
+ });
1208
+ }
1209
+ /** Return the next value for a checkbox */
1210
+
1211
+
1212
+ function getValueForCheckbox(currentValue, checked, valueProp) {
1213
+ // If the current value was a boolean, return a boolean
1214
+ if (typeof currentValue === 'boolean') {
1215
+ return Boolean(checked);
1216
+ } // If the currentValue was not a boolean we want to return an array
1217
+
1218
+
1219
+ var currentArrayOfValues = [];
1220
+ var isValueInArray = false;
1221
+ var index = -1;
1222
+
1223
+ if (!Array.isArray(currentValue)) {
1224
+ // eslint-disable-next-line eqeqeq
1225
+ if (!valueProp || valueProp == 'true' || valueProp == 'false') {
1226
+ return Boolean(checked);
1227
+ }
1228
+ } else {
1229
+ // If the current value is already an array, use it
1230
+ currentArrayOfValues = currentValue;
1231
+ index = currentValue.indexOf(valueProp);
1232
+ isValueInArray = index >= 0;
1233
+ } // If the checkbox was checked and the value is not already present in the aray we want to add the new value to the array of values
1234
+
1235
+
1236
+ if (checked && valueProp && !isValueInArray) {
1237
+ return currentArrayOfValues.concat(valueProp);
1238
+ } // If the checkbox was unchecked and the value is not in the array, simply return the already existing array of values
1239
+
1240
+
1241
+ if (!isValueInArray) {
1242
+ return currentArrayOfValues;
1243
+ } // If the checkbox was unchecked and the value is in the array, remove the value and return the array
1244
+
1245
+
1246
+ return currentArrayOfValues.slice(0, index).concat(currentArrayOfValues.slice(index + 1));
1247
+ } // React currently throws a warning when using useLayoutEffect on the server.
1248
+ // To get around it, we can conditionally useEffect on the server (no-op) and
1249
+ // useLayoutEffect in the browser.
1250
+ // @see https://gist.github.com/gaearon/e7d97cdf38a2907924ea12e4ebdf3c85
1251
+
1252
+
1253
+ var useIsomorphicLayoutEffect = typeof window !== 'undefined' && typeof window.document !== 'undefined' && typeof window.document.createElement !== 'undefined' ? useLayoutEffect : useEffect;
1254
+
1255
+ function useEventCallback(fn) {
1256
+ var ref = useRef(fn); // we copy a ref to the callback scoped to the current state/props on each render
1257
+
1258
+ useIsomorphicLayoutEffect(function () {
1259
+ ref.current = fn;
1260
+ });
1261
+ return useCallback(function () {
1262
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
1263
+ args[_key] = arguments[_key];
1264
+ }
1265
+
1266
+ return ref.current.apply(void 0, args);
1267
+ }, []);
1268
+ }
1269
+
1270
+ function useField(propsOrFieldName) {
1271
+ var formik = useFormikContext();
1272
+ var getFieldProps = formik.getFieldProps,
1273
+ getFieldMeta = formik.getFieldMeta,
1274
+ getFieldHelpers = formik.getFieldHelpers,
1275
+ registerField = formik.registerField,
1276
+ unregisterField = formik.unregisterField;
1277
+ var isAnObject = isObject(propsOrFieldName); // Normalize propsOrFieldName to FieldHookConfig<Val>
1278
+
1279
+ var props = isAnObject ? propsOrFieldName : {
1280
+ name: propsOrFieldName
1281
+ };
1282
+ var fieldName = props.name,
1283
+ validateFn = props.validate;
1284
+ useEffect(function () {
1285
+ if (fieldName) {
1286
+ registerField(fieldName, {
1287
+ validate: validateFn
1288
+ });
1289
+ }
1290
+
1291
+ return function () {
1292
+ if (fieldName) {
1293
+ unregisterField(fieldName);
1294
+ }
1295
+ };
1296
+ }, [registerField, unregisterField, fieldName, validateFn]);
1297
+
1298
+ if (process.env.NODE_ENV !== "production") {
1299
+ !formik ? process.env.NODE_ENV !== "production" ? invariant(false, 'useField() / <Field /> must be used underneath a <Formik> component or withFormik() higher order component') : invariant(false) : void 0;
1300
+ }
1301
+
1302
+ !fieldName ? process.env.NODE_ENV !== "production" ? invariant(false, 'Invalid field name. Either pass `useField` a string or an object containing a `name` key.') : invariant(false) : void 0;
1303
+ var fieldHelpers = useMemo(function () {
1304
+ return getFieldHelpers(fieldName);
1305
+ }, [getFieldHelpers, fieldName]);
1306
+ return [getFieldProps(props), getFieldMeta(fieldName), fieldHelpers];
1307
+ }
1308
+ function Field(_ref) {
1309
+ var validate = _ref.validate,
1310
+ name = _ref.name,
1311
+ render = _ref.render,
1312
+ children = _ref.children,
1313
+ is = _ref.as,
1314
+ component = _ref.component,
1315
+ className = _ref.className,
1316
+ props = _objectWithoutPropertiesLoose(_ref, ["validate", "name", "render", "children", "as", "component", "className"]);
1317
+
1318
+ var _useFormikContext = useFormikContext(),
1319
+ formik = _objectWithoutPropertiesLoose(_useFormikContext, ["validate", "validationSchema"]);
1320
+
1321
+ if (process.env.NODE_ENV !== "production") {
1322
+ // eslint-disable-next-line react-hooks/rules-of-hooks
1323
+ useEffect(function () {
1324
+ !!render ? process.env.NODE_ENV !== "production" ? invariant(false, "<Field render> has been deprecated and will be removed in future versions of Formik. Please use a child callback function instead. To get rid of this warning, replace <Field name=\"" + name + "\" render={({field, form}) => ...} /> with <Field name=\"" + name + "\">{({field, form, meta}) => ...}</Field>") : invariant(false) : void 0;
1325
+ !!(is && children && isFunction(children)) ? process.env.NODE_ENV !== "production" ? invariant(false, 'You should not use <Field as> and <Field children> as a function in the same <Field> component; <Field as> will be ignored.') : invariant(false) : void 0;
1326
+ !!(component && children && isFunction(children)) ? process.env.NODE_ENV !== "production" ? invariant(false, 'You should not use <Field component> and <Field children> as a function in the same <Field> component; <Field component> will be ignored.') : invariant(false) : void 0;
1327
+ !!(render && children && !isEmptyChildren(children)) ? process.env.NODE_ENV !== "production" ? invariant(false, 'You should not use <Field render> and <Field children> in the same <Field> component; <Field children> will be ignored') : invariant(false) : void 0; // eslint-disable-next-line
1328
+ }, []);
1329
+ } // Register field and field-level validation with parent <Formik>
1330
+
1331
+
1332
+ var registerField = formik.registerField,
1333
+ unregisterField = formik.unregisterField;
1334
+ useEffect(function () {
1335
+ registerField(name, {
1336
+ validate: validate
1337
+ });
1338
+ return function () {
1339
+ unregisterField(name);
1340
+ };
1341
+ }, [registerField, unregisterField, name, validate]);
1342
+ var field = formik.getFieldProps(_extends({
1343
+ name: name
1344
+ }, props));
1345
+ var meta = formik.getFieldMeta(name);
1346
+ var legacyBag = {
1347
+ field: field,
1348
+ form: formik
1349
+ };
1350
+
1351
+ if (render) {
1352
+ return render(_extends({}, legacyBag, {
1353
+ meta: meta
1354
+ }));
1355
+ }
1356
+
1357
+ if (isFunction(children)) {
1358
+ return children(_extends({}, legacyBag, {
1359
+ meta: meta
1360
+ }));
1361
+ }
1362
+
1363
+ if (component) {
1364
+ // This behavior is backwards compat with earlier Formik 0.9 to 1.x
1365
+ if (typeof component === 'string') {
1366
+ var innerRef = props.innerRef,
1367
+ rest = _objectWithoutPropertiesLoose(props, ["innerRef"]);
1368
+
1369
+ return createElement(component, _extends({
1370
+ ref: innerRef
1371
+ }, field, rest, {
1372
+ className: className
1373
+ }), children);
1374
+ } // We don't pass `meta` for backwards compat
1375
+
1376
+
1377
+ return createElement(component, _extends({
1378
+ field: field,
1379
+ form: formik
1380
+ }, props, {
1381
+ className: className
1382
+ }), children);
1383
+ } // default to input here so we can check for both `as` and `children` above
1384
+
1385
+
1386
+ var asElement = is || 'input';
1387
+
1388
+ if (typeof asElement === 'string') {
1389
+ var _innerRef = props.innerRef,
1390
+ _rest = _objectWithoutPropertiesLoose(props, ["innerRef"]);
1391
+
1392
+ return createElement(asElement, _extends({
1393
+ ref: _innerRef
1394
+ }, field, _rest, {
1395
+ className: className
1396
+ }), children);
1397
+ }
1398
+
1399
+ return createElement(asElement, _extends({}, field, props, {
1400
+ className: className
1401
+ }), children);
1402
+ }
1403
+
1404
+ var Form = /*#__PURE__*/forwardRef(function (props, ref) {
1405
+ // iOS needs an "action" attribute for nice input: https://stackoverflow.com/a/39485162/406725
1406
+ // We default the action to "#" in case the preventDefault fails (just updates the URL hash)
1407
+ var action = props.action,
1408
+ rest = _objectWithoutPropertiesLoose(props, ["action"]);
1409
+
1410
+ var _action = action != null ? action : '#';
1411
+
1412
+ var _useFormikContext = useFormikContext(),
1413
+ handleReset = _useFormikContext.handleReset,
1414
+ handleSubmit = _useFormikContext.handleSubmit;
1415
+
1416
+ return createElement("form", _extends({
1417
+ onSubmit: handleSubmit,
1418
+ ref: ref,
1419
+ onReset: handleReset,
1420
+ action: _action
1421
+ }, rest));
1422
+ });
1423
+ Form.displayName = 'Form';
1424
+
1425
+ /**
1426
+ * A public higher-order component to access the imperative API
1427
+ */
1428
+
1429
+ function withFormik(_ref) {
1430
+ var _ref$mapPropsToValues = _ref.mapPropsToValues,
1431
+ mapPropsToValues = _ref$mapPropsToValues === void 0 ? function (vanillaProps) {
1432
+ var val = {};
1433
+
1434
+ for (var k in vanillaProps) {
1435
+ if (vanillaProps.hasOwnProperty(k) && typeof vanillaProps[k] !== 'function') {
1436
+ // @todo TypeScript fix
1437
+ val[k] = vanillaProps[k];
1438
+ }
1439
+ }
1440
+
1441
+ return val;
1442
+ } : _ref$mapPropsToValues,
1443
+ config = _objectWithoutPropertiesLoose(_ref, ["mapPropsToValues"]);
1444
+
1445
+ return function createFormik(Component$1) {
1446
+ var componentDisplayName = Component$1.displayName || Component$1.name || Component$1.constructor && Component$1.constructor.name || 'Component';
1447
+ /**
1448
+ * We need to use closures here for to provide the wrapped component's props to
1449
+ * the respective withFormik config methods.
1450
+ */
1451
+
1452
+ var C = /*#__PURE__*/function (_React$Component) {
1453
+ _inheritsLoose(C, _React$Component);
1454
+
1455
+ function C() {
1456
+ var _this;
1457
+
1458
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
1459
+ args[_key] = arguments[_key];
1460
+ }
1461
+
1462
+ _this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;
1463
+
1464
+ _this.validate = function (values) {
1465
+ return config.validate(values, _this.props);
1466
+ };
1467
+
1468
+ _this.validationSchema = function () {
1469
+ return isFunction(config.validationSchema) ? config.validationSchema(_this.props) : config.validationSchema;
1470
+ };
1471
+
1472
+ _this.handleSubmit = function (values, actions) {
1473
+ return config.handleSubmit(values, _extends({}, actions, {
1474
+ props: _this.props
1475
+ }));
1476
+ };
1477
+
1478
+ _this.renderFormComponent = function (formikProps) {
1479
+ return createElement(Component$1, _extends({}, _this.props, formikProps));
1480
+ };
1481
+
1482
+ return _this;
1483
+ }
1484
+
1485
+ var _proto = C.prototype;
1486
+
1487
+ _proto.render = function render() {
1488
+ var _this$props = this.props,
1489
+ props = _objectWithoutPropertiesLoose(_this$props, ["children"]);
1490
+
1491
+ return createElement(Formik, _extends({}, props, config, {
1492
+ validate: config.validate && this.validate,
1493
+ validationSchema: config.validationSchema && this.validationSchema,
1494
+ initialValues: mapPropsToValues(this.props),
1495
+ initialStatus: config.mapPropsToStatus && config.mapPropsToStatus(this.props),
1496
+ initialErrors: config.mapPropsToErrors && config.mapPropsToErrors(this.props),
1497
+ initialTouched: config.mapPropsToTouched && config.mapPropsToTouched(this.props),
1498
+ onSubmit: this.handleSubmit,
1499
+ children: this.renderFormComponent
1500
+ }));
1501
+ };
1502
+
1503
+ return C;
1504
+ }(Component);
1505
+
1506
+ C.displayName = "WithFormik(" + componentDisplayName + ")";
1507
+ return hoistNonReactStatics(C, Component$1 // cast type to ComponentClass (even if SFC)
1508
+ );
1509
+ };
1510
+ }
1511
+
1512
+ /**
1513
+ * Connect any component to Formik context, and inject as a prop called `formik`;
1514
+ * @param Comp React Component
1515
+ */
1516
+
1517
+ function connect(Comp) {
1518
+ var C = function C(props) {
1519
+ return createElement(FormikConsumer, null, function (formik) {
1520
+ !!!formik ? process.env.NODE_ENV !== "production" ? invariant(false, "Formik context is undefined, please verify you are rendering <Form>, <Field>, <FastField>, <FieldArray>, or your custom context-using component as a child of a <Formik> component. Component name: " + Comp.name) : invariant(false) : void 0;
1521
+ return createElement(Comp, _extends({}, props, {
1522
+ formik: formik
1523
+ }));
1524
+ });
1525
+ };
1526
+
1527
+ var componentDisplayName = Comp.displayName || Comp.name || Comp.constructor && Comp.constructor.name || 'Component'; // Assign Comp to C.WrappedComponent so we can access the inner component in tests
1528
+ // For example, <Field.WrappedComponent /> gets us <FieldInner/>
1529
+
1530
+ C.WrappedComponent = Comp;
1531
+ C.displayName = "FormikConnect(" + componentDisplayName + ")";
1532
+ return hoistNonReactStatics(C, Comp // cast type to ComponentClass (even if SFC)
1533
+ );
1534
+ }
1535
+
1536
+ /**
1537
+ * Some array helpers!
1538
+ */
1539
+
1540
+ var move = function move(array, from, to) {
1541
+ var copy = copyArrayLike(array);
1542
+ var value = copy[from];
1543
+ copy.splice(from, 1);
1544
+ copy.splice(to, 0, value);
1545
+ return copy;
1546
+ };
1547
+ var swap = function swap(arrayLike, indexA, indexB) {
1548
+ var copy = copyArrayLike(arrayLike);
1549
+ var a = copy[indexA];
1550
+ copy[indexA] = copy[indexB];
1551
+ copy[indexB] = a;
1552
+ return copy;
1553
+ };
1554
+ var insert = function insert(arrayLike, index, value) {
1555
+ var copy = copyArrayLike(arrayLike);
1556
+ copy.splice(index, 0, value);
1557
+ return copy;
1558
+ };
1559
+ var replace = function replace(arrayLike, index, value) {
1560
+ var copy = copyArrayLike(arrayLike);
1561
+ copy[index] = value;
1562
+ return copy;
1563
+ };
1564
+
1565
+ var copyArrayLike = function copyArrayLike(arrayLike) {
1566
+ if (!arrayLike) {
1567
+ return [];
1568
+ } else if (Array.isArray(arrayLike)) {
1569
+ return [].concat(arrayLike);
1570
+ } else {
1571
+ var maxIndex = Object.keys(arrayLike).map(function (key) {
1572
+ return parseInt(key);
1573
+ }).reduce(function (max, el) {
1574
+ return el > max ? el : max;
1575
+ }, 0);
1576
+ return Array.from(_extends({}, arrayLike, {
1577
+ length: maxIndex + 1
1578
+ }));
1579
+ }
1580
+ };
1581
+
1582
+ var createAlterationHandler = function createAlterationHandler(alteration, defaultFunction) {
1583
+ var fn = typeof alteration === 'function' ? alteration : defaultFunction;
1584
+ return function (data) {
1585
+ if (Array.isArray(data) || isObject(data)) {
1586
+ var clone = copyArrayLike(data);
1587
+ return fn(clone);
1588
+ } // This can be assumed to be a primitive, which
1589
+ // is a case for top level validation errors
1590
+
1591
+
1592
+ return data;
1593
+ };
1594
+ };
1595
+
1596
+ var FieldArrayInner = /*#__PURE__*/function (_React$Component) {
1597
+ _inheritsLoose(FieldArrayInner, _React$Component);
1598
+
1599
+ function FieldArrayInner(props) {
1600
+ var _this;
1601
+
1602
+ _this = _React$Component.call(this, props) || this; // We need TypeScript generics on these, so we'll bind them in the constructor
1603
+ // @todo Fix TS 3.2.1
1604
+
1605
+ _this.updateArrayField = function (fn, alterTouched, alterErrors) {
1606
+ var _this$props = _this.props,
1607
+ name = _this$props.name,
1608
+ setFormikState = _this$props.formik.setFormikState;
1609
+ setFormikState(function (prevState) {
1610
+ var updateErrors = createAlterationHandler(alterErrors, fn);
1611
+ var updateTouched = createAlterationHandler(alterTouched, fn); // values fn should be executed before updateErrors and updateTouched,
1612
+ // otherwise it causes an error with unshift.
1613
+
1614
+ var values = setIn(prevState.values, name, fn(getIn(prevState.values, name)));
1615
+ var fieldError = alterErrors ? updateErrors(getIn(prevState.errors, name)) : undefined;
1616
+ var fieldTouched = alterTouched ? updateTouched(getIn(prevState.touched, name)) : undefined;
1617
+
1618
+ if (isEmptyArray(fieldError)) {
1619
+ fieldError = undefined;
1620
+ }
1621
+
1622
+ if (isEmptyArray(fieldTouched)) {
1623
+ fieldTouched = undefined;
1624
+ }
1625
+
1626
+ return _extends({}, prevState, {
1627
+ values: values,
1628
+ errors: alterErrors ? setIn(prevState.errors, name, fieldError) : prevState.errors,
1629
+ touched: alterTouched ? setIn(prevState.touched, name, fieldTouched) : prevState.touched
1630
+ });
1631
+ });
1632
+ };
1633
+
1634
+ _this.push = function (value) {
1635
+ return _this.updateArrayField(function (arrayLike) {
1636
+ return [].concat(copyArrayLike(arrayLike), [cloneDeep(value)]);
1637
+ }, false, false);
1638
+ };
1639
+
1640
+ _this.handlePush = function (value) {
1641
+ return function () {
1642
+ return _this.push(value);
1643
+ };
1644
+ };
1645
+
1646
+ _this.swap = function (indexA, indexB) {
1647
+ return _this.updateArrayField(function (array) {
1648
+ return swap(array, indexA, indexB);
1649
+ }, true, true);
1650
+ };
1651
+
1652
+ _this.handleSwap = function (indexA, indexB) {
1653
+ return function () {
1654
+ return _this.swap(indexA, indexB);
1655
+ };
1656
+ };
1657
+
1658
+ _this.move = function (from, to) {
1659
+ return _this.updateArrayField(function (array) {
1660
+ return move(array, from, to);
1661
+ }, true, true);
1662
+ };
1663
+
1664
+ _this.handleMove = function (from, to) {
1665
+ return function () {
1666
+ return _this.move(from, to);
1667
+ };
1668
+ };
1669
+
1670
+ _this.insert = function (index, value) {
1671
+ return _this.updateArrayField(function (array) {
1672
+ return insert(array, index, value);
1673
+ }, function (array) {
1674
+ return insert(array, index, null);
1675
+ }, function (array) {
1676
+ return insert(array, index, null);
1677
+ });
1678
+ };
1679
+
1680
+ _this.handleInsert = function (index, value) {
1681
+ return function () {
1682
+ return _this.insert(index, value);
1683
+ };
1684
+ };
1685
+
1686
+ _this.replace = function (index, value) {
1687
+ return _this.updateArrayField(function (array) {
1688
+ return replace(array, index, value);
1689
+ }, false, false);
1690
+ };
1691
+
1692
+ _this.handleReplace = function (index, value) {
1693
+ return function () {
1694
+ return _this.replace(index, value);
1695
+ };
1696
+ };
1697
+
1698
+ _this.unshift = function (value) {
1699
+ var length = -1;
1700
+
1701
+ _this.updateArrayField(function (array) {
1702
+ var arr = array ? [value].concat(array) : [value];
1703
+ length = arr.length;
1704
+ return arr;
1705
+ }, function (array) {
1706
+ return array ? [null].concat(array) : [null];
1707
+ }, function (array) {
1708
+ return array ? [null].concat(array) : [null];
1709
+ });
1710
+
1711
+ return length;
1712
+ };
1713
+
1714
+ _this.handleUnshift = function (value) {
1715
+ return function () {
1716
+ return _this.unshift(value);
1717
+ };
1718
+ };
1719
+
1720
+ _this.handleRemove = function (index) {
1721
+ return function () {
1722
+ return _this.remove(index);
1723
+ };
1724
+ };
1725
+
1726
+ _this.handlePop = function () {
1727
+ return function () {
1728
+ return _this.pop();
1729
+ };
1730
+ };
1731
+
1732
+ _this.remove = _this.remove.bind(_assertThisInitialized(_this));
1733
+ _this.pop = _this.pop.bind(_assertThisInitialized(_this));
1734
+ return _this;
1735
+ }
1736
+
1737
+ var _proto = FieldArrayInner.prototype;
1738
+
1739
+ _proto.componentDidUpdate = function componentDidUpdate(prevProps) {
1740
+ if (this.props.validateOnChange && this.props.formik.validateOnChange && !isEqual(getIn(prevProps.formik.values, prevProps.name), getIn(this.props.formik.values, this.props.name))) {
1741
+ this.props.formik.validateForm(this.props.formik.values);
1742
+ }
1743
+ };
1744
+
1745
+ _proto.remove = function remove(index) {
1746
+ // We need to make sure we also remove relevant pieces of `touched` and `errors`
1747
+ var result;
1748
+ this.updateArrayField( // so this gets call 3 times
1749
+ function (array) {
1750
+ var copy = array ? copyArrayLike(array) : [];
1751
+
1752
+ if (!result) {
1753
+ result = copy[index];
1754
+ }
1755
+
1756
+ if (isFunction(copy.splice)) {
1757
+ copy.splice(index, 1);
1758
+ } // if the array only includes undefined values we have to return an empty array
1759
+
1760
+
1761
+ return isFunction(copy.every) ? copy.every(function (v) {
1762
+ return v === undefined;
1763
+ }) ? [] : copy : copy;
1764
+ }, true, true);
1765
+ return result;
1766
+ };
1767
+
1768
+ _proto.pop = function pop() {
1769
+ // Remove relevant pieces of `touched` and `errors` too!
1770
+ var result;
1771
+ this.updateArrayField( // so this gets call 3 times
1772
+ function (array) {
1773
+ var tmp = array.slice();
1774
+
1775
+ if (!result) {
1776
+ result = tmp && tmp.pop && tmp.pop();
1777
+ }
1778
+
1779
+ return tmp;
1780
+ }, true, true);
1781
+ return result;
1782
+ };
1783
+
1784
+ _proto.render = function render() {
1785
+ var arrayHelpers = {
1786
+ push: this.push,
1787
+ pop: this.pop,
1788
+ swap: this.swap,
1789
+ move: this.move,
1790
+ insert: this.insert,
1791
+ replace: this.replace,
1792
+ unshift: this.unshift,
1793
+ remove: this.remove,
1794
+ handlePush: this.handlePush,
1795
+ handlePop: this.handlePop,
1796
+ handleSwap: this.handleSwap,
1797
+ handleMove: this.handleMove,
1798
+ handleInsert: this.handleInsert,
1799
+ handleReplace: this.handleReplace,
1800
+ handleUnshift: this.handleUnshift,
1801
+ handleRemove: this.handleRemove
1802
+ };
1803
+
1804
+ var _this$props2 = this.props,
1805
+ component = _this$props2.component,
1806
+ render = _this$props2.render,
1807
+ children = _this$props2.children,
1808
+ name = _this$props2.name,
1809
+ _this$props2$formik = _this$props2.formik,
1810
+ restOfFormik = _objectWithoutPropertiesLoose(_this$props2$formik, ["validate", "validationSchema"]);
1811
+
1812
+ var props = _extends({}, arrayHelpers, {
1813
+ form: restOfFormik,
1814
+ name: name
1815
+ });
1816
+
1817
+ return component ? createElement(component, props) : render ? render(props) : children // children come last, always called
1818
+ ? typeof children === 'function' ? children(props) : !isEmptyChildren(children) ? Children.only(children) : null : null;
1819
+ };
1820
+
1821
+ return FieldArrayInner;
1822
+ }(Component);
1823
+
1824
+ FieldArrayInner.defaultProps = {
1825
+ validateOnChange: true
1826
+ };
1827
+ var FieldArray = /*#__PURE__*/connect(FieldArrayInner);
1828
+
1829
+ var ErrorMessageImpl = /*#__PURE__*/function (_React$Component) {
1830
+ _inheritsLoose(ErrorMessageImpl, _React$Component);
1831
+
1832
+ function ErrorMessageImpl() {
1833
+ return _React$Component.apply(this, arguments) || this;
1834
+ }
1835
+
1836
+ var _proto = ErrorMessageImpl.prototype;
1837
+
1838
+ _proto.shouldComponentUpdate = function shouldComponentUpdate(props) {
1839
+ if (getIn(this.props.formik.errors, this.props.name) !== getIn(props.formik.errors, this.props.name) || getIn(this.props.formik.touched, this.props.name) !== getIn(props.formik.touched, this.props.name) || Object.keys(this.props).length !== Object.keys(props).length) {
1840
+ return true;
1841
+ } else {
1842
+ return false;
1843
+ }
1844
+ };
1845
+
1846
+ _proto.render = function render() {
1847
+ var _this$props = this.props,
1848
+ component = _this$props.component,
1849
+ formik = _this$props.formik,
1850
+ render = _this$props.render,
1851
+ children = _this$props.children,
1852
+ name = _this$props.name,
1853
+ rest = _objectWithoutPropertiesLoose(_this$props, ["component", "formik", "render", "children", "name"]);
1854
+
1855
+ var touch = getIn(formik.touched, name);
1856
+ var error = getIn(formik.errors, name);
1857
+ return !!touch && !!error ? render ? isFunction(render) ? render(error) : null : children ? isFunction(children) ? children(error) : null : component ? createElement(component, rest, error) : error : null;
1858
+ };
1859
+
1860
+ return ErrorMessageImpl;
1861
+ }(Component);
1862
+
1863
+ var ErrorMessage = /*#__PURE__*/connect(ErrorMessageImpl);
1864
+
1865
+ /**
1866
+ * Custom Field component for quickly hooking into Formik
1867
+ * context and wiring up forms.
1868
+ */
1869
+
1870
+ var FastFieldInner = /*#__PURE__*/function (_React$Component) {
1871
+ _inheritsLoose(FastFieldInner, _React$Component);
1872
+
1873
+ function FastFieldInner(props) {
1874
+ var _this;
1875
+
1876
+ _this = _React$Component.call(this, props) || this;
1877
+ var render = props.render,
1878
+ children = props.children,
1879
+ component = props.component,
1880
+ is = props.as,
1881
+ name = props.name;
1882
+ !!render ? process.env.NODE_ENV !== "production" ? invariant(false, "<FastField render> has been deprecated. Please use a child callback function instead: <FastField name={" + name + "}>{props => ...}</FastField> instead.") : invariant(false) : void 0;
1883
+ !!(component && render) ? process.env.NODE_ENV !== "production" ? invariant(false, 'You should not use <FastField component> and <FastField render> in the same <FastField> component; <FastField component> will be ignored') : invariant(false) : void 0;
1884
+ !!(is && children && isFunction(children)) ? process.env.NODE_ENV !== "production" ? invariant(false, 'You should not use <FastField as> and <FastField children> as a function in the same <FastField> component; <FastField as> will be ignored.') : invariant(false) : void 0;
1885
+ !!(component && children && isFunction(children)) ? process.env.NODE_ENV !== "production" ? invariant(false, 'You should not use <FastField component> and <FastField children> as a function in the same <FastField> component; <FastField component> will be ignored.') : invariant(false) : void 0;
1886
+ !!(render && children && !isEmptyChildren(children)) ? process.env.NODE_ENV !== "production" ? invariant(false, 'You should not use <FastField render> and <FastField children> in the same <FastField> component; <FastField children> will be ignored') : invariant(false) : void 0;
1887
+ return _this;
1888
+ }
1889
+
1890
+ var _proto = FastFieldInner.prototype;
1891
+
1892
+ _proto.shouldComponentUpdate = function shouldComponentUpdate(props) {
1893
+ if (this.props.shouldUpdate) {
1894
+ return this.props.shouldUpdate(props, this.props);
1895
+ } else if (props.name !== this.props.name || getIn(props.formik.values, this.props.name) !== getIn(this.props.formik.values, this.props.name) || getIn(props.formik.errors, this.props.name) !== getIn(this.props.formik.errors, this.props.name) || getIn(props.formik.touched, this.props.name) !== getIn(this.props.formik.touched, this.props.name) || Object.keys(this.props).length !== Object.keys(props).length || props.formik.isSubmitting !== this.props.formik.isSubmitting) {
1896
+ return true;
1897
+ } else {
1898
+ return false;
1899
+ }
1900
+ };
1901
+
1902
+ _proto.componentDidMount = function componentDidMount() {
1903
+ // Register the Field with the parent Formik. Parent will cycle through
1904
+ // registered Field's validate fns right prior to submit
1905
+ this.props.formik.registerField(this.props.name, {
1906
+ validate: this.props.validate
1907
+ });
1908
+ };
1909
+
1910
+ _proto.componentDidUpdate = function componentDidUpdate(prevProps) {
1911
+ if (this.props.name !== prevProps.name) {
1912
+ this.props.formik.unregisterField(prevProps.name);
1913
+ this.props.formik.registerField(this.props.name, {
1914
+ validate: this.props.validate
1915
+ });
1916
+ }
1917
+
1918
+ if (this.props.validate !== prevProps.validate) {
1919
+ this.props.formik.registerField(this.props.name, {
1920
+ validate: this.props.validate
1921
+ });
1922
+ }
1923
+ };
1924
+
1925
+ _proto.componentWillUnmount = function componentWillUnmount() {
1926
+ this.props.formik.unregisterField(this.props.name);
1927
+ };
1928
+
1929
+ _proto.render = function render() {
1930
+ var _this$props = this.props,
1931
+ name = _this$props.name,
1932
+ render = _this$props.render,
1933
+ is = _this$props.as,
1934
+ children = _this$props.children,
1935
+ component = _this$props.component,
1936
+ formik = _this$props.formik,
1937
+ props = _objectWithoutPropertiesLoose(_this$props, ["validate", "name", "render", "as", "children", "component", "shouldUpdate", "formik"]);
1938
+
1939
+ var restOfFormik = _objectWithoutPropertiesLoose(formik, ["validate", "validationSchema"]);
1940
+
1941
+ var field = formik.getFieldProps(_extends({
1942
+ name: name
1943
+ }, props));
1944
+ var meta = {
1945
+ value: getIn(formik.values, name),
1946
+ error: getIn(formik.errors, name),
1947
+ touched: !!getIn(formik.touched, name),
1948
+ initialValue: getIn(formik.initialValues, name),
1949
+ initialTouched: !!getIn(formik.initialTouched, name),
1950
+ initialError: getIn(formik.initialErrors, name)
1951
+ };
1952
+ var bag = {
1953
+ field: field,
1954
+ meta: meta,
1955
+ form: restOfFormik
1956
+ };
1957
+
1958
+ if (render) {
1959
+ return render(bag);
1960
+ }
1961
+
1962
+ if (isFunction(children)) {
1963
+ return children(bag);
1964
+ }
1965
+
1966
+ if (component) {
1967
+ // This behavior is backwards compat with earlier Formik 0.9 to 1.x
1968
+ if (typeof component === 'string') {
1969
+ var innerRef = props.innerRef,
1970
+ rest = _objectWithoutPropertiesLoose(props, ["innerRef"]);
1971
+
1972
+ return createElement(component, _extends({
1973
+ ref: innerRef
1974
+ }, field, rest), children);
1975
+ } // We don't pass `meta` for backwards compat
1976
+
1977
+
1978
+ return createElement(component, _extends({
1979
+ field: field,
1980
+ form: formik
1981
+ }, props), children);
1982
+ } // default to input here so we can check for both `as` and `children` above
1983
+
1984
+
1985
+ var asElement = is || 'input';
1986
+
1987
+ if (typeof asElement === 'string') {
1988
+ var _innerRef = props.innerRef,
1989
+ _rest = _objectWithoutPropertiesLoose(props, ["innerRef"]);
1990
+
1991
+ return createElement(asElement, _extends({
1992
+ ref: _innerRef
1993
+ }, field, _rest), children);
1994
+ }
1995
+
1996
+ return createElement(asElement, _extends({}, field, props), children);
1997
+ };
1998
+
1999
+ return FastFieldInner;
2000
+ }(Component);
2001
+
2002
+ var FastField = /*#__PURE__*/connect(FastFieldInner);
2003
+
2004
+ export { ErrorMessage, FastField, Field, FieldArray, Form, Formik, FormikConsumer, FormikContext, FormikProvider, connect, getActiveElement, getIn, insert, isEmptyArray, isEmptyChildren, isFunction, isInputEvent, isInteger, isNaN$1 as isNaN, isObject, isPromise, isString, move, prepareDataForValidation, replace, setIn, setNestedObjectValues, swap, useField, useFormik, useFormikContext, validateYupSchema, withFormik, yupToFormErrors };
2005
+ //# sourceMappingURL=formik.esm.js.map