@maxio-com/self-service 1.0.2

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 (1107) hide show
  1. package/README.md +91 -0
  2. package/dist/maxio-components.cjs.js +2 -0
  3. package/dist/maxio-components.cjs.js.map +1 -0
  4. package/dist/maxio-components.esm.js +1 -0
  5. package/dist/maxio-components.umd.js +16978 -0
  6. package/package.json +186 -0
  7. package/typings/packages/address/index.d.ts +1 -0
  8. package/typings/packages/address/src/components/SelectField/SelectField.d.ts +18 -0
  9. package/typings/packages/address/src/components/SelectField/SelectField.styles.d.ts +5 -0
  10. package/typings/packages/address/src/components/SelectField/index.d.ts +2 -0
  11. package/typings/packages/address/src/components/index.d.ts +2 -0
  12. package/typings/packages/address/src/constants.d.ts +4 -0
  13. package/typings/packages/address/src/containers/Address/Address.d.ts +16 -0
  14. package/typings/packages/address/src/containers/Address/index.d.ts +4 -0
  15. package/typings/packages/address/src/containers/Address/translations.d.ts +2 -0
  16. package/typings/packages/address/src/containers/Address/types.d.ts +43 -0
  17. package/typings/packages/address/src/containers/Address/utils.ts/formatOptions.d.ts +5 -0
  18. package/typings/packages/address/src/containers/Address/utils.ts/index.d.ts +2 -0
  19. package/typings/packages/address/src/containers/index.d.ts +4 -0
  20. package/typings/packages/address/src/hooks/index.d.ts +2 -0
  21. package/typings/packages/address/src/hooks/useFormatAddress.d.ts +2 -0
  22. package/typings/packages/address/src/index.d.ts +9 -0
  23. package/typings/packages/address/src/machines/address/address.d.ts +7 -0
  24. package/typings/packages/address/src/machines/address/index.d.ts +3 -0
  25. package/typings/packages/address/src/machines/address/selectors.d.ts +24 -0
  26. package/typings/packages/address/src/machines/address/types.d.ts +11 -0
  27. package/typings/packages/address/src/machines/index.d.ts +2 -0
  28. package/typings/packages/address/src/types.d.ts +9 -0
  29. package/typings/packages/address/src/utils/createValidationSchema.d.ts +17 -0
  30. package/typings/packages/address/src/utils/index.d.ts +2 -0
  31. package/typings/packages/billing-history/index.d.ts +1 -0
  32. package/typings/packages/billing-history/src/App.d.ts +4 -0
  33. package/typings/packages/billing-history/src/BillingHistory.d.ts +7 -0
  34. package/typings/packages/billing-history/src/components/BillingHistoryLoader/BillingHistoryLoader.d.ts +3 -0
  35. package/typings/packages/billing-history/src/components/BillingHistoryLoader/BillingHistoryLoader.styles.d.ts +2 -0
  36. package/typings/packages/billing-history/src/components/BillingHistoryLoader/index.d.ts +2 -0
  37. package/typings/packages/billing-history/src/components/Filters/Filters.d.ts +18 -0
  38. package/typings/packages/billing-history/src/components/Filters/Filters.styles.d.ts +3 -0
  39. package/typings/packages/billing-history/src/components/Filters/components/DateFilter/DateFilter.d.ts +10 -0
  40. package/typings/packages/billing-history/src/components/Filters/components/DateFilter/DateFilter.styles.d.ts +2 -0
  41. package/typings/packages/billing-history/src/components/Filters/components/DateFilter/index.d.ts +2 -0
  42. package/typings/packages/billing-history/src/components/Filters/components/FilterBox/FilterBox.d.ts +8 -0
  43. package/typings/packages/billing-history/src/components/Filters/components/FilterBox/FilterBox.styles.d.ts +1 -0
  44. package/typings/packages/billing-history/src/components/Filters/components/FilterBox/index.d.ts +4 -0
  45. package/typings/packages/billing-history/src/components/Filters/components/FiltersWrapper/FiltersWrapper.d.ts +1 -0
  46. package/typings/packages/billing-history/src/components/Filters/components/InvoiceNumberFilter/InvoiceNumberFilter.d.ts +8 -0
  47. package/typings/packages/billing-history/src/components/Filters/components/InvoiceNumberFilter/index.d.ts +2 -0
  48. package/typings/packages/billing-history/src/components/Filters/components/ProductNameFilter/ProductNameFilter.d.ts +11 -0
  49. package/typings/packages/billing-history/src/components/Filters/components/ProductNameFilter/index.d.ts +2 -0
  50. package/typings/packages/billing-history/src/components/Filters/components/StatusFilter/StatusFilter.d.ts +8 -0
  51. package/typings/packages/billing-history/src/components/Filters/components/StatusFilter/index.d.ts +2 -0
  52. package/typings/packages/billing-history/src/components/Filters/components/index.d.ts +6 -0
  53. package/typings/packages/billing-history/src/components/Filters/constants.d.ts +3 -0
  54. package/typings/packages/billing-history/src/components/Filters/index.d.ts +2 -0
  55. package/typings/packages/billing-history/src/components/Filters/motion.d.ts +18 -0
  56. package/typings/packages/billing-history/src/components/Filters/types.d.ts +10 -0
  57. package/typings/packages/billing-history/src/components/InvoicesTable/InvoicesTable.d.ts +24 -0
  58. package/typings/packages/billing-history/src/components/InvoicesTable/InvoicesTable.styles.d.ts +1 -0
  59. package/typings/packages/billing-history/src/components/InvoicesTable/components/IconWIthTooltip.d.ts +7 -0
  60. package/typings/packages/billing-history/src/components/InvoicesTable/components/NoInvoicesMsg.d.ts +5 -0
  61. package/typings/packages/billing-history/src/components/InvoicesTable/components/PagesPagination.d.ts +10 -0
  62. package/typings/packages/billing-history/src/components/InvoicesTable/components/PagesPagination.styles.d.ts +3 -0
  63. package/typings/packages/billing-history/src/components/InvoicesTable/components/SkeletonWrapper.d.ts +2 -0
  64. package/typings/packages/billing-history/src/components/InvoicesTable/components/Status.d.ts +7 -0
  65. package/typings/packages/billing-history/src/components/InvoicesTable/components/index.d.ts +5 -0
  66. package/typings/packages/billing-history/src/components/InvoicesTable/index.d.ts +2 -0
  67. package/typings/packages/billing-history/src/components/InvoicesTable/types.d.ts +5 -0
  68. package/typings/packages/billing-history/src/components/InvoicesTable/utils.d.ts +2 -0
  69. package/typings/packages/billing-history/src/constants.d.ts +1 -0
  70. package/typings/packages/billing-history/src/containers/BillingHistoryContainer/BillingHistoryContainer.d.ts +3 -0
  71. package/typings/packages/billing-history/src/containers/BillingHistoryContainer/constants.d.ts +1 -0
  72. package/typings/packages/billing-history/src/containers/BillingHistoryContainer/index.d.ts +2 -0
  73. package/typings/packages/billing-history/src/containers/FiltersContainer/FiltersContainer.d.ts +3 -0
  74. package/typings/packages/billing-history/src/containers/FiltersContainer/index.d.ts +2 -0
  75. package/typings/packages/billing-history/src/containers/ProductsContainer/ProductsContainer.d.ts +10 -0
  76. package/typings/packages/billing-history/src/containers/ProductsContainer/constants.d.ts +1 -0
  77. package/typings/packages/billing-history/src/containers/ProductsContainer/index.d.ts +2 -0
  78. package/typings/packages/billing-history/src/containers/index.d.ts +2 -0
  79. package/typings/packages/billing-history/src/contexts/ConfigContext.d.ts +3 -0
  80. package/typings/packages/billing-history/src/contexts/GlobalStateContext.d.ts +9 -0
  81. package/typings/packages/billing-history/src/contexts/index.d.ts +3 -0
  82. package/typings/packages/billing-history/src/hooks/index.d.ts +2 -0
  83. package/typings/packages/billing-history/src/hooks/useOutsideClick.d.ts +2 -0
  84. package/typings/packages/billing-history/src/hooks/useServices.d.ts +5 -0
  85. package/typings/packages/billing-history/src/index.d.ts +2 -0
  86. package/typings/packages/billing-history/src/machines/billingFilters/actions.d.ts +24 -0
  87. package/typings/packages/billing-history/src/machines/billingFilters/billingFilters.d.ts +7 -0
  88. package/typings/packages/billing-history/src/machines/billingFilters/constants.d.ts +16 -0
  89. package/typings/packages/billing-history/src/machines/billingFilters/index.d.ts +6 -0
  90. package/typings/packages/billing-history/src/machines/billingFilters/selectors.d.ts +13 -0
  91. package/typings/packages/billing-history/src/machines/billingFilters/types.d.ts +51 -0
  92. package/typings/packages/billing-history/src/machines/billingFilters/utils.d.ts +4 -0
  93. package/typings/packages/billing-history/src/machines/billingHistoryData/actions.d.ts +2 -0
  94. package/typings/packages/billing-history/src/machines/billingHistoryData/billingHistoryData.d.ts +8 -0
  95. package/typings/packages/billing-history/src/machines/billingHistoryData/constants.d.ts +5 -0
  96. package/typings/packages/billing-history/src/machines/billingHistoryData/index.d.ts +4 -0
  97. package/typings/packages/billing-history/src/machines/billingHistoryData/selectors.d.ts +52 -0
  98. package/typings/packages/billing-history/src/machines/billingHistoryData/types.d.ts +48 -0
  99. package/typings/packages/billing-history/src/machines/filtersOptions/filtersOptions.d.ts +6 -0
  100. package/typings/packages/billing-history/src/machines/filtersOptions/index.d.ts +5 -0
  101. package/typings/packages/billing-history/src/machines/filtersOptions/selectors.d.ts +12 -0
  102. package/typings/packages/billing-history/src/machines/filtersOptions/types.d.ts +9 -0
  103. package/typings/packages/billing-history/src/mocks/server.d.ts +1 -0
  104. package/typings/packages/billing-history/src/models/billingHistory/billingHistory.d.ts +28 -0
  105. package/typings/packages/billing-history/src/pages/InvoiceDetails/InvoiceDetails.d.ts +3 -0
  106. package/typings/packages/billing-history/src/pages/InvoiceDetails/InvoiceDetails.styles.d.ts +5 -0
  107. package/typings/packages/billing-history/src/pages/InvoiceDetails/index.d.ts +2 -0
  108. package/typings/packages/billing-history/src/pages/index.d.ts +2 -0
  109. package/typings/packages/billing-history/src/providers/GlobalStateProvider.d.ts +6 -0
  110. package/typings/packages/billing-history/src/settings.d.ts +2 -0
  111. package/typings/packages/billing-history/src/types.d.ts +8 -0
  112. package/typings/packages/billing-history/src/utils/getDatesFilters.d.ts +10 -0
  113. package/typings/packages/billing-history/src/utils/getItemsPerPageOptions.d.ts +5 -0
  114. package/typings/packages/billing-history/src/utils/index.d.ts +2 -0
  115. package/typings/packages/custom-fields/index.d.ts +1 -0
  116. package/typings/packages/custom-fields/src/index.d.ts +5 -0
  117. package/typings/packages/custom-fields/src/types.d.ts +9 -0
  118. package/typings/packages/custom-fields/src/utils/renderField.d.ts +9 -0
  119. package/typings/packages/custom-fields/src/utils/updateCustomFields.d.ts +9 -0
  120. package/typings/packages/custom-ui-components/index.d.ts +1 -0
  121. package/typings/packages/custom-ui-components/src/components/atoms/Anchor/Anchor.d.ts +13 -0
  122. package/typings/packages/custom-ui-components/src/components/atoms/Anchor/Anchor.styles.d.ts +8 -0
  123. package/typings/packages/custom-ui-components/src/components/atoms/Anchor/index.d.ts +2 -0
  124. package/typings/packages/custom-ui-components/src/components/atoms/Anchor/settings.d.ts +2 -0
  125. package/typings/packages/custom-ui-components/src/components/atoms/Anchor/types.d.ts +6 -0
  126. package/typings/packages/custom-ui-components/src/components/atoms/BodyText/BodyText.d.ts +17 -0
  127. package/typings/packages/custom-ui-components/src/components/atoms/BodyText/BodyText.styles.d.ts +6 -0
  128. package/typings/packages/custom-ui-components/src/components/atoms/BodyText/index.d.ts +2 -0
  129. package/typings/packages/custom-ui-components/src/components/atoms/BodyText/settings.d.ts +2 -0
  130. package/typings/packages/custom-ui-components/src/components/atoms/BodyText/types.d.ts +7 -0
  131. package/typings/packages/custom-ui-components/src/components/atoms/Box/Box.styles.d.ts +2 -0
  132. package/typings/packages/custom-ui-components/src/components/atoms/Box/index.d.ts +2 -0
  133. package/typings/packages/custom-ui-components/src/components/atoms/Button/Button.d.ts +23 -0
  134. package/typings/packages/custom-ui-components/src/components/atoms/Button/Button.styles.d.ts +15 -0
  135. package/typings/packages/custom-ui-components/src/components/atoms/Button/components/Group/Group.d.ts +7 -0
  136. package/typings/packages/custom-ui-components/src/components/atoms/Button/components/Group/Group.styles.d.ts +2 -0
  137. package/typings/packages/custom-ui-components/src/components/atoms/Button/components/Group/index.d.ts +2 -0
  138. package/typings/packages/custom-ui-components/src/components/atoms/Button/components/index.d.ts +2 -0
  139. package/typings/packages/custom-ui-components/src/components/atoms/Button/index.d.ts +2 -0
  140. package/typings/packages/custom-ui-components/src/components/atoms/Button/settings.d.ts +2 -0
  141. package/typings/packages/custom-ui-components/src/components/atoms/Button/types.d.ts +10 -0
  142. package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/Checkbox.d.ts +9 -0
  143. package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/Checkbox.styles.d.ts +10 -0
  144. package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/index.d.ts +2 -0
  145. package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/settings.d.ts +2 -0
  146. package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/types.d.ts +10 -0
  147. package/typings/packages/custom-ui-components/src/components/atoms/Column/Column.d.ts +11 -0
  148. package/typings/packages/custom-ui-components/src/components/atoms/Column/Column.styles.d.ts +7 -0
  149. package/typings/packages/custom-ui-components/src/components/atoms/Column/index.d.ts +2 -0
  150. package/typings/packages/custom-ui-components/src/components/atoms/Column/system/flexBasis.d.ts +1 -0
  151. package/typings/packages/custom-ui-components/src/components/atoms/Column/system/gutter.d.ts +1 -0
  152. package/typings/packages/custom-ui-components/src/components/atoms/Column/system/index.d.ts +5 -0
  153. package/typings/packages/custom-ui-components/src/components/atoms/Column/system/maxWidth.d.ts +1 -0
  154. package/typings/packages/custom-ui-components/src/components/atoms/Column/system/offset.d.ts +1 -0
  155. package/typings/packages/custom-ui-components/src/components/atoms/Dropdown/Dropdown.d.ts +4 -0
  156. package/typings/packages/custom-ui-components/src/components/atoms/Dropdown/Dropdown.styles.d.ts +1 -0
  157. package/typings/packages/custom-ui-components/src/components/atoms/Dropdown/index.d.ts +2 -0
  158. package/typings/packages/custom-ui-components/src/components/atoms/Dropdown/types.d.ts +14 -0
  159. package/typings/packages/custom-ui-components/src/components/atoms/FontWeight/FontWeight.d.ts +3 -0
  160. package/typings/packages/custom-ui-components/src/components/atoms/FontWeight/index.d.ts +2 -0
  161. package/typings/packages/custom-ui-components/src/components/atoms/Heading/Heading.d.ts +9 -0
  162. package/typings/packages/custom-ui-components/src/components/atoms/Heading/Heading.styles.d.ts +5 -0
  163. package/typings/packages/custom-ui-components/src/components/atoms/Heading/index.d.ts +2 -0
  164. package/typings/packages/custom-ui-components/src/components/atoms/Heading/settings.d.ts +2 -0
  165. package/typings/packages/custom-ui-components/src/components/atoms/Heading/types.d.ts +6 -0
  166. package/typings/packages/custom-ui-components/src/components/atoms/Input/Input.d.ts +17 -0
  167. package/typings/packages/custom-ui-components/src/components/atoms/Input/Input.styles.d.ts +16 -0
  168. package/typings/packages/custom-ui-components/src/components/atoms/Input/index.d.ts +2 -0
  169. package/typings/packages/custom-ui-components/src/components/atoms/Input/settings.d.ts +2 -0
  170. package/typings/packages/custom-ui-components/src/components/atoms/Input/types.d.ts +10 -0
  171. package/typings/packages/custom-ui-components/src/components/atoms/Input/utils/getInputStatus.d.ts +2 -0
  172. package/typings/packages/custom-ui-components/src/components/atoms/Input/utils/index.d.ts +2 -0
  173. package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/InputMessage.d.ts +9 -0
  174. package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/InputMessage.styles.d.ts +5 -0
  175. package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/index.d.ts +4 -0
  176. package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/settings.d.ts +2 -0
  177. package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/types.d.ts +5 -0
  178. package/typings/packages/custom-ui-components/src/components/atoms/Loader/Loader.d.ts +7 -0
  179. package/typings/packages/custom-ui-components/src/components/atoms/Loader/index.d.ts +2 -0
  180. package/typings/packages/custom-ui-components/src/components/atoms/Logo/Logo.d.ts +9 -0
  181. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/AmericanExpress/AmericanExpress.d.ts +7 -0
  182. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/AmericanExpress/index.d.ts +2 -0
  183. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Bogus/Bogus.d.ts +7 -0
  184. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Bogus/index.d.ts +2 -0
  185. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Discover/Discover.d.ts +7 -0
  186. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Discover/index.d.ts +2 -0
  187. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Master/Master.d.ts +7 -0
  188. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Master/index.d.ts +2 -0
  189. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Visa/Visa.d.ts +7 -0
  190. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Visa/index.d.ts +2 -0
  191. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/index.d.ts +6 -0
  192. package/typings/packages/custom-ui-components/src/components/atoms/Logo/constants.d.ts +3 -0
  193. package/typings/packages/custom-ui-components/src/components/atoms/Logo/index.d.ts +2 -0
  194. package/typings/packages/custom-ui-components/src/components/atoms/Modal/Modal.d.ts +17 -0
  195. package/typings/packages/custom-ui-components/src/components/atoms/Modal/Modal.styles.d.ts +5 -0
  196. package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Backdrop/Backdrop.d.ts +7 -0
  197. package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Backdrop/Backdrop.styles.d.ts +1 -0
  198. package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Backdrop/index.d.ts +2 -0
  199. package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Title/Title.d.ts +7 -0
  200. package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Title/Title.styles.d.ts +2 -0
  201. package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Title/index.d.ts +2 -0
  202. package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/index.d.ts +3 -0
  203. package/typings/packages/custom-ui-components/src/components/atoms/Modal/index.d.ts +2 -0
  204. package/typings/packages/custom-ui-components/src/components/atoms/Modal/motion.d.ts +17 -0
  205. package/typings/packages/custom-ui-components/src/components/atoms/Modal/types.d.ts +1 -0
  206. package/typings/packages/custom-ui-components/src/components/atoms/Options/Options.d.ts +4 -0
  207. package/typings/packages/custom-ui-components/src/components/atoms/Options/Options.styles.d.ts +11 -0
  208. package/typings/packages/custom-ui-components/src/components/atoms/Options/components/Option/Option.d.ts +9 -0
  209. package/typings/packages/custom-ui-components/src/components/atoms/Options/components/Option/Option.styles.d.ts +8 -0
  210. package/typings/packages/custom-ui-components/src/components/atoms/Options/components/Option/index.d.ts +2 -0
  211. package/typings/packages/custom-ui-components/src/components/atoms/Options/index.d.ts +7 -0
  212. package/typings/packages/custom-ui-components/src/components/atoms/Options/settings.d.ts +2 -0
  213. package/typings/packages/custom-ui-components/src/components/atoms/Options/system/boxShadow.d.ts +1 -0
  214. package/typings/packages/custom-ui-components/src/components/atoms/Options/system/index.d.ts +2 -0
  215. package/typings/packages/custom-ui-components/src/components/atoms/Options/types.d.ts +29 -0
  216. package/typings/packages/custom-ui-components/src/components/atoms/Options/utils/getBoxShadow.d.ts +1 -0
  217. package/typings/packages/custom-ui-components/src/components/atoms/Options/utils/isEllipsisActive.d.ts +2 -0
  218. package/typings/packages/custom-ui-components/src/components/atoms/Portal/Portal.d.ts +6 -0
  219. package/typings/packages/custom-ui-components/src/components/atoms/Portal/index.d.ts +2 -0
  220. package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/ProgressBar.d.ts +10 -0
  221. package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/ProgressBar.styles.d.ts +9 -0
  222. package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/index.d.ts +2 -0
  223. package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/settings.d.ts +2 -0
  224. package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/types.d.ts +9 -0
  225. package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/RadioButton.d.ts +4 -0
  226. package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/RadioButton.styles.d.ts +7 -0
  227. package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/index.d.ts +4 -0
  228. package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/settings.d.ts +2 -0
  229. package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/types.d.ts +16 -0
  230. package/typings/packages/custom-ui-components/src/components/atoms/Row/Row.d.ts +9 -0
  231. package/typings/packages/custom-ui-components/src/components/atoms/Row/Row.styles.d.ts +5 -0
  232. package/typings/packages/custom-ui-components/src/components/atoms/Row/index.d.ts +2 -0
  233. package/typings/packages/custom-ui-components/src/components/atoms/Row/system/gap.d.ts +1 -0
  234. package/typings/packages/custom-ui-components/src/components/atoms/Row/system/gutter.d.ts +1 -0
  235. package/typings/packages/custom-ui-components/src/components/atoms/Row/system/index.d.ts +3 -0
  236. package/typings/packages/custom-ui-components/src/components/atoms/Select/Select.d.ts +4 -0
  237. package/typings/packages/custom-ui-components/src/components/atoms/Select/Select.styles.d.ts +10 -0
  238. package/typings/packages/custom-ui-components/src/components/atoms/Select/components/DropdownIcon/DropdownIcon.d.ts +9 -0
  239. package/typings/packages/custom-ui-components/src/components/atoms/Select/components/DropdownIcon/DropdownIcon.styles.d.ts +1 -0
  240. package/typings/packages/custom-ui-components/src/components/atoms/Select/components/DropdownIcon/index.d.ts +2 -0
  241. package/typings/packages/custom-ui-components/src/components/atoms/Select/components/index.d.ts +2 -0
  242. package/typings/packages/custom-ui-components/src/components/atoms/Select/constants.d.ts +9 -0
  243. package/typings/packages/custom-ui-components/src/components/atoms/Select/index.d.ts +4 -0
  244. package/typings/packages/custom-ui-components/src/components/atoms/Select/reducer/actions.d.ts +11 -0
  245. package/typings/packages/custom-ui-components/src/components/atoms/Select/reducer/index.d.ts +3 -0
  246. package/typings/packages/custom-ui-components/src/components/atoms/Select/reducer/reducer.d.ts +3 -0
  247. package/typings/packages/custom-ui-components/src/components/atoms/Select/reducer/types.d.ts +39 -0
  248. package/typings/packages/custom-ui-components/src/components/atoms/Select/settings.d.ts +2 -0
  249. package/typings/packages/custom-ui-components/src/components/atoms/Select/types.d.ts +39 -0
  250. package/typings/packages/custom-ui-components/src/components/atoms/Select/utils/getStatus.d.ts +2 -0
  251. package/typings/packages/custom-ui-components/src/components/atoms/Select/utils/index.d.ts +2 -0
  252. package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/SkeletonLoader.d.ts +9 -0
  253. package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/SkeletonLoader.styles.d.ts +6 -0
  254. package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/index.d.ts +4 -0
  255. package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/system/backgroundColor.d.ts +1 -0
  256. package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/system/index.d.ts +2 -0
  257. package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/types.d.ts +1 -0
  258. package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/SubscriptionComponentCard.d.ts +9 -0
  259. package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/SubscriptionComponentCard.styles.d.ts +5 -0
  260. package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/index.d.ts +4 -0
  261. package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/settings.d.ts +2 -0
  262. package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/types.d.ts +5 -0
  263. package/typings/packages/custom-ui-components/src/components/atoms/TextArea/TextArea.d.ts +11 -0
  264. package/typings/packages/custom-ui-components/src/components/atoms/TextArea/TextArea.styles.d.ts +8 -0
  265. package/typings/packages/custom-ui-components/src/components/atoms/TextArea/index.d.ts +2 -0
  266. package/typings/packages/custom-ui-components/src/components/atoms/TextArea/settings.d.ts +2 -0
  267. package/typings/packages/custom-ui-components/src/components/atoms/TextArea/types.d.ts +9 -0
  268. package/typings/packages/custom-ui-components/src/components/atoms/Toggle/Toggle.d.ts +15 -0
  269. package/typings/packages/custom-ui-components/src/components/atoms/Toggle/Toggle.styles.d.ts +21 -0
  270. package/typings/packages/custom-ui-components/src/components/atoms/Toggle/index.d.ts +2 -0
  271. package/typings/packages/custom-ui-components/src/components/atoms/Toggle/settings.d.ts +2 -0
  272. package/typings/packages/custom-ui-components/src/components/atoms/Toggle/types.d.ts +14 -0
  273. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/Tooltip.d.ts +15 -0
  274. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/Tooltip.styles.d.ts +5 -0
  275. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/components/Text/Text.d.ts +7 -0
  276. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/components/Text/index.d.ts +2 -0
  277. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/components/index.d.ts +2 -0
  278. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/index.d.ts +3 -0
  279. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/settings.d.ts +2 -0
  280. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/types.d.ts +7 -0
  281. package/typings/packages/custom-ui-components/src/components/atoms/index.d.ts +30 -0
  282. package/typings/packages/custom-ui-components/src/components/atoms/settings.d.ts +18 -0
  283. package/typings/packages/custom-ui-components/src/components/atoms/types.d.ts +2 -0
  284. package/typings/packages/custom-ui-components/src/components/index.d.ts +3 -0
  285. package/typings/packages/custom-ui-components/src/components/molecules/Accordion/Accordion.d.ts +10 -0
  286. package/typings/packages/custom-ui-components/src/components/molecules/Accordion/Accordion.styles.d.ts +8 -0
  287. package/typings/packages/custom-ui-components/src/components/molecules/Accordion/constants.d.ts +11 -0
  288. package/typings/packages/custom-ui-components/src/components/molecules/Accordion/index.d.ts +2 -0
  289. package/typings/packages/custom-ui-components/src/components/molecules/Accordion/motion.d.ts +14 -0
  290. package/typings/packages/custom-ui-components/src/components/molecules/Accordion/settings.d.ts +2 -0
  291. package/typings/packages/custom-ui-components/src/components/molecules/Accordion/type.d.ts +5 -0
  292. package/typings/packages/custom-ui-components/src/components/molecules/Alert/Alert.d.ts +19 -0
  293. package/typings/packages/custom-ui-components/src/components/molecules/Alert/Alert.styles.d.ts +7 -0
  294. package/typings/packages/custom-ui-components/src/components/molecules/Alert/components/TextMessage.d.ts +7 -0
  295. package/typings/packages/custom-ui-components/src/components/molecules/Alert/components/index.d.ts +2 -0
  296. package/typings/packages/custom-ui-components/src/components/molecules/Alert/index.d.ts +2 -0
  297. package/typings/packages/custom-ui-components/src/components/molecules/Alert/settings.d.ts +2 -0
  298. package/typings/packages/custom-ui-components/src/components/molecules/Alert/types.d.ts +7 -0
  299. package/typings/packages/custom-ui-components/src/components/molecules/Card/Card.d.ts +20 -0
  300. package/typings/packages/custom-ui-components/src/components/molecules/Card/Card.styles.d.ts +13 -0
  301. package/typings/packages/custom-ui-components/src/components/molecules/Card/components/Body/Body.d.ts +8 -0
  302. package/typings/packages/custom-ui-components/src/components/molecules/Card/components/Body/Body.styles.d.ts +9 -0
  303. package/typings/packages/custom-ui-components/src/components/molecules/Card/components/Body/index.d.ts +2 -0
  304. package/typings/packages/custom-ui-components/src/components/molecules/Card/components/index.d.ts +2 -0
  305. package/typings/packages/custom-ui-components/src/components/molecules/Card/index.d.ts +2 -0
  306. package/typings/packages/custom-ui-components/src/components/molecules/Card/settings.d.ts +2 -0
  307. package/typings/packages/custom-ui-components/src/components/molecules/Card/types.d.ts +12 -0
  308. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/CreditCardAddress.d.ts +7 -0
  309. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/CreditCardAddress.styles.d.ts +4 -0
  310. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/index.d.ts +2 -0
  311. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/settings.d.ts +2 -0
  312. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/type.d.ts +5 -0
  313. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/CreditCardHolderDetails.d.ts +9 -0
  314. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/CreditCardHolderDetails.styles.d.ts +4 -0
  315. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/index.d.ts +2 -0
  316. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/settings.d.ts +2 -0
  317. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/type.d.ts +5 -0
  318. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/utils/formatExpirationYear.d.ts +1 -0
  319. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/utils/index.d.ts +2 -0
  320. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/CreditCardNumber.d.ts +6 -0
  321. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/CreditCardNumber.styles.d.ts +4 -0
  322. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/index.d.ts +2 -0
  323. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/settings.d.ts +2 -0
  324. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/type.d.ts +5 -0
  325. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/utils/formatCardNumber.d.ts +1 -0
  326. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/utils/index.d.ts +2 -0
  327. package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/DatePicker.d.ts +16 -0
  328. package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/DatePicker.styles.d.ts +6 -0
  329. package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/constants.d.ts +1 -0
  330. package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/index.d.ts +2 -0
  331. package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/translations.d.ts +2 -0
  332. package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/types.d.ts +3 -0
  333. package/typings/packages/custom-ui-components/src/components/molecules/FormField/FormField.d.ts +20 -0
  334. package/typings/packages/custom-ui-components/src/components/molecules/FormField/FormField.styles.d.ts +13 -0
  335. package/typings/packages/custom-ui-components/src/components/molecules/FormField/index.d.ts +2 -0
  336. package/typings/packages/custom-ui-components/src/components/molecules/FormField/settings.d.ts +2 -0
  337. package/typings/packages/custom-ui-components/src/components/molecules/FormField/types.d.ts +5 -0
  338. package/typings/packages/custom-ui-components/src/components/molecules/FormField/utils/getMessage.d.ts +9 -0
  339. package/typings/packages/custom-ui-components/src/components/molecules/FormField/utils/index.d.ts +2 -0
  340. package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/InputLabel.d.ts +15 -0
  341. package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/InputLabel.styles.d.ts +12 -0
  342. package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/index.d.ts +2 -0
  343. package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/settings.d.ts +2 -0
  344. package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/types.d.ts +7 -0
  345. package/typings/packages/custom-ui-components/src/components/molecules/PageHeader/PageHeader.d.ts +11 -0
  346. package/typings/packages/custom-ui-components/src/components/molecules/PageHeader/PageHeader.styles.d.ts +2 -0
  347. package/typings/packages/custom-ui-components/src/components/molecules/PageHeader/index.d.ts +2 -0
  348. package/typings/packages/custom-ui-components/src/components/molecules/PageHeader/type.d.ts +1 -0
  349. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/PageHeaderSubtitle.d.ts +8 -0
  350. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/PageHeaderSubtitle.styles.d.ts +4 -0
  351. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/index.d.ts +2 -0
  352. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/settings.d.ts +2 -0
  353. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/type.d.ts +5 -0
  354. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/PageHeaderTitle.d.ts +8 -0
  355. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/PageHeaderTitle.styles.d.ts +4 -0
  356. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/index.d.ts +2 -0
  357. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/settings.d.ts +2 -0
  358. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/type.d.ts +5 -0
  359. package/typings/packages/custom-ui-components/src/components/molecules/Pagination/Pagination.d.ts +8 -0
  360. package/typings/packages/custom-ui-components/src/components/molecules/Pagination/Pagination.styles.d.ts +8 -0
  361. package/typings/packages/custom-ui-components/src/components/molecules/Pagination/index.d.ts +2 -0
  362. package/typings/packages/custom-ui-components/src/components/molecules/Pagination/types.d.ts +6 -0
  363. package/typings/packages/custom-ui-components/src/components/molecules/Pagination/utils/createPagination.d.ts +7 -0
  364. package/typings/packages/custom-ui-components/src/components/molecules/Pagination/utils/index.d.ts +2 -0
  365. package/typings/packages/custom-ui-components/src/components/molecules/RadioGroup/RadioGroup.d.ts +4 -0
  366. package/typings/packages/custom-ui-components/src/components/molecules/RadioGroup/RadioGroup.styles.d.ts +2 -0
  367. package/typings/packages/custom-ui-components/src/components/molecules/RadioGroup/index.d.ts +2 -0
  368. package/typings/packages/custom-ui-components/src/components/molecules/RadioGroup/types.d.ts +11 -0
  369. package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/RadioSelect.d.ts +11 -0
  370. package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/RadioSelect.styles.d.ts +9 -0
  371. package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/index.d.ts +2 -0
  372. package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/settings.d.ts +2 -0
  373. package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/types.d.ts +15 -0
  374. package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/RelativeTime.d.ts +11 -0
  375. package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/RelativeTime.styles.d.ts +2 -0
  376. package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/index.d.ts +4 -0
  377. package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/translations.d.ts +2 -0
  378. package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/types.d.ts +11 -0
  379. package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/utils/getOptions.d.ts +5 -0
  380. package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/utils/index.d.ts +2 -0
  381. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/Stepper.d.ts +10 -0
  382. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/Stepper.styles.d.ts +3 -0
  383. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/StepHorizontal.d.ts +9 -0
  384. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/StepHorizontal.styles.d.ts +18 -0
  385. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/index.d.ts +2 -0
  386. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/settings.d.ts +2 -0
  387. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/types.d.ts +10 -0
  388. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/StepVertical.d.ts +11 -0
  389. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/StepVertical.styles.d.ts +9 -0
  390. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/index.d.ts +2 -0
  391. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/settings.d.ts +2 -0
  392. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/types.d.ts +9 -0
  393. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/index.d.ts +3 -0
  394. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/index.d.ts +2 -0
  395. package/typings/packages/custom-ui-components/src/components/molecules/SubscriptionHeader/SubscriptionHeader.d.ts +17 -0
  396. package/typings/packages/custom-ui-components/src/components/molecules/SubscriptionHeader/SubscriptionHeader.styles.d.ts +4 -0
  397. package/typings/packages/custom-ui-components/src/components/molecules/SubscriptionHeader/index.d.ts +2 -0
  398. package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/SummaryTable.d.ts +8 -0
  399. package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/SummaryTable.styles.d.ts +5 -0
  400. package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/fixtures.d.ts +3 -0
  401. package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/index.d.ts +4 -0
  402. package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/types.d.ts +10 -0
  403. package/typings/packages/custom-ui-components/src/components/molecules/Tabs/Tabs.d.ts +11 -0
  404. package/typings/packages/custom-ui-components/src/components/molecules/Tabs/Tabs.styles.d.ts +11 -0
  405. package/typings/packages/custom-ui-components/src/components/molecules/Tabs/fixtures.d.ts +4 -0
  406. package/typings/packages/custom-ui-components/src/components/molecules/Tabs/index.d.ts +2 -0
  407. package/typings/packages/custom-ui-components/src/components/molecules/Tabs/settings.d.ts +2 -0
  408. package/typings/packages/custom-ui-components/src/components/molecules/Tabs/types.d.ts +8 -0
  409. package/typings/packages/custom-ui-components/src/components/molecules/Tag/Tag.d.ts +12 -0
  410. package/typings/packages/custom-ui-components/src/components/molecules/Tag/Tag.styles.d.ts +8 -0
  411. package/typings/packages/custom-ui-components/src/components/molecules/Tag/index.d.ts +4 -0
  412. package/typings/packages/custom-ui-components/src/components/molecules/Tag/settings.d.ts +2 -0
  413. package/typings/packages/custom-ui-components/src/components/molecules/Tag/types.d.ts +7 -0
  414. package/typings/packages/custom-ui-components/src/components/molecules/TagInput/TagInput.d.ts +19 -0
  415. package/typings/packages/custom-ui-components/src/components/molecules/TagInput/TagInput.styles.d.ts +9 -0
  416. package/typings/packages/custom-ui-components/src/components/molecules/TagInput/index.d.ts +2 -0
  417. package/typings/packages/custom-ui-components/src/components/molecules/TagInput/settings.d.ts +2 -0
  418. package/typings/packages/custom-ui-components/src/components/molecules/TagInput/types.d.ts +8 -0
  419. package/typings/packages/custom-ui-components/src/components/molecules/TagInput/utils.d.ts +1 -0
  420. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/TimePicker.d.ts +14 -0
  421. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/TimePicker.styles.d.ts +4 -0
  422. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/index.d.ts +2 -0
  423. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/translations.d.ts +2 -0
  424. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/types.d.ts +7 -0
  425. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/utils/getInputValue.d.ts +2 -0
  426. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/utils/getTimeOptions.d.ts +4 -0
  427. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/utils/index.d.ts +3 -0
  428. package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/ToastMessage.d.ts +10 -0
  429. package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/ToastMessage.styles.d.ts +9 -0
  430. package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/constants.d.ts +3 -0
  431. package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/index.d.ts +2 -0
  432. package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/settings.d.ts +2 -0
  433. package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/types.d.ts +10 -0
  434. package/typings/packages/custom-ui-components/src/components/molecules/index.d.ts +25 -0
  435. package/typings/packages/custom-ui-components/src/components/molecules/settings.d.ts +20 -0
  436. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/BankAccount.d.ts +14 -0
  437. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/BankAccount.styles.d.ts +19 -0
  438. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/components/Watermark/Watermark.d.ts +3 -0
  439. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/components/Watermark/index.d.ts +2 -0
  440. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/components/index.d.ts +2 -0
  441. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/constants.d.ts +4 -0
  442. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/index.d.ts +2 -0
  443. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/settings.d.ts +2 -0
  444. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/types.d.ts +27 -0
  445. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/utils/formatAddressDetails.d.ts +2 -0
  446. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/utils/index.d.ts +2 -0
  447. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/CreditCard.d.ts +17 -0
  448. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/CreditCard.styles.d.ts +10 -0
  449. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Chip/Chip.d.ts +3 -0
  450. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Chip/index.d.ts +2 -0
  451. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/StatusMsg/StatusMsg.d.ts +10 -0
  452. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/StatusMsg/StatusMsg.styles.d.ts +1 -0
  453. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/StatusMsg/index.d.ts +2 -0
  454. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/Watermark.d.ts +8 -0
  455. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/Watermark.styles.d.ts +4 -0
  456. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/Master/Master.d.ts +3 -0
  457. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/Master/index.d.ts +2 -0
  458. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/Visa/Visa.d.ts +3 -0
  459. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/Visa/index.d.ts +2 -0
  460. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/index.d.ts +3 -0
  461. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/index.d.ts +2 -0
  462. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/settings.d.ts +2 -0
  463. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/types.d.ts +7 -0
  464. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/index.d.ts +4 -0
  465. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/constants.d.ts +1 -0
  466. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/index.d.ts +6 -0
  467. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/settings.d.ts +2 -0
  468. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/types.d.ts +27 -0
  469. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/utils/formatAddressDetails.d.ts +5 -0
  470. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/utils/index.d.ts +2 -0
  471. package/typings/packages/custom-ui-components/src/components/organisms/DateTimePicker/DatePicker.styles.d.ts +3 -0
  472. package/typings/packages/custom-ui-components/src/components/organisms/DateTimePicker/DateTimePicker.d.ts +12 -0
  473. package/typings/packages/custom-ui-components/src/components/organisms/DateTimePicker/index.d.ts +2 -0
  474. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/MeteredComponent/MeteredComponent.d.ts +4 -0
  475. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/MeteredComponent/MeteredComponent.styles.d.ts +2 -0
  476. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/MeteredComponent/index.d.ts +2 -0
  477. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/MeteredComponent/types.d.ts +5 -0
  478. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/OnOffComponent/OnOffComponent.d.ts +11 -0
  479. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/OnOffComponent/OnOffComponent.styles.d.ts +3 -0
  480. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/OnOffComponent/index.d.ts +2 -0
  481. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/PrepaidComponent.d.ts +4 -0
  482. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/PrepaidComponent.styles.d.ts +8 -0
  483. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/constants.d.ts +8 -0
  484. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/index.d.ts +4 -0
  485. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/types.d.ts +21 -0
  486. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/QuantityComponent/QuantityComponent.d.ts +4 -0
  487. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/QuantityComponent/QuantityComponent.styles.d.ts +2 -0
  488. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/QuantityComponent/index.d.ts +2 -0
  489. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/QuantityComponent/types.d.ts +5 -0
  490. package/typings/packages/custom-ui-components/src/components/organisms/Table/Table.d.ts +22 -0
  491. package/typings/packages/custom-ui-components/src/components/organisms/Table/Table.styles.d.ts +8 -0
  492. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/SortIndicator.d.ts +7 -0
  493. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableBody.d.ts +1 -0
  494. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableCell/TableCell.d.ts +8 -0
  495. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableCell/TableCell.styles.d.ts +5 -0
  496. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableCell/index.d.ts +2 -0
  497. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableCellContainer.d.ts +1 -0
  498. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableFooter/TableFooter.d.ts +3 -0
  499. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableFooter/types.d.ts +5 -0
  500. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHead.d.ts +4 -0
  501. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHeader/TableHeader.d.ts +4 -0
  502. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHeader/TableHeader.styles.d.ts +3 -0
  503. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHeader/index.d.ts +2 -0
  504. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHeader/types.d.ts +11 -0
  505. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableRow.d.ts +5 -0
  506. package/typings/packages/custom-ui-components/src/components/organisms/Table/index.d.ts +2 -0
  507. package/typings/packages/custom-ui-components/src/components/organisms/Table/settings.d.ts +2 -0
  508. package/typings/packages/custom-ui-components/src/components/organisms/Table/types.d.ts +14 -0
  509. package/typings/packages/custom-ui-components/src/components/organisms/index.d.ts +12 -0
  510. package/typings/packages/custom-ui-components/src/components/organisms/settings.d.ts +7 -0
  511. package/typings/packages/custom-ui-components/src/components/settings.d.ts +39 -0
  512. package/typings/packages/custom-ui-components/src/components/types.d.ts +2 -0
  513. package/typings/packages/custom-ui-components/src/constants.d.ts +9 -0
  514. package/typings/packages/custom-ui-components/src/contexts/PortalContext.d.ts +4 -0
  515. package/typings/packages/custom-ui-components/src/contexts/index.d.ts +2 -0
  516. package/typings/packages/custom-ui-components/src/docs/Grid.styles.d.ts +2 -0
  517. package/typings/packages/custom-ui-components/src/docs/Spaces.d.ts +3 -0
  518. package/typings/packages/custom-ui-components/src/docs/Spaces.styles.d.ts +8 -0
  519. package/typings/packages/custom-ui-components/src/hooks/index.d.ts +4 -0
  520. package/typings/packages/custom-ui-components/src/hooks/useKeypress/index.d.ts +2 -0
  521. package/typings/packages/custom-ui-components/src/hooks/useKeypress/useKeypress.d.ts +9 -0
  522. package/typings/packages/custom-ui-components/src/hooks/useModalVariant/index.d.ts +2 -0
  523. package/typings/packages/custom-ui-components/src/hooks/useModalVariant/useModalVariant.d.ts +1 -0
  524. package/typings/packages/custom-ui-components/src/hooks/useOnClickOutside/index.d.ts +2 -0
  525. package/typings/packages/custom-ui-components/src/hooks/useOnClickOutside/useOnClickOutside.d.ts +2 -0
  526. package/typings/packages/custom-ui-components/src/index.d.ts +11 -0
  527. package/typings/packages/custom-ui-components/src/mixins/fontSmoothing.d.ts +1 -0
  528. package/typings/packages/custom-ui-components/src/mixins/index.d.ts +2 -0
  529. package/typings/packages/custom-ui-components/src/palette.d.ts +41 -0
  530. package/typings/packages/custom-ui-components/src/theme/ThemeProvider.d.ts +8 -0
  531. package/typings/packages/custom-ui-components/src/theme/ThemeUtilities.d.ts +13 -0
  532. package/typings/packages/custom-ui-components/src/theme/index.d.ts +4 -0
  533. package/typings/packages/custom-ui-components/src/theme/system/backgroundColor.d.ts +1 -0
  534. package/typings/packages/custom-ui-components/src/theme/system/index.d.ts +3 -0
  535. package/typings/packages/custom-ui-components/src/theme/types.d.ts +20 -0
  536. package/typings/packages/custom-ui-components/src/themeBase.d.ts +107 -0
  537. package/typings/packages/custom-ui-components/src/types.d.ts +16 -0
  538. package/typings/packages/customer-details/index.d.ts +1 -0
  539. package/typings/packages/customer-details/src/App.d.ts +4 -0
  540. package/typings/packages/customer-details/src/CustomerDetails.d.ts +7 -0
  541. package/typings/packages/customer-details/src/components/ContactDetails/ContactDetails.d.ts +8 -0
  542. package/typings/packages/customer-details/src/components/ContactDetails/index.d.ts +2 -0
  543. package/typings/packages/customer-details/src/components/ContactDetails/utils.d.ts +6 -0
  544. package/typings/packages/customer-details/src/components/ContactDetailsForm/ContactDetailsForm.d.ts +10 -0
  545. package/typings/packages/customer-details/src/components/ContactDetailsForm/ContactDetailsForm.styles.d.ts +4 -0
  546. package/typings/packages/customer-details/src/components/ContactDetailsForm/index.d.ts +2 -0
  547. package/typings/packages/customer-details/src/components/CustomFields/CustomFields.d.ts +8 -0
  548. package/typings/packages/customer-details/src/components/CustomFields/index.d.ts +2 -0
  549. package/typings/packages/customer-details/src/components/CustomFieldsForm/CustomFieldsForm.d.ts +12 -0
  550. package/typings/packages/customer-details/src/components/CustomFieldsForm/index.d.ts +2 -0
  551. package/typings/packages/customer-details/src/components/CustomerDetailsLoader/CustomerDetailsLoader.d.ts +3 -0
  552. package/typings/packages/customer-details/src/components/CustomerDetailsLoader/CustomerDetailsLoader.styles.d.ts +2 -0
  553. package/typings/packages/customer-details/src/components/CustomerDetailsLoader/index.d.ts +2 -0
  554. package/typings/packages/customer-details/src/components/DetailsRow/DetailsRow.d.ts +8 -0
  555. package/typings/packages/customer-details/src/components/DetailsRow/index.d.ts +2 -0
  556. package/typings/packages/customer-details/src/components/DetailsSectionLoadingSkeleton/DetailsSectionLoadingSkeleton.d.ts +3 -0
  557. package/typings/packages/customer-details/src/components/DetailsSectionLoadingSkeleton/index.d.ts +2 -0
  558. package/typings/packages/customer-details/src/components/ShippingAddress/ShippingAddress.d.ts +8 -0
  559. package/typings/packages/customer-details/src/components/ShippingAddress/index.d.ts +2 -0
  560. package/typings/packages/customer-details/src/components/ShippingAddressForm/ShippingAddressForm.d.ts +11 -0
  561. package/typings/packages/customer-details/src/components/ShippingAddressForm/index.d.ts +2 -0
  562. package/typings/packages/customer-details/src/components/index.d.ts +8 -0
  563. package/typings/packages/customer-details/src/constants.d.ts +1 -0
  564. package/typings/packages/customer-details/src/containers/CustomFieldsContainer/CustomFieldsContainer.d.ts +3 -0
  565. package/typings/packages/customer-details/src/containers/CustomFieldsContainer/index.d.ts +2 -0
  566. package/typings/packages/customer-details/src/containers/CustomerDetailsContainer/CustomerDetailsContainer.d.ts +3 -0
  567. package/typings/packages/customer-details/src/containers/CustomerDetailsContainer/CustomerDetailsContainer.styles.d.ts +2 -0
  568. package/typings/packages/customer-details/src/containers/CustomerDetailsContainer/index.d.ts +2 -0
  569. package/typings/packages/customer-details/src/contexts/ConfigContext.d.ts +3 -0
  570. package/typings/packages/customer-details/src/contexts/GlobalStateContext.d.ts +7 -0
  571. package/typings/packages/customer-details/src/contexts/index.d.ts +3 -0
  572. package/typings/packages/customer-details/src/hooks/index.d.ts +2 -0
  573. package/typings/packages/customer-details/src/hooks/useDataWithNames.d.ts +26 -0
  574. package/typings/packages/customer-details/src/index.d.ts +2 -0
  575. package/typings/packages/customer-details/src/machines/customFields/customFields.d.ts +6 -0
  576. package/typings/packages/customer-details/src/machines/customFields/selectors.d.ts +24 -0
  577. package/typings/packages/customer-details/src/machines/customFields/types.d.ts +6 -0
  578. package/typings/packages/customer-details/src/machines/customerData/customerData.d.ts +6 -0
  579. package/typings/packages/customer-details/src/machines/customerData/selectors.d.ts +38 -0
  580. package/typings/packages/customer-details/src/machines/customerData/types.d.ts +6 -0
  581. package/typings/packages/customer-details/src/models/customerDetails/index.d.ts +2 -0
  582. package/typings/packages/customer-details/src/models/customerDetails/types.d.ts +17 -0
  583. package/typings/packages/customer-details/src/models/index.d.ts +2 -0
  584. package/typings/packages/customer-details/src/providers/GlobalStateProvider.d.ts +6 -0
  585. package/typings/packages/customer-details/src/settings.d.ts +2 -0
  586. package/typings/packages/customer-details/src/types.d.ts +5 -0
  587. package/typings/packages/data-access/index.d.ts +1 -0
  588. package/typings/packages/data-access/src/DataAccess.d.ts +399 -0
  589. package/typings/packages/data-access/src/DataAccessContext.d.ts +5 -0
  590. package/typings/packages/data-access/src/constants.d.ts +1 -0
  591. package/typings/packages/data-access/src/index.d.ts +5 -0
  592. package/typings/packages/data-access/src/types/address.d.ts +8 -0
  593. package/typings/packages/data-access/src/types/addressDetails.d.ts +4 -0
  594. package/typings/packages/data-access/src/types/componentAllocation.d.ts +37 -0
  595. package/typings/packages/data-access/src/types/customField.d.ts +9 -0
  596. package/typings/packages/data-access/src/types/customerDetails.d.ts +15 -0
  597. package/typings/packages/data-access/src/types/gatewayConfig.d.ts +13 -0
  598. package/typings/packages/data-access/src/types/index.d.ts +20 -0
  599. package/typings/packages/data-access/src/types/invoicesList.d.ts +39 -0
  600. package/typings/packages/data-access/src/types/paymentProfiles.d.ts +35 -0
  601. package/typings/packages/data-access/src/types/productFamily.d.ts +4 -0
  602. package/typings/packages/data-access/src/types/subscription.d.ts +43 -0
  603. package/typings/packages/data-access/src/types/subscriptionComponent.d.ts +32 -0
  604. package/typings/packages/data-access/src/types/subscriptionPaymentProfile.d.ts +7 -0
  605. package/typings/packages/data-access/src/utils/index.d.ts +3 -0
  606. package/typings/packages/data-access/src/utils/prepareQueryParams.d.ts +1 -0
  607. package/typings/packages/data-access/src/utils/requestHandler.d.ts +2 -0
  608. package/typings/packages/device-provider/index.d.ts +1 -0
  609. package/typings/packages/device-provider/src/components/DeviceProvider/DeviceProvider.d.ts +8 -0
  610. package/typings/packages/device-provider/src/components/DeviceProvider/index.d.ts +2 -0
  611. package/typings/packages/device-provider/src/components/index.d.ts +2 -0
  612. package/typings/packages/device-provider/src/contexts/DeviceContext.d.ts +5 -0
  613. package/typings/packages/device-provider/src/contexts/index.d.ts +2 -0
  614. package/typings/packages/device-provider/src/hooks/index.d.ts +2 -0
  615. package/typings/packages/device-provider/src/hooks/useDeviceInfo.d.ts +3 -0
  616. package/typings/packages/device-provider/src/index.d.ts +6 -0
  617. package/typings/packages/device-provider/src/types.d.ts +1 -0
  618. package/typings/packages/embeddable-component/index.d.ts +1 -0
  619. package/typings/packages/embeddable-component/src/ComponentLoader/ComponentLoader.d.ts +8 -0
  620. package/typings/packages/embeddable-component/src/ComponentLoader/index.d.ts +2 -0
  621. package/typings/packages/embeddable-component/src/EmbeddableComponent/EmbeddableComponent.d.ts +24 -0
  622. package/typings/packages/embeddable-component/src/EmbeddableComponent/index.d.ts +3 -0
  623. package/typings/packages/embeddable-component/src/SessionGuard/SessionGuard.d.ts +11 -0
  624. package/typings/packages/embeddable-component/src/SessionGuard/index.d.ts +4 -0
  625. package/typings/packages/embeddable-component/src/index.d.ts +3 -0
  626. package/typings/packages/embeddable-component/src/types.d.ts +3 -0
  627. package/typings/packages/formatters/index.d.ts +1 -0
  628. package/typings/packages/formatters/src/constants.d.ts +1 -0
  629. package/typings/packages/formatters/src/formatBillingInterval.d.ts +3 -0
  630. package/typings/packages/formatters/src/formatCurrency.d.ts +31 -0
  631. package/typings/packages/formatters/src/formatDate.d.ts +2 -0
  632. package/typings/packages/formatters/src/index.d.ts +8 -0
  633. package/typings/packages/formatters/src/keysToSnakeCase.d.ts +2 -0
  634. package/typings/packages/formatters/src/manipulateDate.d.ts +6 -0
  635. package/typings/packages/icons/index.d.ts +1 -0
  636. package/typings/packages/icons/src/Icon.d.ts +4 -0
  637. package/typings/packages/icons/src/Icon.styles.d.ts +4 -0
  638. package/typings/packages/icons/src/constants.d.ts +1 -0
  639. package/typings/packages/icons/src/index.d.ts +4 -0
  640. package/typings/packages/icons/src/types.d.ts +8 -0
  641. package/typings/packages/icons/src/utils.d.ts +2 -0
  642. package/typings/packages/logger/index.d.ts +1 -0
  643. package/typings/packages/logger/src/index.d.ts +4 -0
  644. package/typings/packages/logger/src/logger.d.ts +3 -0
  645. package/typings/packages/payments-sdk/index.d.ts +1 -0
  646. package/typings/packages/payments-sdk/src/components/CardExpiration/CardExpiration.d.ts +8 -0
  647. package/typings/packages/payments-sdk/src/components/CardExpiration/CardExpiration.styles.d.ts +3 -0
  648. package/typings/packages/payments-sdk/src/components/CardExpiration/constants.d.ts +2 -0
  649. package/typings/packages/payments-sdk/src/components/CardExpiration/index.d.ts +2 -0
  650. package/typings/packages/payments-sdk/src/components/CardNumber/CardNumber.d.ts +7 -0
  651. package/typings/packages/payments-sdk/src/components/CardNumber/index.d.ts +2 -0
  652. package/typings/packages/payments-sdk/src/components/CreditCard/CreditCard.d.ts +12 -0
  653. package/typings/packages/payments-sdk/src/components/CreditCard/CreditCard.styles.d.ts +8 -0
  654. package/typings/packages/payments-sdk/src/components/CreditCard/components/FourDigit/FourDigit.d.ts +3 -0
  655. package/typings/packages/payments-sdk/src/components/CreditCard/components/FourDigit/index.d.ts +2 -0
  656. package/typings/packages/payments-sdk/src/components/CreditCard/components/ThreeDigit/ThreeDigit.d.ts +3 -0
  657. package/typings/packages/payments-sdk/src/components/CreditCard/components/ThreeDigit/index.d.ts +2 -0
  658. package/typings/packages/payments-sdk/src/components/CreditCard/components/TooltipContent/TooltipContent.d.ts +7 -0
  659. package/typings/packages/payments-sdk/src/components/CreditCard/components/TooltipContent/TooltipContent.styles.d.ts +3 -0
  660. package/typings/packages/payments-sdk/src/components/CreditCard/components/TooltipContent/index.d.ts +2 -0
  661. package/typings/packages/payments-sdk/src/components/CreditCard/components/TooltipContent/types.d.ts +4 -0
  662. package/typings/packages/payments-sdk/src/components/CreditCard/components/index.d.ts +2 -0
  663. package/typings/packages/payments-sdk/src/components/CreditCard/index.d.ts +4 -0
  664. package/typings/packages/payments-sdk/src/components/CreditCard/types.d.ts +8 -0
  665. package/typings/packages/payments-sdk/src/components/HostedField/HostedField.d.ts +11 -0
  666. package/typings/packages/payments-sdk/src/components/HostedField/HostedField.styles.d.ts +2 -0
  667. package/typings/packages/payments-sdk/src/components/HostedField/index.d.ts +4 -0
  668. package/typings/packages/payments-sdk/src/components/InputSocket/InputSocket.d.ts +8 -0
  669. package/typings/packages/payments-sdk/src/components/InputSocket/InputSocket.styles.d.ts +2 -0
  670. package/typings/packages/payments-sdk/src/components/InputSocket/index.d.ts +2 -0
  671. package/typings/packages/payments-sdk/src/components/PaymentProfileSkeleton/PaymentProfileSkeleton.d.ts +3 -0
  672. package/typings/packages/payments-sdk/src/components/PaymentProfileSkeleton/index.d.ts +2 -0
  673. package/typings/packages/payments-sdk/src/components/SecurityCode/SecurityCode.d.ts +7 -0
  674. package/typings/packages/payments-sdk/src/components/SecurityCode/index.d.ts +2 -0
  675. package/typings/packages/payments-sdk/src/components/index.d.ts +8 -0
  676. package/typings/packages/payments-sdk/src/constants.d.ts +2 -0
  677. package/typings/packages/payments-sdk/src/containers/PaymentsContainer/PaymentsContainer.d.ts +7 -0
  678. package/typings/packages/payments-sdk/src/containers/PaymentsContainer/index.d.ts +2 -0
  679. package/typings/packages/payments-sdk/src/containers/PaymentsContainer/utils/index.d.ts +2 -0
  680. package/typings/packages/payments-sdk/src/containers/PaymentsContainer/utils/waitForGlobalVariable.d.ts +1 -0
  681. package/typings/packages/payments-sdk/src/containers/index.d.ts +2 -0
  682. package/typings/packages/payments-sdk/src/contexts/PaymentsContext.d.ts +6 -0
  683. package/typings/packages/payments-sdk/src/contexts/index.d.ts +2 -0
  684. package/typings/packages/payments-sdk/src/forms/CreditCard/CreditCard.d.ts +21 -0
  685. package/typings/packages/payments-sdk/src/forms/CreditCard/index.d.ts +6 -0
  686. package/typings/packages/payments-sdk/src/forms/CreditCard/translations.d.ts +2 -0
  687. package/typings/packages/payments-sdk/src/forms/CreditCard/types.d.ts +29 -0
  688. package/typings/packages/payments-sdk/src/forms/CreditCard/utils/createFieldsConfig.d.ts +10 -0
  689. package/typings/packages/payments-sdk/src/forms/CreditCard/utils/createFieldsStyles.d.ts +75 -0
  690. package/typings/packages/payments-sdk/src/forms/CreditCard/utils/createValidationSchema.d.ts +9 -0
  691. package/typings/packages/payments-sdk/src/forms/CreditCard/utils/index.d.ts +5 -0
  692. package/typings/packages/payments-sdk/src/forms/CreditCard/utils/mapDetectedCreditCardType.d.ts +3 -0
  693. package/typings/packages/payments-sdk/src/forms/PaymentProfile/PaymentProfile.d.ts +30 -0
  694. package/typings/packages/payments-sdk/src/forms/PaymentProfile/constants.d.ts +2 -0
  695. package/typings/packages/payments-sdk/src/forms/PaymentProfile/index.d.ts +2 -0
  696. package/typings/packages/payments-sdk/src/forms/index.d.ts +5 -0
  697. package/typings/packages/payments-sdk/src/hooks/index.d.ts +3 -0
  698. package/typings/packages/payments-sdk/src/hooks/usePaymentProfileTranslations.d.ts +6 -0
  699. package/typings/packages/payments-sdk/src/hooks/usePaymentsForm.d.ts +1 -0
  700. package/typings/packages/payments-sdk/src/index.d.ts +6 -0
  701. package/typings/packages/payments-sdk/src/types.d.ts +29 -0
  702. package/typings/packages/session-manager/index.d.ts +1 -0
  703. package/typings/packages/session-manager/src/SessionManager/SessionManager.d.ts +31 -0
  704. package/typings/packages/session-manager/src/SessionManager/index.d.ts +4 -0
  705. package/typings/packages/session-manager/src/SessionManager/types.d.ts +14 -0
  706. package/typings/packages/session-manager/src/index.d.ts +4 -0
  707. package/typings/packages/subscriptions-manager/index.d.ts +1 -0
  708. package/typings/packages/subscriptions-manager/src/App.d.ts +4 -0
  709. package/typings/packages/subscriptions-manager/src/SubscriptionsManager.d.ts +7 -0
  710. package/typings/packages/subscriptions-manager/src/components/ComponentGroup/ComponentGroup.d.ts +9 -0
  711. package/typings/packages/subscriptions-manager/src/components/ComponentGroup/index.d.ts +2 -0
  712. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/ComponentsAllocationEdit.d.ts +12 -0
  713. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/ComponentsAllocationEdit.styles.d.ts +3 -0
  714. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/components/ComponentsAllocationEditSkeleton/ComponentsAllocationEditSkeleton.d.ts +3 -0
  715. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/components/ComponentsAllocationEditSkeleton/index.d.ts +2 -0
  716. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/components/index.d.ts +2 -0
  717. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/index.d.ts +2 -0
  718. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/ComponentsAllocationPreview.d.ts +8 -0
  719. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/ComponentsAllocationPreview.styles.d.ts +3 -0
  720. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/components/AllocationsTable/AllocationsTable.d.ts +10 -0
  721. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/components/AllocationsTable/index.d.ts +2 -0
  722. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/index.d.ts +2 -0
  723. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/getAllocationSummaryPaymentMessage.d.ts +17 -0
  724. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/index.d.ts +5 -0
  725. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/mapAllocationsToTable.d.ts +12 -0
  726. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/mapChargeSummaryToTable.d.ts +10 -0
  727. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/sortComponentAllocations.d.ts +6 -0
  728. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/ComponentsPreview.d.ts +7 -0
  729. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/ComponentsPreview.styles.d.ts +3 -0
  730. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/components/ComponentsPreviewRow/ComponentsPreviewRow.d.ts +7 -0
  731. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/components/ComponentsPreviewRow/ComponentsPreviewRow.styles.d.ts +3 -0
  732. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/components/ComponentsPreviewRow/index.d.ts +2 -0
  733. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/index.d.ts +4 -0
  734. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/types.d.ts +10 -0
  735. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/createComponentsPreviewRow.d.ts +12 -0
  736. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/createOnOffRow.d.ts +3 -0
  737. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/createQuantityRow.d.ts +3 -0
  738. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/index.d.ts +2 -0
  739. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/renderPrice.d.ts +3 -0
  740. package/typings/packages/subscriptions-manager/src/components/ContentLoader/ContentLoader.d.ts +11 -0
  741. package/typings/packages/subscriptions-manager/src/components/ContentLoader/ContentLoader.styles.d.ts +3 -0
  742. package/typings/packages/subscriptions-manager/src/components/ContentLoader/index.d.ts +2 -0
  743. package/typings/packages/subscriptions-manager/src/components/CustomFieldsForm/CustomFieldsForm.d.ts +9 -0
  744. package/typings/packages/subscriptions-manager/src/components/CustomFieldsForm/index.d.ts +2 -0
  745. package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/CustomFieldsPreview.d.ts +11 -0
  746. package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/components/CustomFieldsLoadingSkeleton/CustomFieldsLoadingSkeleton.d.ts +3 -0
  747. package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/components/CustomFieldsLoadingSkeleton/index.d.ts +2 -0
  748. package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/components/index.d.ts +2 -0
  749. package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/index.d.ts +2 -0
  750. package/typings/packages/subscriptions-manager/src/components/DetailsRow/DetailsRow.d.ts +7 -0
  751. package/typings/packages/subscriptions-manager/src/components/DetailsRow/index.d.ts +2 -0
  752. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/PaymentProfiles.d.ts +16 -0
  753. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/PaymentProfiles.styles.d.ts +3 -0
  754. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesHeader/PaymentsProfilesHeader.d.ts +8 -0
  755. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesHeader/PaymentsProfilesHeader.styles.d.ts +1 -0
  756. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesHeader/index.d.ts +2 -0
  757. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesSkeletonLoader/PaymentProfilesSkeletonLoader.d.ts +2 -0
  758. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesSkeletonLoader/index.d.ts +2 -0
  759. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/index.d.ts +2 -0
  760. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/utils.d.ts +4 -0
  761. package/typings/packages/subscriptions-manager/src/components/RadioOptions/RadioOptions.styles.d.ts +2 -0
  762. package/typings/packages/subscriptions-manager/src/components/RadioOptions/index.d.ts +2 -0
  763. package/typings/packages/subscriptions-manager/src/components/ShowMore/ShowMore.d.ts +8 -0
  764. package/typings/packages/subscriptions-manager/src/components/ShowMore/ShowMore.styles.d.ts +2 -0
  765. package/typings/packages/subscriptions-manager/src/components/ShowMore/index.d.ts +2 -0
  766. package/typings/packages/subscriptions-manager/src/components/Subscription/Subscription.d.ts +32 -0
  767. package/typings/packages/subscriptions-manager/src/components/Subscription/Subscription.styles.d.ts +5 -0
  768. package/typings/packages/subscriptions-manager/src/components/Subscription/index.d.ts +4 -0
  769. package/typings/packages/subscriptions-manager/src/components/Subscription/motion.d.ts +14 -0
  770. package/typings/packages/subscriptions-manager/src/components/Subscription/types.d.ts +1 -0
  771. package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/SubscriptionComponents.d.ts +17 -0
  772. package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/components/ComponentLoadingSkeleton/ComponentLoadingSkeleton.d.ts +7 -0
  773. package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/components/ComponentLoadingSkeleton/index.d.ts +2 -0
  774. package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/components/index.d.ts +2 -0
  775. package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/index.d.ts +2 -0
  776. package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/types.d.ts +6 -0
  777. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/SubscriptionDetails.d.ts +8 -0
  778. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Active/Active.d.ts +8 -0
  779. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Active/index.d.ts +2 -0
  780. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Canceled/Canceled.d.ts +7 -0
  781. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Canceled/index.d.ts +2 -0
  782. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/CancellationScheduled/CancellationScheduled.d.ts +9 -0
  783. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/CancellationScheduled/index.d.ts +2 -0
  784. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/DetailRow/DetailRow.d.ts +15 -0
  785. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/DetailRow/DetailRow.styles.d.ts +3 -0
  786. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/DetailRow/index.d.ts +2 -0
  787. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Expired/Expired.d.ts +7 -0
  788. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Expired/index.d.ts +2 -0
  789. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Notification/Notification.d.ts +8 -0
  790. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Notification/index.d.ts +2 -0
  791. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/OnHold/OnHold.d.ts +7 -0
  792. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/OnHold/index.d.ts +2 -0
  793. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/PastDue/PastDue.d.ts +8 -0
  794. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/PastDue/index.d.ts +2 -0
  795. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Trial/Trial.d.ts +9 -0
  796. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Trial/index.d.ts +2 -0
  797. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/TrialExpired/TrialExpired.d.ts +6 -0
  798. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/TrialExpired/index.d.ts +2 -0
  799. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Unpaid/Unpaid.d.ts +7 -0
  800. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Unpaid/index.d.ts +2 -0
  801. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/index.d.ts +11 -0
  802. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/index.d.ts +2 -0
  803. package/typings/packages/subscriptions-manager/src/components/SubscriptionManagerLoader/SubscriptionManagerLoader.d.ts +3 -0
  804. package/typings/packages/subscriptions-manager/src/components/SubscriptionManagerLoader/index.d.ts +2 -0
  805. package/typings/packages/subscriptions-manager/src/components/index.d.ts +11 -0
  806. package/typings/packages/subscriptions-manager/src/containers/BilingDetailsContainer/BilingDetailsContainer.d.ts +9 -0
  807. package/typings/packages/subscriptions-manager/src/containers/BilingDetailsContainer/BilingDetailsContainer.styles.d.ts +1 -0
  808. package/typings/packages/subscriptions-manager/src/containers/BilingDetailsContainer/index.d.ts +2 -0
  809. package/typings/packages/subscriptions-manager/src/containers/ComponentContainer/ComponentContainer.d.ts +8 -0
  810. package/typings/packages/subscriptions-manager/src/containers/ComponentContainer/index.d.ts +2 -0
  811. package/typings/packages/subscriptions-manager/src/containers/ComponentsAllocationContainer/ComponentsAllocationContainer.d.ts +9 -0
  812. package/typings/packages/subscriptions-manager/src/containers/ComponentsAllocationContainer/index.d.ts +2 -0
  813. package/typings/packages/subscriptions-manager/src/containers/ComponentsContainer/ComponentsContainer.d.ts +7 -0
  814. package/typings/packages/subscriptions-manager/src/containers/ComponentsContainer/ComponentsContainer.styles.d.ts +2 -0
  815. package/typings/packages/subscriptions-manager/src/containers/ComponentsContainer/index.d.ts +2 -0
  816. package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileContainer/CreatePaymentProfileContainer.d.ts +9 -0
  817. package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileContainer/index.d.ts +2 -0
  818. package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileErrorContainer/CreatePaymentProfileErrorContainer.d.ts +7 -0
  819. package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileErrorContainer/index.d.ts +2 -0
  820. package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileErrorContainer/types.d.ts +5 -0
  821. package/typings/packages/subscriptions-manager/src/containers/CustomFieldsContainer/CustomFieldsContainer.d.ts +7 -0
  822. package/typings/packages/subscriptions-manager/src/containers/CustomFieldsContainer/index.d.ts +2 -0
  823. package/typings/packages/subscriptions-manager/src/containers/ModalsContainer/ModalsContainer.d.ts +2 -0
  824. package/typings/packages/subscriptions-manager/src/containers/ModalsContainer/index.d.ts +2 -0
  825. package/typings/packages/subscriptions-manager/src/containers/PaymentProfileContainer/PaymentProfileContainer.d.ts +13 -0
  826. package/typings/packages/subscriptions-manager/src/containers/PaymentProfileContainer/constants.d.ts +3 -0
  827. package/typings/packages/subscriptions-manager/src/containers/PaymentProfileContainer/index.d.ts +2 -0
  828. package/typings/packages/subscriptions-manager/src/containers/PaymentProfileContainer/utils.d.ts +5 -0
  829. package/typings/packages/subscriptions-manager/src/containers/PaymentProfilesContainer/PaymentProfilesContainer.d.ts +7 -0
  830. package/typings/packages/subscriptions-manager/src/containers/PaymentProfilesContainer/fixture.d.ts +2 -0
  831. package/typings/packages/subscriptions-manager/src/containers/PaymentProfilesContainer/index.d.ts +2 -0
  832. package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/SubscriptionContainer.d.ts +13 -0
  833. package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/constants.d.ts +3 -0
  834. package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/hooks/index.d.ts +3 -0
  835. package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/hooks/useSubscriptionAvailableActions.d.ts +10 -0
  836. package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/hooks/useSubscriptionIsActive.d.ts +2 -0
  837. package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/index.d.ts +2 -0
  838. package/typings/packages/subscriptions-manager/src/containers/SubscriptionsContainer/SubscriptionsContainer.d.ts +8 -0
  839. package/typings/packages/subscriptions-manager/src/containers/SubscriptionsContainer/SubscriptionsContainer.styles.d.ts +2 -0
  840. package/typings/packages/subscriptions-manager/src/containers/SubscriptionsContainer/index.d.ts +2 -0
  841. package/typings/packages/subscriptions-manager/src/containers/index.d.ts +11 -0
  842. package/typings/packages/subscriptions-manager/src/contexts/ComponentsContext.d.ts +4 -0
  843. package/typings/packages/subscriptions-manager/src/contexts/ConfigContext.d.ts +3 -0
  844. package/typings/packages/subscriptions-manager/src/contexts/GlobalStateContext.d.ts +8 -0
  845. package/typings/packages/subscriptions-manager/src/contexts/PaymentProfilesContext.d.ts +8 -0
  846. package/typings/packages/subscriptions-manager/src/contexts/index.d.ts +5 -0
  847. package/typings/packages/subscriptions-manager/src/handlers/constants.d.ts +1 -0
  848. package/typings/packages/subscriptions-manager/src/handlers/gatewayConfig.d.ts +1 -0
  849. package/typings/packages/subscriptions-manager/src/handlers/index.d.ts +6 -0
  850. package/typings/packages/subscriptions-manager/src/handlers/paymentProfiles.d.ts +1 -0
  851. package/typings/packages/subscriptions-manager/src/handlers/product.d.ts +1 -0
  852. package/typings/packages/subscriptions-manager/src/handlers/subscription.d.ts +1 -0
  853. package/typings/packages/subscriptions-manager/src/hooks/index.d.ts +18 -0
  854. package/typings/packages/subscriptions-manager/src/hooks/useAddonsConfigurationService.d.ts +5 -0
  855. package/typings/packages/subscriptions-manager/src/hooks/useAvailablePaymentMethods.d.ts +2 -0
  856. package/typings/packages/subscriptions-manager/src/hooks/useCancelSubscriptionService.d.ts +4 -0
  857. package/typings/packages/subscriptions-manager/src/hooks/useChangePaymentProfile.d.ts +11 -0
  858. package/typings/packages/subscriptions-manager/src/hooks/useComponentSettings.d.ts +1 -0
  859. package/typings/packages/subscriptions-manager/src/hooks/useCreatePaymentProfile/index.d.ts +2 -0
  860. package/typings/packages/subscriptions-manager/src/hooks/useCreatePaymentProfile/serializeErrors.d.ts +11 -0
  861. package/typings/packages/subscriptions-manager/src/hooks/useCreatePaymentProfile/useCreatePaymentProfile.d.ts +21 -0
  862. package/typings/packages/subscriptions-manager/src/hooks/useDataAccess.d.ts +3 -0
  863. package/typings/packages/subscriptions-manager/src/hooks/useDeletePaymentProfile.d.ts +9 -0
  864. package/typings/packages/subscriptions-manager/src/hooks/useFormatSubscriptionDetails.d.ts +24 -0
  865. package/typings/packages/subscriptions-manager/src/hooks/usePauseSubscriptionService.d.ts +5 -0
  866. package/typings/packages/subscriptions-manager/src/hooks/usePaymentProfileAvailableActions/index.d.ts +2 -0
  867. package/typings/packages/subscriptions-manager/src/hooks/usePaymentProfileAvailableActions/usePaymentProfileAvailableActions.d.ts +7 -0
  868. package/typings/packages/subscriptions-manager/src/hooks/useReactivateSubscription.d.ts +4 -0
  869. package/typings/packages/subscriptions-manager/src/hooks/useResumeSubscriptionService.d.ts +5 -0
  870. package/typings/packages/subscriptions-manager/src/hooks/useServices.d.ts +6 -0
  871. package/typings/packages/subscriptions-manager/src/hooks/useSortPaymentProfiles/constants.d.ts +4 -0
  872. package/typings/packages/subscriptions-manager/src/hooks/useSortPaymentProfiles/index.d.ts +2 -0
  873. package/typings/packages/subscriptions-manager/src/hooks/useSortPaymentProfiles/useSortPaymentProfiles.d.ts +5 -0
  874. package/typings/packages/subscriptions-manager/src/hooks/useSubscriptionStatus.d.ts +8 -0
  875. package/typings/packages/subscriptions-manager/src/hooks/useUndoCancelationService.d.ts +4 -0
  876. package/typings/packages/subscriptions-manager/src/index.d.ts +4 -0
  877. package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/actions.d.ts +5 -0
  878. package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/index.d.ts +5 -0
  879. package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/machine.d.ts +6 -0
  880. package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/selectors.d.ts +42 -0
  881. package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/serialize.d.ts +3 -0
  882. package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/types.d.ts +97 -0
  883. package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/utils/getPriceRange.d.ts +8 -0
  884. package/typings/packages/subscriptions-manager/src/machines/cancelSubscription/cancelSubscription.d.ts +5 -0
  885. package/typings/packages/subscriptions-manager/src/machines/cancelSubscription/index.d.ts +4 -0
  886. package/typings/packages/subscriptions-manager/src/machines/cancelSubscription/selectors.d.ts +25 -0
  887. package/typings/packages/subscriptions-manager/src/machines/cancelSubscription/types.d.ts +31 -0
  888. package/typings/packages/subscriptions-manager/src/machines/changePaymentProfile/changePaymentProfile.d.ts +5 -0
  889. package/typings/packages/subscriptions-manager/src/machines/changePaymentProfile/index.d.ts +4 -0
  890. package/typings/packages/subscriptions-manager/src/machines/changePaymentProfile/selectors.d.ts +21 -0
  891. package/typings/packages/subscriptions-manager/src/machines/changePaymentProfile/types.d.ts +16 -0
  892. package/typings/packages/subscriptions-manager/src/machines/component/component.d.ts +4 -0
  893. package/typings/packages/subscriptions-manager/src/machines/component/index.d.ts +3 -0
  894. package/typings/packages/subscriptions-manager/src/machines/component/selectors.d.ts +10 -0
  895. package/typings/packages/subscriptions-manager/src/machines/component/types.d.ts +4 -0
  896. package/typings/packages/subscriptions-manager/src/machines/components/components.d.ts +5 -0
  897. package/typings/packages/subscriptions-manager/src/machines/components/index.d.ts +5 -0
  898. package/typings/packages/subscriptions-manager/src/machines/components/selectors/getComponentsUpdatesAllowed.d.ts +4 -0
  899. package/typings/packages/subscriptions-manager/src/machines/components/selectors/getComponentsUsedInBilling.d.ts +12 -0
  900. package/typings/packages/subscriptions-manager/src/machines/components/selectors.d.ts +33 -0
  901. package/typings/packages/subscriptions-manager/src/machines/components/types.d.ts +16 -0
  902. package/typings/packages/subscriptions-manager/src/machines/components/utils/checkIfComponentIsUsedForBilling.d.ts +2 -0
  903. package/typings/packages/subscriptions-manager/src/machines/components/utils/index.d.ts +2 -0
  904. package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/actions.d.ts +12 -0
  905. package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/createPaymentProfile.d.ts +7 -0
  906. package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/index.d.ts +6 -0
  907. package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/selectors.d.ts +201 -0
  908. package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/serializers.d.ts +48 -0
  909. package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/types.d.ts +58 -0
  910. package/typings/packages/subscriptions-manager/src/machines/customFields/customFields.d.ts +5 -0
  911. package/typings/packages/subscriptions-manager/src/machines/customFields/selectors.d.ts +27 -0
  912. package/typings/packages/subscriptions-manager/src/machines/customFields/types.d.ts +5 -0
  913. package/typings/packages/subscriptions-manager/src/machines/deletePaymentProfile/deletePaymentProfile.d.ts +5 -0
  914. package/typings/packages/subscriptions-manager/src/machines/deletePaymentProfile/index.d.ts +5 -0
  915. package/typings/packages/subscriptions-manager/src/machines/deletePaymentProfile/selectors.d.ts +23 -0
  916. package/typings/packages/subscriptions-manager/src/machines/deletePaymentProfile/types.d.ts +15 -0
  917. package/typings/packages/subscriptions-manager/src/machines/index.d.ts +13 -0
  918. package/typings/packages/subscriptions-manager/src/machines/modals/index.d.ts +5 -0
  919. package/typings/packages/subscriptions-manager/src/machines/modals/modals.d.ts +5 -0
  920. package/typings/packages/subscriptions-manager/src/machines/modals/selectors.d.ts +155 -0
  921. package/typings/packages/subscriptions-manager/src/machines/modals/types.d.ts +96 -0
  922. package/typings/packages/subscriptions-manager/src/machines/pauseSubscription/index.d.ts +4 -0
  923. package/typings/packages/subscriptions-manager/src/machines/pauseSubscription/pauseSubscription.d.ts +5 -0
  924. package/typings/packages/subscriptions-manager/src/machines/pauseSubscription/selectors.d.ts +25 -0
  925. package/typings/packages/subscriptions-manager/src/machines/pauseSubscription/types.d.ts +29 -0
  926. package/typings/packages/subscriptions-manager/src/machines/paymentGateway/index.d.ts +5 -0
  927. package/typings/packages/subscriptions-manager/src/machines/paymentGateway/paymentGateway.d.ts +7 -0
  928. package/typings/packages/subscriptions-manager/src/machines/paymentGateway/selectors.d.ts +39 -0
  929. package/typings/packages/subscriptions-manager/src/machines/paymentGateway/types.d.ts +22 -0
  930. package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/actions.d.ts +4 -0
  931. package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/index.d.ts +4 -0
  932. package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/paymentProfiles.d.ts +7 -0
  933. package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/selectors.d.ts +19 -0
  934. package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/serializers.d.ts +12 -0
  935. package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/types.d.ts +30 -0
  936. package/typings/packages/subscriptions-manager/src/machines/productCatalog/actions.d.ts +3 -0
  937. package/typings/packages/subscriptions-manager/src/machines/productCatalog/index.d.ts +5 -0
  938. package/typings/packages/subscriptions-manager/src/machines/productCatalog/productCatalog.d.ts +6 -0
  939. package/typings/packages/subscriptions-manager/src/machines/productCatalog/selectors.d.ts +23 -0
  940. package/typings/packages/subscriptions-manager/src/machines/productCatalog/types.d.ts +20 -0
  941. package/typings/packages/subscriptions-manager/src/machines/reactivateSubscription/index.d.ts +4 -0
  942. package/typings/packages/subscriptions-manager/src/machines/reactivateSubscription/reactivateSubscription.d.ts +5 -0
  943. package/typings/packages/subscriptions-manager/src/machines/reactivateSubscription/selectors.d.ts +31 -0
  944. package/typings/packages/subscriptions-manager/src/machines/reactivateSubscription/types.d.ts +23 -0
  945. package/typings/packages/subscriptions-manager/src/machines/resumeSubscription/index.d.ts +4 -0
  946. package/typings/packages/subscriptions-manager/src/machines/resumeSubscription/resumeSubscription.d.ts +5 -0
  947. package/typings/packages/subscriptions-manager/src/machines/resumeSubscription/selectors.d.ts +25 -0
  948. package/typings/packages/subscriptions-manager/src/machines/resumeSubscription/types.d.ts +33 -0
  949. package/typings/packages/subscriptions-manager/src/machines/subscription/index.d.ts +3 -0
  950. package/typings/packages/subscriptions-manager/src/machines/subscription/selectors.d.ts +59 -0
  951. package/typings/packages/subscriptions-manager/src/machines/subscription/subscription.d.ts +12 -0
  952. package/typings/packages/subscriptions-manager/src/machines/subscription/types.d.ts +6 -0
  953. package/typings/packages/subscriptions-manager/src/machines/subscriptions/actions.d.ts +81 -0
  954. package/typings/packages/subscriptions-manager/src/machines/subscriptions/constants.d.ts +1 -0
  955. package/typings/packages/subscriptions-manager/src/machines/subscriptions/index.d.ts +7 -0
  956. package/typings/packages/subscriptions-manager/src/machines/subscriptions/selectors.d.ts +107 -0
  957. package/typings/packages/subscriptions-manager/src/machines/subscriptions/serializers.d.ts +16 -0
  958. package/typings/packages/subscriptions-manager/src/machines/subscriptions/subscriptions.d.ts +7 -0
  959. package/typings/packages/subscriptions-manager/src/machines/subscriptions/types.d.ts +48 -0
  960. package/typings/packages/subscriptions-manager/src/machines/undoCancelation/index.d.ts +4 -0
  961. package/typings/packages/subscriptions-manager/src/machines/undoCancelation/selectors.d.ts +25 -0
  962. package/typings/packages/subscriptions-manager/src/machines/undoCancelation/types.d.ts +15 -0
  963. package/typings/packages/subscriptions-manager/src/machines/undoCancelation/undoCancelation.d.ts +5 -0
  964. package/typings/packages/subscriptions-manager/src/mocks/allocation.d.ts +36 -0
  965. package/typings/packages/subscriptions-manager/src/mocks/components.d.ts +2 -0
  966. package/typings/packages/subscriptions-manager/src/mocks/customFields.d.ts +2 -0
  967. package/typings/packages/subscriptions-manager/src/mocks/gatewayConfig.d.ts +2 -0
  968. package/typings/packages/subscriptions-manager/src/mocks/index.d.ts +7 -0
  969. package/typings/packages/subscriptions-manager/src/mocks/paymentProfiles.d.ts +3 -0
  970. package/typings/packages/subscriptions-manager/src/mocks/products.d.ts +6 -0
  971. package/typings/packages/subscriptions-manager/src/mocks/subscriptions.d.ts +3 -0
  972. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/CancelSubscription.d.ts +3 -0
  973. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/ChurnResonCodes/ChurnReasonCodes.d.ts +8 -0
  974. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/ChurnResonCodes/ChurnReasonCodes.styles.d.ts +1 -0
  975. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/ChurnResonCodes/index.d.ts +2 -0
  976. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Content/Content.d.ts +12 -0
  977. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Content/Content.styles.d.ts +2 -0
  978. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Content/index.d.ts +2 -0
  979. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Form/Form.d.ts +14 -0
  980. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Form/index.d.ts +2 -0
  981. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/index.d.ts +3 -0
  982. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/constants.d.ts +5 -0
  983. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/hooks/index.d.ts +2 -0
  984. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/hooks/useCancelAvailableOptions.d.ts +3 -0
  985. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/hooks/useCancelForm.d.ts +11 -0
  986. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/index.d.ts +2 -0
  987. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/machines/cancelForm.d.ts +5 -0
  988. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/machines/index.d.ts +2 -0
  989. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/machines/types.d.ts +20 -0
  990. package/typings/packages/subscriptions-manager/src/modals/ChangePaymentMethod/ChangePaymentMethod.d.ts +3 -0
  991. package/typings/packages/subscriptions-manager/src/modals/ChangePaymentMethod/Content/Content.d.ts +10 -0
  992. package/typings/packages/subscriptions-manager/src/modals/ChangePaymentMethod/Content/index.d.ts +2 -0
  993. package/typings/packages/subscriptions-manager/src/modals/ChangePaymentMethod/index.d.ts +2 -0
  994. package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/ComponentsAllocation.d.ts +3 -0
  995. package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/components/Content/Content.d.ts +9 -0
  996. package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/components/Content/index.d.ts +2 -0
  997. package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/components/index.d.ts +2 -0
  998. package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/index.d.ts +2 -0
  999. package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/CreatePaymentProfile.d.ts +3 -0
  1000. package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/components/Content/Content.d.ts +12 -0
  1001. package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/components/Content/constants.d.ts +1 -0
  1002. package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/components/Content/index.d.ts +2 -0
  1003. package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/components/index.d.ts +2 -0
  1004. package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/index.d.ts +2 -0
  1005. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/Content/Content.d.ts +8 -0
  1006. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/Content/constants.d.ts +1 -0
  1007. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/Content/index.d.ts +2 -0
  1008. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/DeletePaymentMethod.d.ts +3 -0
  1009. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/ErrorList/ErrorList.d.ts +10 -0
  1010. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/ErrorList/ErrorList.styles.d.ts +1 -0
  1011. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/ErrorList/index.d.ts +2 -0
  1012. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/index.d.ts +2 -0
  1013. package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/PauseSubscription.d.ts +3 -0
  1014. package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/components/Content/Content.d.ts +9 -0
  1015. package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/components/Content/index.d.ts +2 -0
  1016. package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/components/index.d.ts +2 -0
  1017. package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/index.d.ts +2 -0
  1018. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/BillingAddress/BillingAddress.d.ts +7 -0
  1019. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/BillingAddress/index.d.ts +2 -0
  1020. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/Content/Content.d.ts +10 -0
  1021. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/Content/index.d.ts +2 -0
  1022. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/DetailsRow/DetailsRow.d.ts +7 -0
  1023. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/DetailsRow/index.d.ts +2 -0
  1024. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/PreviewPaymentMethod.d.ts +3 -0
  1025. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/index.d.ts +2 -0
  1026. package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/ReactivateSubscription.d.ts +3 -0
  1027. package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/components/Content/Content.d.ts +9 -0
  1028. package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/components/Content/index.d.ts +2 -0
  1029. package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/components/index.d.ts +2 -0
  1030. package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/index.d.ts +2 -0
  1031. package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/ResumeSubscription.d.ts +3 -0
  1032. package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/components/Content/Content.d.ts +10 -0
  1033. package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/components/Content/index.d.ts +2 -0
  1034. package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/components/Content/utils.d.ts +10 -0
  1035. package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/components/index.d.ts +2 -0
  1036. package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/index.d.ts +2 -0
  1037. package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/UndoCancelation.d.ts +3 -0
  1038. package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/components/Content/Content.d.ts +9 -0
  1039. package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/components/Content/index.d.ts +2 -0
  1040. package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/components/index.d.ts +2 -0
  1041. package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/index.d.ts +2 -0
  1042. package/typings/packages/subscriptions-manager/src/modals/index.d.ts +11 -0
  1043. package/typings/packages/subscriptions-manager/src/modals/setupTest/index.d.ts +2 -0
  1044. package/typings/packages/subscriptions-manager/src/modals/setupTest/modalTestRenderer.d.ts +7 -0
  1045. package/typings/packages/subscriptions-manager/src/models/component/component.d.ts +3 -0
  1046. package/typings/packages/subscriptions-manager/src/models/component/index.d.ts +4 -0
  1047. package/typings/packages/subscriptions-manager/src/models/component/types.d.ts +66 -0
  1048. package/typings/packages/subscriptions-manager/src/models/index.d.ts +7 -0
  1049. package/typings/packages/subscriptions-manager/src/models/paymentProfile/index.d.ts +3 -0
  1050. package/typings/packages/subscriptions-manager/src/models/paymentProfile/types.d.ts +43 -0
  1051. package/typings/packages/subscriptions-manager/src/models/subscription/constants.d.ts +2 -0
  1052. package/typings/packages/subscriptions-manager/src/models/subscription/index.d.ts +8 -0
  1053. package/typings/packages/subscriptions-manager/src/models/subscription/serialize.d.ts +2 -0
  1054. package/typings/packages/subscriptions-manager/src/models/subscription/subscription.d.ts +10 -0
  1055. package/typings/packages/subscriptions-manager/src/models/subscription/types.d.ts +72 -0
  1056. package/typings/packages/subscriptions-manager/src/pages/ComponentsAllocation/ComponentsAllocation.d.ts +3 -0
  1057. package/typings/packages/subscriptions-manager/src/pages/ComponentsAllocation/index.d.ts +2 -0
  1058. package/typings/packages/subscriptions-manager/src/pages/CustomFields/CustomFields.d.ts +3 -0
  1059. package/typings/packages/subscriptions-manager/src/pages/CustomFields/index.d.ts +2 -0
  1060. package/typings/packages/subscriptions-manager/src/pages/PaymentProfiles/PaymentProfiles.d.ts +3 -0
  1061. package/typings/packages/subscriptions-manager/src/pages/PaymentProfiles/index.d.ts +2 -0
  1062. package/typings/packages/subscriptions-manager/src/pages/Subscription/Subscription.d.ts +3 -0
  1063. package/typings/packages/subscriptions-manager/src/pages/Subscription/index.d.ts +2 -0
  1064. package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/SubscriptionsList.d.ts +3 -0
  1065. package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/hooks/index.d.ts +3 -0
  1066. package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/hooks/useProductCatalog.d.ts +7 -0
  1067. package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/hooks/useSubscriptions.d.ts +6 -0
  1068. package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/index.d.ts +2 -0
  1069. package/typings/packages/subscriptions-manager/src/pages/index.d.ts +6 -0
  1070. package/typings/packages/subscriptions-manager/src/providers/PaymentProfilesProvider.d.ts +6 -0
  1071. package/typings/packages/subscriptions-manager/src/providers/StateProvider.d.ts +6 -0
  1072. package/typings/packages/subscriptions-manager/src/providers/index.d.ts +3 -0
  1073. package/typings/packages/subscriptions-manager/src/settings.d.ts +2 -0
  1074. package/typings/packages/subscriptions-manager/src/types.d.ts +23 -0
  1075. package/typings/packages/subscriptions-manager/src/utils/getComponentsAllocationErrorDescription.d.ts +3 -0
  1076. package/typings/packages/subscriptions-manager/src/utils/index.d.ts +4 -0
  1077. package/typings/packages/subscriptions-manager/src/utils/mergeComponentsWithAllocations.d.ts +2 -0
  1078. package/typings/packages/subscriptions-manager/src/utils/sortSubscriptions.d.ts +2 -0
  1079. package/typings/packages/toasts/index.d.ts +1 -0
  1080. package/typings/packages/toasts/src/ToastsPlayground.d.ts +3 -0
  1081. package/typings/packages/toasts/src/containers/ToastsContainer/ToastsContainer.d.ts +6 -0
  1082. package/typings/packages/toasts/src/containers/ToastsContainer/ToastsContainer.styles.d.ts +3 -0
  1083. package/typings/packages/toasts/src/containers/ToastsContainer/index.d.ts +2 -0
  1084. package/typings/packages/toasts/src/containers/ToastsContainer/motion.d.ts +16 -0
  1085. package/typings/packages/toasts/src/containers/index.d.ts +2 -0
  1086. package/typings/packages/toasts/src/contexts/ToastMessagesContext.d.ts +5 -0
  1087. package/typings/packages/toasts/src/contexts/index.d.ts +2 -0
  1088. package/typings/packages/toasts/src/hooks/index.d.ts +2 -0
  1089. package/typings/packages/toasts/src/hooks/useToastMessages.d.ts +1 -0
  1090. package/typings/packages/toasts/src/index.d.ts +3 -0
  1091. package/typings/packages/toasts/src/machines/index.d.ts +2 -0
  1092. package/typings/packages/toasts/src/machines/toast/index.d.ts +2 -0
  1093. package/typings/packages/toasts/src/machines/toast/toast.d.ts +8 -0
  1094. package/typings/packages/toasts/src/machines/toast/types.d.ts +6 -0
  1095. package/typings/packages/toasts/src/machines/toasts/constants.d.ts +1 -0
  1096. package/typings/packages/toasts/src/machines/toasts/index.d.ts +2 -0
  1097. package/typings/packages/toasts/src/machines/toasts/toasts.d.ts +5 -0
  1098. package/typings/packages/toasts/src/machines/toasts/types.d.ts +23 -0
  1099. package/typings/packages/toasts/src/types.d.ts +8 -0
  1100. package/typings/packages/toasts/src/utils/index.d.ts +2 -0
  1101. package/typings/packages/toasts/src/utils/setNotificationsPosition.d.ts +2 -0
  1102. package/typings/sdk/components-sdk/src/SDK.d.ts +30 -0
  1103. package/typings/sdk/components-sdk/src/constants.d.ts +2 -0
  1104. package/typings/sdk/components-sdk/src/index.d.ts +2 -0
  1105. package/typings/sdk/components-sdk/src/settings.d.ts +2 -0
  1106. package/typings/sdk/components-sdk/src/types.d.ts +5 -0
  1107. package/typings/sdk/components-sdk/src/utils/createComponentFactory.d.ts +9 -0
package/package.json ADDED
@@ -0,0 +1,186 @@
1
+ {
2
+ "name": "@maxio-com/self-service",
3
+ "packageManager": "pnpm@7.0.1",
4
+ "main": "dist/maxio-components.cjs.js",
5
+ "module": "dist/maxio-components.esm.js",
6
+ "browser": "dist/maxio-components.umd.js",
7
+ "types": "typings/sdk/components-sdk/src/index.d.ts",
8
+ "version": "1.0.2",
9
+ "scripts": {
10
+ "test": "jest",
11
+ "test:coverage": "jest --coverage",
12
+ "storybook": "start-storybook -p 6006",
13
+ "build-storybook": "build-storybook",
14
+ "prettier": "prettier --write '{sdk,packages}/**/*.{js,ts,tsx,json}'",
15
+ "commit": "npx git-cz",
16
+ "clean": "npx rimraf dist",
17
+ "build": "pnpm run clean && pnpm run build:browser && pnpm run build:modules",
18
+ "build:modules": "npx rollup --configPlugin @rollup/plugin-typescript --config rollup.config.ts",
19
+ "build:browser": "npx webpack --config webpack.browser.js",
20
+ "dpdm": "npx dpdm packages/**/**/*.{ts,tsx} -T --exit-code circular:1 --no-warning --no-tree",
21
+ "lint": "eslint --quiet --ext .ts --ext .tsx packages/ sdk/",
22
+ "release": "npx semantic-release"
23
+ },
24
+ "files": [
25
+ "dist",
26
+ "typings",
27
+ "package.json"
28
+ ],
29
+ "devDependencies": {
30
+ "@babel/core": "^7.19.1",
31
+ "@babel/plugin-transform-runtime": "^7.19.1",
32
+ "@babel/preset-env": "^7.19.1",
33
+ "@babel/preset-react": "^7.18.6",
34
+ "@commitlint/cli": "^13.1.0",
35
+ "@commitlint/config-conventional": "^13.1.0",
36
+ "@mdx-js/react": "^1.6.22",
37
+ "@quickbaseoss/babel-plugin-styled-components-css-namespace": "^1.0.1",
38
+ "@rollup/plugin-babel": "^5.3.1",
39
+ "@rollup/plugin-commonjs": "^22.0.2",
40
+ "@rollup/plugin-node-resolve": "^13.3.0",
41
+ "@rollup/plugin-replace": "^4.0.0",
42
+ "@rollup/plugin-typescript": "^8.5.0",
43
+ "@semantic-release/git": "^10.0.1",
44
+ "@semantic-release/npm": "^9.0.1",
45
+ "@storybook/addon-actions": "^6.5.12",
46
+ "@storybook/addon-docs": "^6.5.12",
47
+ "@storybook/addon-essentials": "^6.5.12",
48
+ "@storybook/addon-links": "^6.5.12",
49
+ "@storybook/builder-webpack5": "^6.5.12",
50
+ "@storybook/manager-webpack5": "^6.5.12",
51
+ "@storybook/react": "^6.5.12",
52
+ "@testing-library/jest-dom": "^5.16.5",
53
+ "@testing-library/react": "^13.4.0",
54
+ "@testing-library/user-event": "^13.5.0",
55
+ "@types/jest": "^29.0.3",
56
+ "@types/node": "^17.0.45",
57
+ "@types/testing-library__jest-dom": "^5.14.5",
58
+ "@typescript-eslint/eslint-plugin": "^5.37.0",
59
+ "@typescript-eslint/parser": "^5.37.0",
60
+ "@xstate/inspect": "^0.5.2",
61
+ "babel-loader": "^8.2.2",
62
+ "babel-plugin-styled-components": "2.0.2",
63
+ "browserslist": "^4.21.4",
64
+ "commitizen": "^4.2.5",
65
+ "csstype": "^3.1.1",
66
+ "dpdm": "^3.10.0",
67
+ "eslint": "^8.17.0",
68
+ "eslint-config-prettier": "^8.3.0",
69
+ "eslint-plugin-prettier": "^4.0.0",
70
+ "eslint-plugin-react": "^7.25.1",
71
+ "eslint-plugin-react-hooks": "^4.2.0",
72
+ "git-cz": "^4.7.6",
73
+ "husky": "^7.0.2",
74
+ "isomorphic-fetch": "^3.0.0",
75
+ "jest": "^29.0.3",
76
+ "jest-circus": "^29.0.3",
77
+ "jest-environment-jsdom": "^29.0.3",
78
+ "jest-fetch-mock": "^3.0.3",
79
+ "jest-styled-components": "^7.1.1",
80
+ "lint-staged": "^11.1.2",
81
+ "mockdate": "^3.0.5",
82
+ "msw": "^0.36.7",
83
+ "prettier": "^2.4.0",
84
+ "react": "^18.2.0",
85
+ "react-dom": "^18.2.0",
86
+ "react-is": "^18.2.0",
87
+ "rimraf": "^3.0.2",
88
+ "rollup": "^2.79.0",
89
+ "rollup-plugin-peer-deps-external": "^2.2.4",
90
+ "rollup-plugin-progress": "^1.1.2",
91
+ "rollup-plugin-typescript2": "^0.32.1",
92
+ "semantic-release": "^19.0.3",
93
+ "semantic-release-cli": "^5.4.4",
94
+ "styled-components": "^5.3.5",
95
+ "styled-system": "^5.1.5",
96
+ "ts-dedent": "^2.2.0",
97
+ "ts-jest": "^29.0.1",
98
+ "ts-loader": "^9.3.1",
99
+ "tsconfig-paths-webpack-plugin": "^3.5.2",
100
+ "tslib": "^2.4.0",
101
+ "ttypescript": "^1.5.13",
102
+ "typescript": "^4.8.3",
103
+ "typescript-transform-paths": "^3.3.1",
104
+ "webpack": "^5.74.0",
105
+ "webpack-cli": "^4.9.2"
106
+ },
107
+ "dependencies": {
108
+ "@babel/preset-typescript": "^7.18.6",
109
+ "@babel/runtime": "^7.19.0",
110
+ "@fortawesome/fontawesome-svg-core": "^6.2.0",
111
+ "@fortawesome/free-regular-svg-icons": "^6.2.0",
112
+ "@fortawesome/free-solid-svg-icons": "^6.2.0",
113
+ "@fortawesome/react-fontawesome": "^0.1.19",
114
+ "@styled-system/theme-get": "^5.1.2",
115
+ "@tippyjs/react": "^4.2.6",
116
+ "@types/file-saver": "^2.0.5",
117
+ "@types/react": "^18.0.20",
118
+ "@types/react-calendar": "^3.5.2",
119
+ "@types/react-dom": "^18.0.6",
120
+ "@types/react-helmet": "^6.1.5",
121
+ "@types/react-responsive": "^8.0.5",
122
+ "@types/react-table": "^7.7.10",
123
+ "@types/styled-components": "^5.1.26",
124
+ "@types/styled-system": "^5.1.13",
125
+ "@types/uuid": "^8.3.4",
126
+ "@types/yup": "^0.29.13",
127
+ "@xstate/react": "^3.0.1",
128
+ "camelcase": "^6.3.0",
129
+ "camelcase-keys": "^7.0.1",
130
+ "dayjs": "^1.11.5",
131
+ "deepmerge": "^4.2.2",
132
+ "file-saver": "^2.0.5",
133
+ "framer-motion": "^7.3.5",
134
+ "history": "^5.3.0",
135
+ "i18next": "^21.9.1",
136
+ "i18next-http-backend": "^1.3.1",
137
+ "js-logger": "^1.6.1",
138
+ "jwt-decode": "^3.1.2",
139
+ "polished": "^4.1.3",
140
+ "print-js": "^1.6.0",
141
+ "query-string": "^7.1.1",
142
+ "react-calendar": "^3.8.0",
143
+ "react-fit": "^1.4.0",
144
+ "react-helmet": "^6.1.0",
145
+ "react-i18next": "^11.18.6",
146
+ "react-intersection-observer": "^8.33.1",
147
+ "react-responsive": "^8.0.0",
148
+ "react-router-dom": "^6.2.2",
149
+ "react-table": "^7.7.0",
150
+ "snakecase-keys": "^5.4.4",
151
+ "styled-system": "^5",
152
+ "tippy.js": "^6.3.7",
153
+ "type-fest": "^2.19.0",
154
+ "uuid": "^8.3.2",
155
+ "xstate": "^4.33.6",
156
+ "yup": "^0.32.11"
157
+ },
158
+ "peerDependencies": {
159
+ "framer-motion": "^7",
160
+ "react": "^18",
161
+ "react-dom": "^18",
162
+ "styled-components": "^5"
163
+ },
164
+ "husky": {
165
+ "hooks": {
166
+ "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
167
+ "pre-commit": "lint-staged"
168
+ }
169
+ },
170
+ "lint-staged": {
171
+ "*.{ts,tsx}": [
172
+ "pnpm run dpdm",
173
+ "pnpm run prettier",
174
+ "eslint --fix",
175
+ "git add *"
176
+ ]
177
+ },
178
+ "config": {
179
+ "commitizen": {
180
+ "path": "./node_modules/cz-conventional-changelog"
181
+ }
182
+ },
183
+ "publishConfig": {
184
+ "access": "public"
185
+ }
186
+ }
@@ -0,0 +1 @@
1
+ export * from './src';
@@ -0,0 +1,18 @@
1
+ /// <reference types="react" />
2
+ import { SelectOptionType } from "../../../../custom-ui-components/src";
3
+ declare type SelectFieldProps = {
4
+ value: string | number;
5
+ label: string;
6
+ name: string;
7
+ options: SelectOptionType[];
8
+ error?: string;
9
+ required?: boolean;
10
+ placeholder?: string;
11
+ onChange: (value: string | number) => void;
12
+ onValidateField: (value: string | number) => void;
13
+ isLoadingOptions?: boolean;
14
+ selectOptionLabel: string;
15
+ searchLabel: string;
16
+ };
17
+ declare const SelectField: ({ value, label, name, options, error, required, placeholder, onChange, onValidateField, selectOptionLabel, searchLabel, isLoadingOptions, }: SelectFieldProps) => JSX.Element;
18
+ export default SelectField;
@@ -0,0 +1,5 @@
1
+ import { MarginProps } from 'styled-system';
2
+ import { InputMessageType } from "../../../../custom-ui-components/src";
3
+ export declare const MessageContainer: import("styled-components").StyledComponent<"div", any, {
4
+ type: InputMessageType;
5
+ } & MarginProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>>, never>;
@@ -0,0 +1,2 @@
1
+ import SelectField from './SelectField';
2
+ export default SelectField;
@@ -0,0 +1,2 @@
1
+ import SelectField from './SelectField';
2
+ export { SelectField };
@@ -0,0 +1,4 @@
1
+ export declare const NO_STATE_OPTION: {
2
+ name: string;
3
+ code: string;
4
+ };
@@ -0,0 +1,16 @@
1
+ /// <reference types="react" />
2
+ import { AddressFields, FieldError } from '../../types';
3
+ import { AddressTranslations, Format } from './types';
4
+ declare type AddressProps = {
5
+ values: AddressFields;
6
+ requiredFields?: string[];
7
+ format?: Format;
8
+ onChange: (name: keyof AddressFields, value: string) => void;
9
+ errors?: {
10
+ [key in keyof AddressFields]?: FieldError;
11
+ };
12
+ onValidateField?: (name: keyof AddressFields, value: string | number) => void;
13
+ translations?: AddressTranslations;
14
+ };
15
+ declare const Address: ({ values, requiredFields, errors, translations, format, onChange, onValidateField, }: AddressProps) => JSX.Element;
16
+ export default Address;
@@ -0,0 +1,4 @@
1
+ import Address from './Address';
2
+ import { AddressTranslations } from './types';
3
+ export default Address;
4
+ export type { AddressTranslations };
@@ -0,0 +1,2 @@
1
+ import { AddressTranslations } from './types';
2
+ export declare const defaultTranslations: AddressTranslations;
@@ -0,0 +1,43 @@
1
+ export declare type AddressTranslations = {
2
+ address: {
3
+ label: string;
4
+ placeholder: string;
5
+ };
6
+ address2: {
7
+ label: string;
8
+ placeholder: string;
9
+ };
10
+ city: {
11
+ label: string;
12
+ placeholder: string;
13
+ };
14
+ state: {
15
+ label: string;
16
+ placeholder: string;
17
+ };
18
+ country: {
19
+ label: string;
20
+ placeholder: string;
21
+ };
22
+ zip: {
23
+ label: string;
24
+ placeholder: string;
25
+ };
26
+ postalCode: {
27
+ label: string;
28
+ placeholder: string;
29
+ };
30
+ region: {
31
+ label: string;
32
+ placeholder: string;
33
+ };
34
+ error: {
35
+ invalid: string;
36
+ required: string;
37
+ };
38
+ input: {
39
+ selectOptionLabel: string;
40
+ searchLabel: string;
41
+ };
42
+ };
43
+ export declare type Format = 'international' | 'us';
@@ -0,0 +1,5 @@
1
+ import { Division } from "../../../../../data-access/src";
2
+ export declare const formatOptions: (options: Division[]) => {
3
+ label: string;
4
+ value: string;
5
+ }[];
@@ -0,0 +1,2 @@
1
+ import { formatOptions } from './formatOptions';
2
+ export { formatOptions };
@@ -0,0 +1,4 @@
1
+ import Address from './Address';
2
+ import type { AddressTranslations } from './Address';
3
+ export { Address };
4
+ export type { AddressTranslations };
@@ -0,0 +1,2 @@
1
+ import { useFormatAddress } from './useFormatAddress';
2
+ export { useFormatAddress };
@@ -0,0 +1,2 @@
1
+ import { AddressFields } from '../types';
2
+ export declare const useFormatAddress: (address: AddressFields) => AddressFields;
@@ -0,0 +1,9 @@
1
+ import { Address } from './containers';
2
+ import type { AddressTranslations } from './containers';
3
+ import { createAddressValidationSchema } from './utils';
4
+ import type { AddressFields } from './types';
5
+ import { addressMachine, addressSelectors } from './machines';
6
+ import { NO_STATE_OPTION } from './constants';
7
+ import { useFormatAddress } from './hooks';
8
+ export { useFormatAddress, Address, createAddressValidationSchema, addressSelectors, addressMachine, NO_STATE_OPTION, };
9
+ export type { AddressFields, AddressTranslations };
@@ -0,0 +1,7 @@
1
+ import { Context, Events } from './types';
2
+ export declare const initialContext: Context;
3
+ declare const addressMachine: import("xstate").StateMachine<Context, any, Events, {
4
+ value: any;
5
+ context: Context;
6
+ }, import("xstate").BaseActionObject, import("xstate").ServiceMap, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, Events, import("xstate").BaseActionObject, import("xstate").ServiceMap>>;
7
+ export { addressMachine };
@@ -0,0 +1,3 @@
1
+ import { addressMachine } from './address';
2
+ import { addressSelectors } from './selectors';
3
+ export { addressMachine, addressSelectors };
@@ -0,0 +1,24 @@
1
+ import { State } from 'xstate';
2
+ import { Division } from "../../../../data-access/src";
3
+ import { addressMachine } from './address';
4
+ declare type AddressMachine = typeof addressMachine;
5
+ declare type AddressState = State<AddressMachine['context']>;
6
+ export declare const getCountries: (machineState: AddressState) => {
7
+ items: Division[];
8
+ isLoading: boolean;
9
+ };
10
+ export declare const getSubdivisions: (machineState: AddressState) => {
11
+ items: Division[];
12
+ isLoading: boolean;
13
+ };
14
+ export declare const addressSelectors: {
15
+ getCountries: (machineState: AddressState) => {
16
+ items: Division[];
17
+ isLoading: boolean;
18
+ };
19
+ getSubdivisions: (machineState: AddressState) => {
20
+ items: Division[];
21
+ isLoading: boolean;
22
+ };
23
+ };
24
+ export {};
@@ -0,0 +1,11 @@
1
+ import { Division } from "../../../../data-access/src";
2
+ export declare type Context = {
3
+ countries: Division[];
4
+ subdivisions: Division[];
5
+ };
6
+ export declare type Events = {
7
+ type: 'FETCH_COUNTRY';
8
+ } | {
9
+ type: 'FETCH_SUBDIVISION';
10
+ country: string;
11
+ };
@@ -0,0 +1,2 @@
1
+ import { addressMachine, addressSelectors } from './address';
2
+ export { addressMachine, addressSelectors };
@@ -0,0 +1,9 @@
1
+ export declare type AddressFields = {
2
+ address: string;
3
+ address2: string;
4
+ city: string;
5
+ state: string;
6
+ country: string;
7
+ zip: string;
8
+ };
9
+ export declare type FieldError = 'required' | 'invalid';
@@ -0,0 +1,17 @@
1
+ import * as yup from 'yup';
2
+ declare const createAddressValidationSchema: (requiredFields?: string[]) => import("yup/lib/object").OptionalObjectSchema<{
3
+ address: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
4
+ address2: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
5
+ city: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
6
+ state: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
7
+ country: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
8
+ zip: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
9
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
10
+ address: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
11
+ address2: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
12
+ city: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
13
+ state: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
14
+ country: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
15
+ zip: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
16
+ }>>;
17
+ export default createAddressValidationSchema;
@@ -0,0 +1,2 @@
1
+ import createAddressValidationSchema from './createValidationSchema';
2
+ export { createAddressValidationSchema };
@@ -0,0 +1 @@
1
+ export * from './src';
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { ComponentSettings } from './types';
3
+ declare const App: ({ visibleColumns, itemsPerPage, paginationVariant, enableFiltering, }: ComponentSettings) => JSX.Element;
4
+ export default App;
@@ -0,0 +1,7 @@
1
+ import { EmbeddableComponent, ComponentOptions } from "../../embeddable-component/src";
2
+ import type { ComponentSettings } from './types';
3
+ declare class BillingHistory extends EmbeddableComponent {
4
+ constructor({ i18n, componentsTheme, sessionManager, dataAccess, }: ComponentOptions);
5
+ render(container: string | HTMLElement, componentSettings?: ComponentSettings): void;
6
+ }
7
+ export default BillingHistory;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const BillingHistoryLoader: () => JSX.Element;
3
+ export default BillingHistoryLoader;
@@ -0,0 +1,2 @@
1
+ import { JustifyContentProps, PaddingProps } from 'styled-system';
2
+ export declare const SkeletonWrapper: import("styled-components").StyledComponent<"div", any, PaddingProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> & JustifyContentProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>>, never>;
@@ -0,0 +1,2 @@
1
+ import BillingHistoryLoader from './BillingHistoryLoader';
2
+ export default BillingHistoryLoader;
@@ -0,0 +1,18 @@
1
+ /// <reference types="react" />
2
+ import { FilterValue, FilterType, FiltersSettings } from '../../machines/billingFilters';
3
+ import { DateFilterTabType } from '../../machines/billingFilters/types';
4
+ export declare type FiltersProps = {
5
+ isOpen: boolean;
6
+ isFilteringApplied: boolean;
7
+ onUpdateFilter: (filter: FilterType, value: FilterValue) => void;
8
+ onClear: () => void;
9
+ onApply: () => void;
10
+ filtersSettings: FiltersSettings;
11
+ onToggleFilters: () => void;
12
+ onCloseFilters: () => void;
13
+ onToggleSection: (sectionName: FilterType) => void;
14
+ filtersSections: Record<FilterType, boolean>;
15
+ onDateTypeChange: (dateType: DateFilterTabType) => void;
16
+ };
17
+ declare const Filters: ({ filtersSettings, filtersSections, isOpen, isFilteringApplied, onUpdateFilter, onToggleFilters, onToggleSection, onApply, onClear, onDateTypeChange, onCloseFilters, }: FiltersProps) => JSX.Element;
18
+ export default Filters;
@@ -0,0 +1,3 @@
1
+ declare const Wrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ declare const CardWrapper: import("styled-components").StyledComponent<import("framer-motion").ForwardRefComponent<HTMLDivElement, import("framer-motion").HTMLMotionProps<"div">>, any, {}, never>;
3
+ export { Wrapper, CardWrapper };
@@ -0,0 +1,10 @@
1
+ import { RefObject } from 'react';
2
+ import { FilterBoxProps } from '../FilterBox/FilterBox';
3
+ import { DateFilterType } from '../../../../machines/billingFilters';
4
+ export interface DateFilterProps extends Omit<FilterBoxProps, 'children'> {
5
+ values?: DateFilterType;
6
+ onChange?: (filter: DateFilterType) => void;
7
+ onTabChange: (tab: string) => void;
8
+ portalContainer: RefObject<HTMLElement>;
9
+ }
10
+ export declare const DateFilter: ({ onChange, values, onClick, header, isExpanded, portalContainer, onTabChange, }: DateFilterProps) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { GridProps } from 'styled-system';
2
+ export declare const CalendarContainer: import("styled-components").StyledComponent<"div", any, GridProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>>, never>;
@@ -0,0 +1,2 @@
1
+ import { DateFilter } from './DateFilter';
2
+ export default DateFilter;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface FilterBoxProps {
3
+ children: React.ReactNode;
4
+ isExpanded: boolean;
5
+ onClick: () => void;
6
+ header: string;
7
+ }
8
+ export declare const FilterBox: ({ children, isExpanded, onClick, header, }: FilterBoxProps) => JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const FilterBoxList: import("styled-components").StyledComponent<"div", any, import("styled-system").MarginProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> & import("styled-system").PaddingProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> & import("styled-system").LayoutProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>>, never>;
@@ -0,0 +1,4 @@
1
+ import { FilterBox } from './FilterBox';
2
+ import type { FilterBoxProps } from './FilterBox';
3
+ export type { FilterBoxProps };
4
+ export default FilterBox;
@@ -0,0 +1 @@
1
+ export declare const FiltersWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { FilterBoxProps } from '../FilterBox';
3
+ export interface InvoiceNumberFilterProps extends Omit<FilterBoxProps, 'children'> {
4
+ onChange: (value: string) => void;
5
+ placeholder?: string;
6
+ value?: string;
7
+ }
8
+ export declare const InvoiceNumberFilter: ({ onChange, placeholder, value, ...rest }: InvoiceNumberFilterProps) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { InvoiceNumberFilter } from './InvoiceNumberFilter';
2
+ export default InvoiceNumberFilter;
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ import { FilterBoxProps } from '../FilterBox';
3
+ import { Product } from '../../../../models/billingHistory/billingHistory';
4
+ export interface ProductNameFilterProps extends Omit<FilterBoxProps, 'children'> {
5
+ onChange: (values: number[]) => void;
6
+ placeholder?: string;
7
+ showSearch?: boolean;
8
+ values?: number[];
9
+ products: Product[];
10
+ }
11
+ export declare const ProductNameFilter: ({ onChange, placeholder, values, showSearch, products, ...rest }: ProductNameFilterProps) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { ProductNameFilter } from './ProductNameFilter';
2
+ export default ProductNameFilter;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { FilterBoxProps } from '../FilterBox/FilterBox';
3
+ import { InvoiceStatus } from '../../../../models/billingHistory/billingHistory';
4
+ export interface StatusFilterProps extends Omit<FilterBoxProps, 'children'> {
5
+ values: InvoiceStatus[];
6
+ onChange: (status: InvoiceStatus[]) => void;
7
+ }
8
+ export declare const StatusFilter: ({ onChange, values, onClick, header, isExpanded, }: StatusFilterProps) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { StatusFilter } from './StatusFilter';
2
+ export default StatusFilter;
@@ -0,0 +1,6 @@
1
+ import { StatusFilter } from './StatusFilter/StatusFilter';
2
+ import { FiltersWrapper } from './FiltersWrapper/FiltersWrapper';
3
+ import InvoiceNumberFilter from './InvoiceNumberFilter';
4
+ import ProductNameFilter from './ProductNameFilter';
5
+ import DateFilter from './DateFilter';
6
+ export { InvoiceNumberFilter, ProductNameFilter, FiltersWrapper, StatusFilter, DateFilter, };
@@ -0,0 +1,3 @@
1
+ import { InvoiceStatus } from '../../models/billingHistory/billingHistory';
2
+ export declare const statuses: Readonly<InvoiceStatus[]>;
3
+ export declare const FILTERS_WIDTH = 220;
@@ -0,0 +1,2 @@
1
+ import Filters from './Filters';
2
+ export default Filters;
@@ -0,0 +1,18 @@
1
+ export declare const dropIn: {
2
+ hidden: {
3
+ y: string;
4
+ opacity: number;
5
+ };
6
+ visible: {
7
+ y: string;
8
+ opacity: number;
9
+ transition: {
10
+ type: string;
11
+ duration: number;
12
+ };
13
+ };
14
+ exit: {
15
+ y: string;
16
+ opacity: number;
17
+ };
18
+ };
@@ -0,0 +1,10 @@
1
+ import { FilterDate } from '../../machines/billingHistoryData/types';
2
+ import { InvoiceStatus } from '../../models/billingHistory/billingHistory';
3
+ export interface FiltersValues {
4
+ status: InvoiceStatus[];
5
+ invoiceNumber: string;
6
+ productIds: number[];
7
+ dateField: FilterDate;
8
+ startDate: Date;
9
+ endDate: Date;
10
+ }