@gusto/embedded-react-sdk 0.42.0 → 0.44.0

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 (778) hide show
  1. package/CHANGELOG.md +127 -0
  2. package/README.md +23 -5
  3. package/dist/assets/icons/edit-02.svg.js +10 -0
  4. package/dist/assets/icons/edit-02.svg.js.map +1 -0
  5. package/dist/assets/icons/search-lg.svg.js +10 -0
  6. package/dist/assets/icons/search-lg.svg.js.map +1 -0
  7. package/dist/components/Base/Base.js +3 -2
  8. package/dist/components/Base/Base.js.map +1 -1
  9. package/dist/components/Common/DataView/DataCards/DataCards.d.ts +3 -1
  10. package/dist/components/Common/DataView/DataCards/DataCards.js +55 -45
  11. package/dist/components/Common/DataView/DataCards/DataCards.js.map +1 -1
  12. package/dist/components/Common/DataView/DataCards/DataCards.module.scss.js +16 -10
  13. package/dist/components/Common/DataView/DataCards/DataCards.module.scss.js.map +1 -1
  14. package/dist/components/Common/DataView/DataTable/DataTable.js +86 -64
  15. package/dist/components/Common/DataView/DataTable/DataTable.js.map +1 -1
  16. package/dist/components/Common/DateRangeFilter/DateRangeFilter.js +1 -1
  17. package/dist/components/Common/DateRangeFilter/DateRangeFilter.js.map +1 -1
  18. package/dist/components/Common/DetailViewLayout/DetailViewLayout.js +52 -0
  19. package/dist/components/Common/DetailViewLayout/DetailViewLayout.js.map +1 -0
  20. package/dist/components/Common/DetailViewLayout/DetailViewLayout.module.scss.js +18 -0
  21. package/dist/components/Common/DetailViewLayout/DetailViewLayout.module.scss.js.map +1 -0
  22. package/dist/components/Common/Fields/hooks/FieldElementRegistryProvider.d.ts +13 -0
  23. package/dist/components/Common/Fields/hooks/FieldElementRegistryProvider.js +12 -0
  24. package/dist/components/Common/Fields/hooks/FieldElementRegistryProvider.js.map +1 -0
  25. package/dist/components/Common/Fields/hooks/fieldElementRegistry.d.ts +21 -0
  26. package/dist/components/Common/Fields/hooks/fieldElementRegistry.js +29 -0
  27. package/dist/components/Common/Fields/hooks/fieldElementRegistry.js.map +1 -0
  28. package/dist/components/Common/Fields/hooks/useField.js +43 -37
  29. package/dist/components/Common/Fields/hooks/useField.js.map +1 -1
  30. package/dist/components/Common/Flex/Flex.d.ts +2 -1
  31. package/dist/components/Common/Flex/Flex.js +14 -12
  32. package/dist/components/Common/Flex/Flex.js.map +1 -1
  33. package/dist/components/Common/Flex/Flex.module.scss.js +4 -4
  34. package/dist/components/Common/TaxInputs/TaxInputs.js +1 -1
  35. package/dist/components/Common/TaxInputs/TaxInputs.js.map +1 -1
  36. package/dist/components/Common/UI/Box/Box.module.scss.js +4 -4
  37. package/dist/components/Common/UI/Button/Button.module.scss.js +2 -2
  38. package/dist/components/Common/UI/ComboBox/ComboBox.d.ts +1 -1
  39. package/dist/components/Common/UI/ComboBox/ComboBox.js +26 -25
  40. package/dist/components/Common/UI/ComboBox/ComboBox.js.map +1 -1
  41. package/dist/components/Common/UI/ComboBox/ComboBoxTypes.d.ts +5 -0
  42. package/dist/components/Common/UI/DatePicker/DatePicker.js +4 -4
  43. package/dist/components/Common/UI/DatePicker/DatePicker.js.map +1 -1
  44. package/dist/components/Common/UI/Dialog/Dialog.js +35 -36
  45. package/dist/components/Common/UI/Dialog/Dialog.js.map +1 -1
  46. package/dist/components/Common/UI/Menu/Menu.js +18 -17
  47. package/dist/components/Common/UI/Menu/Menu.js.map +1 -1
  48. package/dist/components/Common/UI/Menu/MenuTypes.d.ts +5 -0
  49. package/dist/components/Common/UI/Menu/MenuTypes.js.map +1 -1
  50. package/dist/components/Common/UI/MultiSelectComboBox/MultiSelectComboBox.js +1 -1
  51. package/dist/components/Common/UI/MultiSelectComboBox/MultiSelectComboBox.js.map +1 -1
  52. package/dist/components/Common/UI/Select/Select.js +9 -9
  53. package/dist/components/Common/UI/Select/Select.js.map +1 -1
  54. package/dist/components/Common/UI/Switch/SwitchTypes.d.ts +2 -2
  55. package/dist/components/Common/UI/Switch/SwitchTypes.js.map +1 -1
  56. package/dist/components/Company/AssignSignatory/AssignSignatory.js +3 -2
  57. package/dist/components/Company/AssignSignatory/AssignSignatory.js.map +1 -1
  58. package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js +8 -6
  59. package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js.map +1 -1
  60. package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js +10 -8
  61. package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js.map +1 -1
  62. package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.js +7 -3
  63. package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.js.map +1 -1
  64. package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js +8 -6
  65. package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js.map +1 -1
  66. package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.js +7 -3
  67. package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.js.map +1 -1
  68. package/dist/components/Company/AssignSignatory/TitleSelect.js +3 -2
  69. package/dist/components/Company/AssignSignatory/TitleSelect.js.map +1 -1
  70. package/dist/components/Company/AssignSignatory/useAssignSignatory.js +9 -5
  71. package/dist/components/Company/AssignSignatory/useAssignSignatory.js.map +1 -1
  72. package/dist/components/Company/BankAccount/BankAccountForm/Actions.js +9 -8
  73. package/dist/components/Company/BankAccount/BankAccountForm/Actions.js.map +1 -1
  74. package/dist/components/Company/BankAccount/BankAccountForm/Form.js +11 -9
  75. package/dist/components/Company/BankAccount/BankAccountForm/Form.js.map +1 -1
  76. package/dist/components/Company/BankAccount/BankAccountForm/context.js +7 -3
  77. package/dist/components/Company/BankAccount/BankAccountForm/context.js.map +1 -1
  78. package/dist/components/Company/BankAccount/BankAccountList/Actions.js +12 -10
  79. package/dist/components/Company/BankAccount/BankAccountList/Actions.js.map +1 -1
  80. package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js +13 -11
  81. package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js.map +1 -1
  82. package/dist/components/Company/BankAccount/BankAccountVerify/Form.js +6 -4
  83. package/dist/components/Company/BankAccount/BankAccountVerify/Form.js.map +1 -1
  84. package/dist/components/Company/DocumentSigner/DocumentList/Actions.js +7 -5
  85. package/dist/components/Company/DocumentSigner/DocumentList/Actions.js.map +1 -1
  86. package/dist/components/Company/DocumentSigner/DocumentList/DocumentList.js +9 -8
  87. package/dist/components/Company/DocumentSigner/DocumentList/DocumentList.js.map +1 -1
  88. package/dist/components/Company/DocumentSigner/DocumentList/useDocumentList.js +7 -3
  89. package/dist/components/Company/DocumentSigner/DocumentList/useDocumentList.js.map +1 -1
  90. package/dist/components/Company/DocumentSigner/SignatureForm/SignatureForm.js +4 -3
  91. package/dist/components/Company/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -1
  92. package/dist/components/Company/DocumentSigner/shared/useSignCompanyForm/useSignCompanyForm.js +26 -25
  93. package/dist/components/Company/DocumentSigner/shared/useSignCompanyForm/useSignCompanyForm.js.map +1 -1
  94. package/dist/components/Company/FederalTaxes/Actions.js +9 -7
  95. package/dist/components/Company/FederalTaxes/Actions.js.map +1 -1
  96. package/dist/components/Company/FederalTaxes/FederalTaxes.js +8 -7
  97. package/dist/components/Company/FederalTaxes/FederalTaxes.js.map +1 -1
  98. package/dist/components/Company/FederalTaxes/Form.js +4 -2
  99. package/dist/components/Company/FederalTaxes/Form.js.map +1 -1
  100. package/dist/components/Company/FederalTaxes/useFederalTaxes.js +12 -8
  101. package/dist/components/Company/FederalTaxes/useFederalTaxes.js.map +1 -1
  102. package/dist/components/Company/Industry/Actions.js +7 -5
  103. package/dist/components/Company/Industry/Actions.js.map +1 -1
  104. package/dist/components/Company/Industry/Context.js +10 -6
  105. package/dist/components/Company/Industry/Context.js.map +1 -1
  106. package/dist/components/Company/Industry/Edit.js +12 -10
  107. package/dist/components/Company/Industry/Edit.js.map +1 -1
  108. package/dist/components/Company/Locations/LocationForm/Actions.js +8 -6
  109. package/dist/components/Company/Locations/LocationForm/Actions.js.map +1 -1
  110. package/dist/components/Company/Locations/LocationForm/Form.d.ts +6 -1
  111. package/dist/components/Company/Locations/LocationForm/Form.js +29 -27
  112. package/dist/components/Company/Locations/LocationForm/Form.js.map +1 -1
  113. package/dist/components/Company/Locations/LocationForm/LocationForm.js +59 -54
  114. package/dist/components/Company/Locations/LocationForm/LocationForm.js.map +1 -1
  115. package/dist/components/Company/Locations/LocationForm/index.d.ts +2 -0
  116. package/dist/components/Company/Locations/LocationForm/useLocationForm.js +7 -3
  117. package/dist/components/Company/Locations/LocationForm/useLocationForm.js.map +1 -1
  118. package/dist/components/Company/Locations/LocationsList/Actions.js +8 -6
  119. package/dist/components/Company/Locations/LocationsList/Actions.js.map +1 -1
  120. package/dist/components/Company/Locations/LocationsList/List.js +43 -40
  121. package/dist/components/Company/Locations/LocationsList/List.js.map +1 -1
  122. package/dist/components/Company/Locations/LocationsList/List.module.scss.js +8 -0
  123. package/dist/components/Company/Locations/LocationsList/List.module.scss.js.map +1 -0
  124. package/dist/components/Company/Locations/LocationsList/LocationsList.js +3 -2
  125. package/dist/components/Company/Locations/LocationsList/LocationsList.js.map +1 -1
  126. package/dist/components/Company/Locations/LocationsList/useLocationsList.js +7 -3
  127. package/dist/components/Company/Locations/LocationsList/useLocationsList.js.map +1 -1
  128. package/dist/components/Company/OnboardingOverview/Completed.js +14 -12
  129. package/dist/components/Company/OnboardingOverview/Completed.js.map +1 -1
  130. package/dist/components/Company/OnboardingOverview/MissingRequirements.js +7 -5
  131. package/dist/components/Company/OnboardingOverview/MissingRequirements.js.map +1 -1
  132. package/dist/components/Company/OnboardingOverview/OnboardingOverview.js +3 -2
  133. package/dist/components/Company/OnboardingOverview/OnboardingOverview.js.map +1 -1
  134. package/dist/components/Company/OnboardingOverview/context.js +7 -3
  135. package/dist/components/Company/OnboardingOverview/context.js.map +1 -1
  136. package/dist/components/Company/PaySchedule/PayScheduleList.js +4 -3
  137. package/dist/components/Company/PaySchedule/PayScheduleList.js.map +1 -1
  138. package/dist/components/Company/PaySchedule/shared/usePayScheduleForm/usePayScheduleForm.js +53 -52
  139. package/dist/components/Company/PaySchedule/shared/usePayScheduleForm/usePayScheduleForm.js.map +1 -1
  140. package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js +7 -5
  141. package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js.map +1 -1
  142. package/dist/components/Company/StateTaxes/StateTaxesForm/Form.js +12 -11
  143. package/dist/components/Company/StateTaxes/StateTaxesForm/Form.js.map +1 -1
  144. package/dist/components/Company/StateTaxes/StateTaxesForm/StateTaxesForm.js +67 -63
  145. package/dist/components/Company/StateTaxes/StateTaxesForm/StateTaxesForm.js.map +1 -1
  146. package/dist/components/Company/StateTaxes/StateTaxesForm/context.js +7 -3
  147. package/dist/components/Company/StateTaxes/StateTaxesForm/context.js.map +1 -1
  148. package/dist/components/Company/StateTaxes/StateTaxesForm/rhfKey.d.ts +2 -0
  149. package/dist/components/Company/StateTaxes/StateTaxesForm/rhfKey.js +6 -0
  150. package/dist/components/Company/StateTaxes/StateTaxesForm/rhfKey.js.map +1 -0
  151. package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js +8 -6
  152. package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js.map +1 -1
  153. package/dist/components/Company/StateTaxes/StateTaxesList/List.js +58 -26
  154. package/dist/components/Company/StateTaxes/StateTaxesList/List.js.map +1 -1
  155. package/dist/components/Company/StateTaxes/StateTaxesList/context.js +7 -3
  156. package/dist/components/Company/StateTaxes/StateTaxesList/context.js.map +1 -1
  157. package/dist/components/Company/exports/companyOnboarding.d.ts +3 -0
  158. package/dist/components/Company/exports/companyOnboarding.js +21 -15
  159. package/dist/components/Company/exports/companyOnboarding.js.map +1 -1
  160. package/dist/components/Company/index.d.ts +1 -0
  161. package/dist/components/Company/index.js +14 -12
  162. package/dist/components/Company/index.js.map +1 -1
  163. package/dist/components/Contractor/Address/Address.js +10 -9
  164. package/dist/components/Contractor/Address/Address.js.map +1 -1
  165. package/dist/components/Contractor/Address/Form.js +4 -4
  166. package/dist/components/Contractor/Address/Head.js +12 -9
  167. package/dist/components/Contractor/Address/Head.js.map +1 -1
  168. package/dist/components/Contractor/Address/useAddress.js +9 -5
  169. package/dist/components/Contractor/Address/useAddress.js.map +1 -1
  170. package/dist/components/Contractor/ContractorList/index.js +20 -19
  171. package/dist/components/Contractor/ContractorList/index.js.map +1 -1
  172. package/dist/components/Contractor/NewHireReport/NewHireReport.js +42 -41
  173. package/dist/components/Contractor/NewHireReport/NewHireReport.js.map +1 -1
  174. package/dist/components/Contractor/PaymentMethod/BankAccountForm.js +13 -10
  175. package/dist/components/Contractor/PaymentMethod/BankAccountForm.js.map +1 -1
  176. package/dist/components/Contractor/PaymentMethod/PaymentMethod.js +17 -17
  177. package/dist/components/Contractor/PaymentMethod/PaymentMethod.js.map +1 -1
  178. package/dist/components/Contractor/PaymentMethod/PaymentTypeForm.js +3 -2
  179. package/dist/components/Contractor/PaymentMethod/PaymentTypeForm.js.map +1 -1
  180. package/dist/components/Contractor/Payments/CreatePayment/CreatePaymentPresentation.js +4 -2
  181. package/dist/components/Contractor/Payments/CreatePayment/CreatePaymentPresentation.js.map +1 -1
  182. package/dist/components/Contractor/Payments/CreatePayment/FastAchSubmissionBlockerBanner.js +7 -5
  183. package/dist/components/Contractor/Payments/CreatePayment/FastAchSubmissionBlockerBanner.js.map +1 -1
  184. package/dist/components/Contractor/Payments/CreatePayment/PreviewPresentation.js +4 -3
  185. package/dist/components/Contractor/Payments/CreatePayment/PreviewPresentation.js.map +1 -1
  186. package/dist/components/Contractor/Payments/PaymentHistory/PaymentHistoryPresentation.js +4 -2
  187. package/dist/components/Contractor/Payments/PaymentHistory/PaymentHistoryPresentation.js.map +1 -1
  188. package/dist/components/Contractor/Payments/PaymentStatement/PaymentStatementPresentation.js +15 -13
  189. package/dist/components/Contractor/Payments/PaymentStatement/PaymentStatementPresentation.js.map +1 -1
  190. package/dist/components/Contractor/Payments/PaymentSummary/PaymentSummaryPresentation.js +4 -2
  191. package/dist/components/Contractor/Payments/PaymentSummary/PaymentSummaryPresentation.js.map +1 -1
  192. package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.js +9 -7
  193. package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.js.map +1 -1
  194. package/dist/components/Contractor/Profile/ContractorProfileForm.js +48 -49
  195. package/dist/components/Contractor/Profile/ContractorProfileForm.js.map +1 -1
  196. package/dist/components/Contractor/Profile/useContractorProfile.js +35 -33
  197. package/dist/components/Contractor/Profile/useContractorProfile.js.map +1 -1
  198. package/dist/components/Contractor/Submit/Submit.js +4 -3
  199. package/dist/components/Contractor/Submit/Submit.js.map +1 -1
  200. package/dist/components/Contractor/Submit/SubmitDone.js +14 -12
  201. package/dist/components/Contractor/Submit/SubmitDone.js.map +1 -1
  202. package/dist/components/Employee/Compensation/Compensation.d.ts +7 -4
  203. package/dist/components/Employee/Compensation/Compensation.js +72 -179
  204. package/dist/components/Employee/Compensation/Compensation.js.map +1 -1
  205. package/dist/components/Employee/Compensation/CompensationFlowComponents.d.ts +27 -0
  206. package/dist/components/Employee/Compensation/CompensationFlowComponents.js +61 -0
  207. package/dist/components/Employee/Compensation/CompensationFlowComponents.js.map +1 -0
  208. package/dist/components/Employee/Compensation/EditCompensation/EditCompensation.d.ts +14 -0
  209. package/dist/components/Employee/Compensation/EditCompensation/EditCompensation.js +128 -0
  210. package/dist/components/Employee/Compensation/EditCompensation/EditCompensation.js.map +1 -0
  211. package/dist/components/Employee/Compensation/EditCompensation/EditCompensationPresentation.d.ts +17 -0
  212. package/dist/components/Employee/Compensation/EditCompensation/EditCompensationPresentation.js +224 -0
  213. package/dist/components/Employee/Compensation/EditCompensation/EditCompensationPresentation.js.map +1 -0
  214. package/dist/components/Employee/Compensation/EditCompensation/index.d.ts +5 -0
  215. package/dist/components/Employee/Compensation/JobsList/JobsList.d.ts +5 -0
  216. package/dist/components/Employee/Compensation/JobsList/JobsList.js +47 -0
  217. package/dist/components/Employee/Compensation/JobsList/JobsList.js.map +1 -0
  218. package/dist/components/Employee/Compensation/JobsList/JobsListPresentation.d.ts +11 -0
  219. package/dist/components/Employee/Compensation/JobsList/JobsListPresentation.js +98 -0
  220. package/dist/components/Employee/Compensation/JobsList/JobsListPresentation.js.map +1 -0
  221. package/dist/components/Employee/Compensation/JobsList/index.d.ts +5 -0
  222. package/dist/components/Employee/Compensation/{useCompensation.d.ts → compensationSchema.d.ts} +0 -22
  223. package/dist/components/Employee/Compensation/{useCompensation.js → compensationSchema.js} +9 -12
  224. package/dist/components/Employee/Compensation/compensationSchema.js.map +1 -0
  225. package/dist/components/Employee/Compensation/compensationStateMachine.d.ts +6 -0
  226. package/dist/components/Employee/Compensation/compensationStateMachine.js +73 -0
  227. package/dist/components/Employee/Compensation/compensationStateMachine.js.map +1 -0
  228. package/dist/components/Employee/Compensation/shared/useCompensationForm/compensationSchema.d.ts +62 -36
  229. package/dist/components/Employee/Compensation/shared/useCompensationForm/compensationSchema.js +81 -57
  230. package/dist/components/Employee/Compensation/shared/useCompensationForm/compensationSchema.js.map +1 -1
  231. package/dist/components/Employee/Compensation/shared/useCompensationForm/fields.d.ts +5 -12
  232. package/dist/components/Employee/Compensation/shared/useCompensationForm/fields.js +22 -35
  233. package/dist/components/Employee/Compensation/shared/useCompensationForm/fields.js.map +1 -1
  234. package/dist/components/Employee/Compensation/shared/useCompensationForm/index.d.ts +5 -3
  235. package/dist/components/Employee/Compensation/shared/useCompensationForm/useCompensationForm.d.ts +55 -13
  236. package/dist/components/Employee/Compensation/shared/useCompensationForm/useCompensationForm.js +216 -226
  237. package/dist/components/Employee/Compensation/shared/useCompensationForm/useCompensationForm.js.map +1 -1
  238. package/dist/components/Employee/Compensation/shared/useCompensationForm/useCurrentCompensationForm.d.ts +15 -0
  239. package/dist/components/Employee/Compensation/shared/useCompensationForm/useCurrentCompensationForm.js +27 -0
  240. package/dist/components/Employee/Compensation/shared/useCompensationForm/useCurrentCompensationForm.js.map +1 -0
  241. package/dist/components/Employee/Compensation/shared/useJobForm/fields.d.ts +19 -0
  242. package/dist/components/Employee/Compensation/shared/useJobForm/fields.js +29 -0
  243. package/dist/components/Employee/Compensation/shared/useJobForm/fields.js.map +1 -0
  244. package/dist/components/Employee/Compensation/shared/useJobForm/index.d.ts +7 -0
  245. package/dist/components/Employee/Compensation/shared/useJobForm/jobSchema.d.ts +43 -0
  246. package/dist/components/Employee/Compensation/shared/useJobForm/jobSchema.js +37 -0
  247. package/dist/components/Employee/Compensation/shared/useJobForm/jobSchema.js.map +1 -0
  248. package/dist/components/Employee/Compensation/shared/useJobForm/useCurrentJobForm.d.ts +13 -0
  249. package/dist/components/Employee/Compensation/shared/useJobForm/useCurrentJobForm.js +26 -0
  250. package/dist/components/Employee/Compensation/shared/useJobForm/useCurrentJobForm.js.map +1 -0
  251. package/dist/components/Employee/Compensation/shared/useJobForm/useJobForm.d.ts +56 -0
  252. package/dist/components/Employee/Compensation/shared/useJobForm/useJobForm.js +180 -0
  253. package/dist/components/Employee/Compensation/shared/useJobForm/useJobForm.js.map +1 -0
  254. package/dist/components/Employee/Dashboard/BasicDetailsView.js +15 -13
  255. package/dist/components/Employee/Dashboard/BasicDetailsView.js.map +1 -1
  256. package/dist/components/Employee/Dashboard/DashboardComponents.d.ts +3 -0
  257. package/dist/components/Employee/Dashboard/DashboardComponents.js +33 -15
  258. package/dist/components/Employee/Dashboard/DashboardComponents.js.map +1 -1
  259. package/dist/components/Employee/Dashboard/DocumentsView.js +13 -11
  260. package/dist/components/Employee/Dashboard/DocumentsView.js.map +1 -1
  261. package/dist/components/Employee/Dashboard/JobAndPayView.js +11 -9
  262. package/dist/components/Employee/Dashboard/JobAndPayView.js.map +1 -1
  263. package/dist/components/Employee/Dashboard/TaxesView.js +21 -19
  264. package/dist/components/Employee/Dashboard/TaxesView.js.map +1 -1
  265. package/dist/components/Employee/Dashboard/dashboardStateMachine.d.ts +3 -0
  266. package/dist/components/Employee/Dashboard/dashboardStateMachine.js +54 -33
  267. package/dist/components/Employee/Dashboard/dashboardStateMachine.js.map +1 -1
  268. package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.js +15 -11
  269. package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.js.map +1 -1
  270. package/dist/components/Employee/Deductions/DeductionsForm/CustomDeductionForm.js +37 -33
  271. package/dist/components/Employee/Deductions/DeductionsForm/CustomDeductionForm.js.map +1 -1
  272. package/dist/components/Employee/Deductions/DeductionsForm/DeductionsForm.js +26 -26
  273. package/dist/components/Employee/Deductions/DeductionsForm/DeductionsForm.js.map +1 -1
  274. package/dist/components/Employee/Deductions/DeductionsForm/GarnishmentForm.js +7 -3
  275. package/dist/components/Employee/Deductions/DeductionsForm/GarnishmentForm.js.map +1 -1
  276. package/dist/components/Employee/Deductions/DeductionsList/DeductionsList.js +8 -7
  277. package/dist/components/Employee/Deductions/DeductionsList/DeductionsList.js.map +1 -1
  278. package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js +8 -6
  279. package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js.map +1 -1
  280. package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js +6 -5
  281. package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js.map +1 -1
  282. package/dist/components/Employee/DocumentSigner/DocumentList/List.js +4 -2
  283. package/dist/components/Employee/DocumentSigner/DocumentList/List.js.map +1 -1
  284. package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.js +7 -3
  285. package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.js.map +1 -1
  286. package/dist/components/Employee/DocumentSigner/EmploymentEligibility/EmploymentEligibilityPresentation.js +9 -7
  287. package/dist/components/Employee/DocumentSigner/EmploymentEligibility/EmploymentEligibilityPresentation.js.map +1 -1
  288. package/dist/components/Employee/DocumentSigner/I9SignatureForm/I9SignatureForm.js +36 -34
  289. package/dist/components/Employee/DocumentSigner/I9SignatureForm/I9SignatureForm.js.map +1 -1
  290. package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js +8 -7
  291. package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -1
  292. package/dist/components/Employee/DocumentSigner/shared/useSignEmployeeForm/fields.d.ts +1 -1
  293. package/dist/components/Employee/DocumentSigner/shared/useSignEmployeeForm/fields.js.map +1 -1
  294. package/dist/components/Employee/DocumentSigner/shared/useSignEmployeeForm/useSignEmployeeForm.js +100 -99
  295. package/dist/components/Employee/DocumentSigner/shared/useSignEmployeeForm/useSignEmployeeForm.js.map +1 -1
  296. package/dist/components/Employee/EmployeeDocuments/EmployeeDocumentsPresentation.js +4 -2
  297. package/dist/components/Employee/EmployeeDocuments/EmployeeDocumentsPresentation.js.map +1 -1
  298. package/dist/components/Employee/EmployeeList/management/ManagementEmployeeListView.js +9 -7
  299. package/dist/components/Employee/EmployeeList/management/ManagementEmployeeListView.js.map +1 -1
  300. package/dist/components/Employee/EmployeeList/onboarding/EmployeeListView.js +42 -40
  301. package/dist/components/Employee/EmployeeList/onboarding/EmployeeListView.js.map +1 -1
  302. package/dist/components/Employee/FederalTaxes/index.d.ts +3 -1
  303. package/dist/components/Employee/FederalTaxes/management/FederalTaxes.d.ts +8 -0
  304. package/dist/components/Employee/FederalTaxes/management/FederalTaxes.js +71 -0
  305. package/dist/components/Employee/FederalTaxes/management/FederalTaxes.js.map +1 -0
  306. package/dist/components/Employee/FederalTaxes/management/index.d.ts +2 -0
  307. package/dist/components/Employee/FederalTaxes/onboarding/FederalTaxes.d.ts +8 -0
  308. package/dist/components/Employee/FederalTaxes/onboarding/FederalTaxes.js +55 -0
  309. package/dist/components/Employee/FederalTaxes/onboarding/FederalTaxes.js.map +1 -0
  310. package/dist/components/Employee/FederalTaxes/onboarding/index.d.ts +2 -0
  311. package/dist/components/Employee/FederalTaxes/shared/FederalTaxesView.d.ts +15 -0
  312. package/dist/components/Employee/FederalTaxes/shared/FederalTaxesView.js +104 -0
  313. package/dist/components/Employee/FederalTaxes/shared/FederalTaxesView.js.map +1 -0
  314. package/dist/components/Employee/FederalTaxes/shared/index.d.ts +3 -0
  315. package/dist/components/Employee/FederalTaxes/shared/useFederalTaxesForm/federalTaxesSchema.d.ts +41 -0
  316. package/dist/components/Employee/FederalTaxes/shared/useFederalTaxesForm/federalTaxesSchema.js +40 -0
  317. package/dist/components/Employee/FederalTaxes/shared/useFederalTaxesForm/federalTaxesSchema.js.map +1 -0
  318. package/dist/components/Employee/FederalTaxes/shared/useFederalTaxesForm/fields.d.ts +18 -0
  319. package/dist/components/Employee/FederalTaxes/shared/useFederalTaxesForm/fields.js +31 -0
  320. package/dist/components/Employee/FederalTaxes/shared/useFederalTaxesForm/fields.js.map +1 -0
  321. package/dist/components/Employee/FederalTaxes/shared/useFederalTaxesForm/index.d.ts +5 -0
  322. package/dist/components/Employee/FederalTaxes/shared/useFederalTaxesForm/useFederalTaxesForm.d.ts +37 -0
  323. package/dist/components/Employee/FederalTaxes/shared/useFederalTaxesForm/useFederalTaxesForm.js +140 -0
  324. package/dist/components/Employee/FederalTaxes/shared/useFederalTaxesForm/useFederalTaxesForm.js.map +1 -0
  325. package/dist/components/Employee/Landing/Landing.js +15 -14
  326. package/dist/components/Employee/Landing/Landing.js.map +1 -1
  327. package/dist/components/Employee/OnboardingFlow/OnboardingFlowComponents.d.ts +1 -1
  328. package/dist/components/Employee/OnboardingFlow/OnboardingFlowComponents.js +2 -2
  329. package/dist/components/Employee/OnboardingFlow/OnboardingFlowComponents.js.map +1 -1
  330. package/dist/components/Employee/OnboardingFlow/onboardingStateMachine.js +1 -1
  331. package/dist/components/Employee/OnboardingFlow/onboardingStateMachine.js.map +1 -1
  332. package/dist/components/Employee/OnboardingSummary/OnboardingSummary.js +7 -7
  333. package/dist/components/Employee/PaymentMethod/Actions.js +9 -7
  334. package/dist/components/Employee/PaymentMethod/Actions.js.map +1 -1
  335. package/dist/components/Employee/PaymentMethod/BankAccountEdit.js +5 -4
  336. package/dist/components/Employee/PaymentMethod/BankAccountEdit.js.map +1 -1
  337. package/dist/components/Employee/PaymentMethod/BankAccountsList.js +7 -6
  338. package/dist/components/Employee/PaymentMethod/BankAccountsList.js.map +1 -1
  339. package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js +7 -6
  340. package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js.map +1 -1
  341. package/dist/components/Employee/PaymentMethod/Split.js +4 -3
  342. package/dist/components/Employee/PaymentMethod/Split.js.map +1 -1
  343. package/dist/components/Employee/PaymentMethod/usePaymentMethod.js +9 -5
  344. package/dist/components/Employee/PaymentMethod/usePaymentMethod.js.map +1 -1
  345. package/dist/components/Employee/Profile/management/Profile.d.ts +6 -0
  346. package/dist/components/Employee/Profile/management/Profile.js +122 -0
  347. package/dist/components/Employee/Profile/management/Profile.js.map +1 -0
  348. package/dist/components/Employee/Profile/management/Profile.module.scss.js +8 -0
  349. package/dist/components/Employee/Profile/management/Profile.module.scss.js.map +1 -0
  350. package/dist/components/Employee/Profile/onboarding/AdminProfile.js +352 -0
  351. package/dist/components/Employee/Profile/onboarding/AdminProfile.js.map +1 -0
  352. package/dist/components/Employee/Profile/{EmployeeProfile.js → onboarding/EmployeeProfile.js} +60 -66
  353. package/dist/components/Employee/Profile/onboarding/EmployeeProfile.js.map +1 -0
  354. package/dist/components/Employee/Profile/{Profile.d.ts → onboarding/Profile.d.ts} +2 -2
  355. package/dist/components/Employee/Profile/{Profile.js → onboarding/Profile.js} +4 -4
  356. package/dist/components/Employee/Profile/onboarding/Profile.js.map +1 -0
  357. package/dist/components/Employee/Profile/shared/useEmployeeDetailsForm/useEmployeeDetailsForm.d.ts +9 -4
  358. package/dist/components/Employee/Profile/shared/useEmployeeDetailsForm/useEmployeeDetailsForm.js +61 -58
  359. package/dist/components/Employee/Profile/shared/useEmployeeDetailsForm/useEmployeeDetailsForm.js.map +1 -1
  360. package/dist/components/Employee/Profile/shared/useHomeAddressForm/fields.d.ts +1 -1
  361. package/dist/components/Employee/Profile/shared/useHomeAddressForm/fields.js.map +1 -1
  362. package/dist/components/Employee/Profile/shared/useHomeAddressForm/useHomeAddressForm.js +50 -49
  363. package/dist/components/Employee/Profile/shared/useHomeAddressForm/useHomeAddressForm.js.map +1 -1
  364. package/dist/components/Employee/Profile/shared/useWorkAddressForm/useWorkAddressForm.js +47 -46
  365. package/dist/components/Employee/Profile/shared/useWorkAddressForm/useWorkAddressForm.js.map +1 -1
  366. package/dist/components/Employee/SelfOnboardingFlow/SelfOnboardingComponents.js +14 -14
  367. package/dist/components/Employee/SelfOnboardingFlow/SelfOnboardingComponents.js.map +1 -1
  368. package/dist/components/Employee/StateTaxes/index.d.ts +2 -1
  369. package/dist/components/Employee/StateTaxes/management/StateTaxes.d.ts +6 -0
  370. package/dist/components/Employee/StateTaxes/management/StateTaxes.js +59 -0
  371. package/dist/components/Employee/StateTaxes/management/StateTaxes.js.map +1 -0
  372. package/dist/components/Employee/StateTaxes/management/index.d.ts +2 -0
  373. package/dist/components/Employee/StateTaxes/onboarding/StateTaxes.d.ts +8 -0
  374. package/dist/components/Employee/StateTaxes/onboarding/StateTaxes.js +49 -0
  375. package/dist/components/Employee/StateTaxes/onboarding/StateTaxes.js.map +1 -0
  376. package/dist/components/Employee/StateTaxes/onboarding/index.d.ts +2 -0
  377. package/dist/components/Employee/StateTaxes/shared/EmployeeStateTaxesView.d.ts +14 -0
  378. package/dist/components/Employee/StateTaxes/shared/EmployeeStateTaxesView.js +32 -0
  379. package/dist/components/Employee/StateTaxes/shared/EmployeeStateTaxesView.js.map +1 -0
  380. package/dist/components/Employee/StateTaxes/shared/index.d.ts +3 -0
  381. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/__fixtures__/stateTaxesFixtures.d.ts +8 -0
  382. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/__fixtures__/toWireFormat.d.ts +36 -0
  383. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/employeeStateTaxesSchema.d.ts +56 -0
  384. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/employeeStateTaxesSchema.js +116 -0
  385. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/employeeStateTaxesSchema.js.map +1 -0
  386. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/fieldComponents.d.ts +12 -0
  387. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/fieldComponents.js +76 -0
  388. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/fieldComponents.js.map +1 -0
  389. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/fieldMapping.d.ts +14 -0
  390. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/fieldMapping.js +23 -0
  391. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/fieldMapping.js.map +1 -0
  392. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/fieldMeta.d.ts +6 -0
  393. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/fieldProps.d.ts +39 -0
  394. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/fields.d.ts +46 -0
  395. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/fields.js +93 -0
  396. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/fields.js.map +1 -0
  397. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/index.d.ts +6 -0
  398. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/useEmployeeStateTaxesForm.d.ts +36 -0
  399. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/useEmployeeStateTaxesForm.js +159 -0
  400. package/dist/components/Employee/StateTaxes/shared/useEmployeeStateTaxesForm/useEmployeeStateTaxesForm.js.map +1 -0
  401. package/dist/components/Employee/Taxes/Actions.js +10 -8
  402. package/dist/components/Employee/Taxes/Actions.js.map +1 -1
  403. package/dist/components/Employee/Taxes/FederalForm.js +6 -4
  404. package/dist/components/Employee/Taxes/FederalForm.js.map +1 -1
  405. package/dist/components/Employee/Taxes/useTaxes.js +7 -3
  406. package/dist/components/Employee/Taxes/useTaxes.js.map +1 -1
  407. package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployeePresentation.js +4 -2
  408. package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployeePresentation.js.map +1 -1
  409. package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.js +13 -12
  410. package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.js.map +1 -1
  411. package/dist/components/Employee/Terminations/TerminationSummary/TerminationSummaryPresentation.js +4 -2
  412. package/dist/components/Employee/Terminations/TerminationSummary/TerminationSummaryPresentation.js.map +1 -1
  413. package/dist/components/Employee/exports/employeeManagement.d.ts +3 -0
  414. package/dist/components/Employee/exports/employeeManagement.js +16 -10
  415. package/dist/components/Employee/exports/employeeManagement.js.map +1 -1
  416. package/dist/components/Employee/exports/employeeOnboarding.d.ts +3 -3
  417. package/dist/components/Employee/exports/employeeOnboarding.js +19 -19
  418. package/dist/components/Employee/index.d.ts +2 -1
  419. package/dist/components/Employee/index.js +37 -37
  420. package/dist/components/Flow/FlowHeader.js +11 -10
  421. package/dist/components/Flow/FlowHeader.js.map +1 -1
  422. package/dist/components/InformationRequests/InformationRequestForm/InformationRequestForm.js +56 -54
  423. package/dist/components/InformationRequests/InformationRequestForm/InformationRequestForm.js.map +1 -1
  424. package/dist/components/InformationRequests/InformationRequestList/InformationRequestList.js +12 -11
  425. package/dist/components/InformationRequests/InformationRequestList/InformationRequestList.js.map +1 -1
  426. package/dist/components/InformationRequests/InformationRequests.js +4 -3
  427. package/dist/components/InformationRequests/InformationRequests.js.map +1 -1
  428. package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.js +1 -0
  429. package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.js.map +1 -1
  430. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelectionPresentation.js +10 -8
  431. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelectionPresentation.js.map +1 -1
  432. package/dist/components/Payroll/GrossUpModal/GrossUpModal.js +23 -20
  433. package/dist/components/Payroll/GrossUpModal/GrossUpModal.js.map +1 -1
  434. package/dist/components/Payroll/OffCycleCreation/OffCycleCreationPresentation.js +20 -18
  435. package/dist/components/Payroll/OffCycleCreation/OffCycleCreationPresentation.js.map +1 -1
  436. package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormPresentation.js +12 -10
  437. package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormPresentation.js.map +1 -1
  438. package/dist/components/Payroll/OffCycleReasonSelection/OffCycleReasonSelectionPresentation.js +8 -6
  439. package/dist/components/Payroll/OffCycleReasonSelection/OffCycleReasonSelectionPresentation.js.map +1 -1
  440. package/dist/components/Payroll/OffCycleTaxWithholdingModal/OffCycleTaxWithholdingModal.js +4 -2
  441. package/dist/components/Payroll/OffCycleTaxWithholdingModal/OffCycleTaxWithholdingModal.js.map +1 -1
  442. package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerAlerts.js +13 -11
  443. package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerAlerts.js.map +1 -1
  444. package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerList.js +12 -12
  445. package/dist/components/Payroll/PayrollEditEmployee/TimeOffField.js +18 -16
  446. package/dist/components/Payroll/PayrollEditEmployee/TimeOffField.js.map +1 -1
  447. package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.js +4 -2
  448. package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.js.map +1 -1
  449. package/dist/components/Payroll/PayrollList/PayrollListPresentation.js +14 -12
  450. package/dist/components/Payroll/PayrollList/PayrollListPresentation.js.map +1 -1
  451. package/dist/components/Payroll/PayrollOverview/PayrollOverview.js +30 -29
  452. package/dist/components/Payroll/PayrollOverview/PayrollOverview.js.map +1 -1
  453. package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchSubmissionBlockerBanner.js +4 -2
  454. package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchSubmissionBlockerBanner.js.map +1 -1
  455. package/dist/components/Payroll/PayrollReceipts/PayrollReceiptsPresentation.js +3 -2
  456. package/dist/components/Payroll/PayrollReceipts/PayrollReceiptsPresentation.js.map +1 -1
  457. package/dist/components/Payroll/RecoveryCases/RecoveryCasesList/RecoveryCasesList.js +7 -6
  458. package/dist/components/Payroll/RecoveryCases/RecoveryCasesList/RecoveryCasesList.js.map +1 -1
  459. package/dist/components/Payroll/RecoveryCases/RecoveryCasesResubmit/RecoveryCasesResubmit.js +7 -6
  460. package/dist/components/Payroll/RecoveryCases/RecoveryCasesResubmit/RecoveryCasesResubmit.js.map +1 -1
  461. package/dist/components/Payroll/RecoveryCases/useRecoveryCaseErrorCode.js +4 -2
  462. package/dist/components/Payroll/RecoveryCases/useRecoveryCaseErrorCode.js.map +1 -1
  463. package/dist/components/Payroll/TransitionCreation/TransitionCreationPresentation.js +4 -2
  464. package/dist/components/Payroll/TransitionCreation/TransitionCreationPresentation.js.map +1 -1
  465. package/dist/components/Payroll/usePreparedPayrollData.js +16 -12
  466. package/dist/components/Payroll/usePreparedPayrollData.js.map +1 -1
  467. package/dist/components/TimeOff/AddEmployeesHoliday/AddEmployeesHoliday.js +11 -0
  468. package/dist/components/TimeOff/AddEmployeesHoliday/AddEmployeesHoliday.js.map +1 -0
  469. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/AddEmployeesToPolicy/AddEmployeesToPolicy.d.ts +3 -0
  470. package/dist/components/TimeOff/AddEmployeesToPolicy/AddEmployeesToPolicy.js +19 -0
  471. package/dist/components/TimeOff/AddEmployeesToPolicy/AddEmployeesToPolicy.js.map +1 -0
  472. package/dist/components/TimeOff/HolidayPolicyDetail/HolidayPolicyDetail.d.ts +6 -0
  473. package/dist/components/TimeOff/HolidayPolicyDetail/HolidayPolicyDetail.js +149 -0
  474. package/dist/components/TimeOff/HolidayPolicyDetail/HolidayPolicyDetail.js.map +1 -0
  475. package/dist/components/TimeOff/HolidayPolicyDetail/HolidayPolicyDetailPresentation.d.ts +2 -0
  476. package/dist/components/TimeOff/HolidayPolicyDetail/HolidayPolicyDetailPresentation.js +80 -0
  477. package/dist/components/TimeOff/HolidayPolicyDetail/HolidayPolicyDetailPresentation.js.map +1 -0
  478. package/dist/components/TimeOff/HolidayPolicyDetail/HolidayPolicyDetailTypes.d.ts +21 -0
  479. package/dist/components/TimeOff/HolidayPolicyDetail/index.d.ts +5 -0
  480. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/HolidaySelectionForm/HolidaySelectionForm.d.ts +1 -0
  481. package/dist/components/TimeOff/HolidaySelectionForm/HolidaySelectionForm.js +115 -0
  482. package/dist/components/TimeOff/HolidaySelectionForm/HolidaySelectionForm.js.map +1 -0
  483. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/HolidaySelectionForm/HolidaySelectionFormPresentation.js +13 -10
  484. package/dist/components/TimeOff/HolidaySelectionForm/HolidaySelectionFormPresentation.js.map +1 -0
  485. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/HolidaySelectionForm/HolidaySelectionFormTypes.d.ts +2 -0
  486. package/dist/components/TimeOff/PolicyList/PolicyList.js +103 -0
  487. package/dist/components/TimeOff/PolicyList/PolicyList.js.map +1 -0
  488. package/dist/components/TimeOff/PolicyList/PolicyListPresentation.js +135 -0
  489. package/dist/components/TimeOff/PolicyList/PolicyListPresentation.js.map +1 -0
  490. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/PolicyList/PolicyListTypes.d.ts +1 -1
  491. package/dist/components/TimeOff/PolicySettings/PolicySettings.js +70 -0
  492. package/dist/components/TimeOff/PolicySettings/PolicySettings.js.map +1 -0
  493. package/dist/components/TimeOff/PolicySettings/PolicySettings.module.scss.js +16 -0
  494. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/PolicySettings/PolicySettings.module.scss.js.map +1 -1
  495. package/dist/components/TimeOff/PolicySettings/PolicySettingsPresentation.js +164 -0
  496. package/dist/components/TimeOff/PolicySettings/PolicySettingsPresentation.js.map +1 -0
  497. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/PolicySettings/PolicySettingsTypes.d.ts +1 -1
  498. package/dist/components/TimeOff/PolicyTypeSelector/PolicyTypeSelector.js +31 -0
  499. package/dist/components/TimeOff/PolicyTypeSelector/PolicyTypeSelector.js.map +1 -0
  500. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/PolicyTypeSelector/PolicyTypeSelectorPresentation.d.ts +1 -1
  501. package/dist/components/TimeOff/PolicyTypeSelector/PolicyTypeSelectorPresentation.js +68 -0
  502. package/dist/components/TimeOff/PolicyTypeSelector/PolicyTypeSelectorPresentation.js.map +1 -0
  503. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/PolicyTypeSelector/PolicyTypeSelectorTypes.d.ts +1 -0
  504. package/dist/components/TimeOff/TimeOffFlow/TimeOffFlow.js.map +1 -0
  505. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/TimeOffFlow/TimeOffFlowComponents.d.ts +3 -3
  506. package/dist/components/TimeOff/TimeOffFlow/TimeOffFlowComponents.js +117 -0
  507. package/dist/components/TimeOff/TimeOffFlow/TimeOffFlowComponents.js.map +1 -0
  508. package/dist/components/TimeOff/TimeOffFlow/timeOffPolicyTypes.d.ts +9 -0
  509. package/dist/components/TimeOff/TimeOffFlow/timeOffPolicyTypes.js +25 -0
  510. package/dist/components/TimeOff/TimeOffFlow/timeOffPolicyTypes.js.map +1 -0
  511. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/TimeOffFlow/timeOffStateMachine.d.ts +4 -2
  512. package/dist/components/TimeOff/TimeOffFlow/timeOffStateMachine.js +487 -0
  513. package/dist/components/TimeOff/TimeOffFlow/timeOffStateMachine.js.map +1 -0
  514. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationForm.d.ts +1 -0
  515. package/dist/components/TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationForm.js +158 -0
  516. package/dist/components/TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationForm.js.map +1 -0
  517. package/dist/components/TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationFormPresentation.js +230 -0
  518. package/dist/components/TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationFormPresentation.js.map +1 -0
  519. package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesHoliday.d.ts +6 -0
  520. package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesHoliday.js +143 -0
  521. package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesHoliday.js.map +1 -0
  522. package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesPresentation.d.ts +2 -0
  523. package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesPresentation.js +103 -0
  524. package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesPresentation.js.map +1 -0
  525. package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesPresentationTypes.d.ts +41 -0
  526. package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesTimeOff.d.ts +9 -0
  527. package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesTimeOff.js +216 -0
  528. package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesTimeOff.js.map +1 -0
  529. package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/useSelectEmployeesData.d.ts +12 -0
  530. package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/useSelectEmployeesData.js +64 -0
  531. package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/useSelectEmployeesData.js.map +1 -0
  532. package/dist/components/TimeOff/TimeOffPolicyDetail/EditEmployeeBalanceModal.d.ts +9 -0
  533. package/dist/components/TimeOff/TimeOffPolicyDetail/EditEmployeeBalanceModal.js +56 -0
  534. package/dist/components/TimeOff/TimeOffPolicyDetail/EditEmployeeBalanceModal.js.map +1 -0
  535. package/dist/components/TimeOff/TimeOffPolicyDetail/TimeOffPolicyDetail.d.ts +5 -0
  536. package/dist/components/TimeOff/TimeOffPolicyDetail/TimeOffPolicyDetail.js +251 -0
  537. package/dist/components/TimeOff/TimeOffPolicyDetail/TimeOffPolicyDetail.js.map +1 -0
  538. package/dist/components/TimeOff/TimeOffPolicyDetail/TimeOffPolicyDetail.module.scss.js +10 -0
  539. package/dist/components/TimeOff/TimeOffPolicyDetail/TimeOffPolicyDetail.module.scss.js.map +1 -0
  540. package/dist/components/TimeOff/TimeOffPolicyDetail/TimeOffPolicyDetailPresentation.d.ts +2 -0
  541. package/dist/components/TimeOff/TimeOffPolicyDetail/TimeOffPolicyDetailPresentation.js +143 -0
  542. package/dist/components/TimeOff/TimeOffPolicyDetail/TimeOffPolicyDetailPresentation.js.map +1 -0
  543. package/dist/components/TimeOff/TimeOffPolicyDetail/TimeOffPolicyDetailTypes.d.ts +52 -0
  544. package/dist/components/TimeOff/TimeOffPolicyDetail/index.d.ts +7 -0
  545. package/dist/components/TimeOff/ViewHolidayEmployees/ViewHolidayEmployees.js +9 -0
  546. package/dist/components/TimeOff/ViewHolidayEmployees/ViewHolidayEmployees.js.map +1 -0
  547. package/dist/components/TimeOff/ViewHolidayPolicyDetails/ViewHolidayPolicyDetails.d.ts +6 -0
  548. package/dist/components/TimeOff/ViewHolidayPolicyDetails/ViewHolidayPolicyDetails.js +9 -0
  549. package/dist/components/TimeOff/ViewHolidayPolicyDetails/ViewHolidayPolicyDetails.js.map +1 -0
  550. package/dist/components/TimeOff/ViewHolidaySchedule/ViewHolidaySchedule.js +9 -0
  551. package/dist/components/TimeOff/ViewHolidaySchedule/ViewHolidaySchedule.js.map +1 -0
  552. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/index.d.ts +7 -8
  553. package/dist/components/TimeOff/index.js +27 -0
  554. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/index.js.map +1 -1
  555. package/dist/components/TimeOff/shared/EmployeeTable/EmployeeTable.d.ts +2 -0
  556. package/dist/components/TimeOff/shared/EmployeeTable/EmployeeTable.js +95 -0
  557. package/dist/components/TimeOff/shared/EmployeeTable/EmployeeTable.js.map +1 -0
  558. package/dist/components/TimeOff/shared/EmployeeTable/EmployeeTable.module.scss.js +10 -0
  559. package/dist/components/TimeOff/shared/EmployeeTable/EmployeeTable.module.scss.js.map +1 -0
  560. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/shared/EmployeeTable/EmployeeTableTypes.d.ts +2 -0
  561. package/dist/components/TimeOff/shared/PolicyDetailLayout/PolicyDetailLayout.d.ts +3 -0
  562. package/dist/components/TimeOff/shared/PolicyDetailLayout/PolicyDetailLayout.js +86 -0
  563. package/dist/components/TimeOff/shared/PolicyDetailLayout/PolicyDetailLayout.js.map +1 -0
  564. package/dist/components/TimeOff/shared/PolicyDetailLayout/PolicyDetailLayoutTypes.d.ts +27 -0
  565. package/dist/components/TimeOff/shared/PolicyDetailLayout/index.d.ts +3 -0
  566. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/shared/holidayHelpers.d.ts +1 -1
  567. package/dist/components/{UNSTABLE_TimeOff → TimeOff}/shared/holidayHelpers.js +8 -8
  568. package/dist/components/TimeOff/shared/holidayHelpers.js.map +1 -0
  569. package/dist/components/TimeOff/shared/holidayHelpers.test.d.ts +1 -0
  570. package/dist/components/index.d.ts +1 -1
  571. package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.d.ts +1 -0
  572. package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js +35 -32
  573. package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js.map +1 -1
  574. package/dist/contexts/ThemeProvider/ThemeProvider.d.ts +8 -0
  575. package/dist/contexts/ThemeProvider/ThemeProvider.js +26 -21
  576. package/dist/contexts/ThemeProvider/ThemeProvider.js.map +1 -1
  577. package/dist/contexts/ThemeProvider/useTheme.d.ts +1 -1
  578. package/dist/contexts/ThemeProvider/useTheme.js.map +1 -1
  579. package/dist/helpers/dateFormatting.d.ts +2 -0
  580. package/dist/helpers/dateFormatting.js +4 -0
  581. package/dist/helpers/dateFormatting.js.map +1 -1
  582. package/dist/i18n/I18n.js +12 -10
  583. package/dist/i18n/I18n.js.map +1 -1
  584. package/dist/i18n/en/Company.Locations.json.js +43 -39
  585. package/dist/i18n/en/Company.Locations.json.js.map +1 -1
  586. package/dist/i18n/en/Company.StateTaxes.json.js +1 -1
  587. package/dist/i18n/en/Company.TimeOff.CreateTimeOffPolicy.json.js +10 -12
  588. package/dist/i18n/en/Company.TimeOff.CreateTimeOffPolicy.json.js.map +1 -1
  589. package/dist/i18n/en/Company.TimeOff.HolidayPolicy.json.js +18 -16
  590. package/dist/i18n/en/Company.TimeOff.HolidayPolicy.json.js.map +1 -1
  591. package/dist/i18n/en/Company.TimeOff.PolicyDetail.json.js +14 -0
  592. package/dist/i18n/en/Company.TimeOff.PolicyDetail.json.js.map +1 -0
  593. package/dist/i18n/en/Company.TimeOff.SelectEmployees.json.js +30 -0
  594. package/dist/i18n/en/Company.TimeOff.SelectEmployees.json.js.map +1 -0
  595. package/dist/i18n/en/Company.TimeOff.TimeOffPolicies.json.js +14 -14
  596. package/dist/i18n/en/Company.TimeOff.TimeOffPolicyDetails.json.js +46 -42
  597. package/dist/i18n/en/Company.TimeOff.TimeOffPolicyDetails.json.js.map +1 -1
  598. package/dist/i18n/en/Employee.FederalTaxes.json.js +16 -10
  599. package/dist/i18n/en/Employee.FederalTaxes.json.js.map +1 -1
  600. package/dist/i18n/en/Employee.Profile.json.js +24 -20
  601. package/dist/i18n/en/Employee.Profile.json.js.map +1 -1
  602. package/dist/i18n/en/Employee.StateTaxes.json.js +14 -6
  603. package/dist/i18n/en/Employee.StateTaxes.json.js.map +1 -1
  604. package/dist/i18n/en/Payroll.GrossUpModal.json.js +12 -10
  605. package/dist/i18n/en/Payroll.GrossUpModal.json.js.map +1 -1
  606. package/dist/index.d.ts +8 -2
  607. package/dist/index.js +118 -93
  608. package/dist/index.js.map +1 -1
  609. package/dist/partner-hook-utils/form/SDKFormProvider.js +18 -14
  610. package/dist/partner-hook-utils/form/SDKFormProvider.js.map +1 -1
  611. package/dist/partner-hook-utils/form/buildFormSchema.js +41 -41
  612. package/dist/partner-hook-utils/form/buildFormSchema.js.map +1 -1
  613. package/dist/partner-hook-utils/form/composeSubmitHandler.d.ts +10 -6
  614. package/dist/partner-hook-utils/form/composeSubmitHandler.js +49 -26
  615. package/dist/partner-hook-utils/form/composeSubmitHandler.js.map +1 -1
  616. package/dist/partner-hook-utils/form/fields/CheckboxHookField.d.ts +1 -1
  617. package/dist/partner-hook-utils/form/fields/CheckboxHookField.js +30 -24
  618. package/dist/partner-hook-utils/form/fields/CheckboxHookField.js.map +1 -1
  619. package/dist/partner-hook-utils/form/fields/DatePickerHookField.d.ts +1 -1
  620. package/dist/partner-hook-utils/form/fields/DatePickerHookField.js +33 -29
  621. package/dist/partner-hook-utils/form/fields/DatePickerHookField.js.map +1 -1
  622. package/dist/partner-hook-utils/form/fields/NumberInputHookField.d.ts +1 -1
  623. package/dist/partner-hook-utils/form/fields/NumberInputHookField.js +34 -28
  624. package/dist/partner-hook-utils/form/fields/NumberInputHookField.js.map +1 -1
  625. package/dist/partner-hook-utils/form/fields/RadioGroupHookField.d.ts +1 -1
  626. package/dist/partner-hook-utils/form/fields/RadioGroupHookField.js +30 -24
  627. package/dist/partner-hook-utils/form/fields/RadioGroupHookField.js.map +1 -1
  628. package/dist/partner-hook-utils/form/fields/SelectHookField.d.ts +1 -1
  629. package/dist/partner-hook-utils/form/fields/SelectHookField.js +38 -32
  630. package/dist/partner-hook-utils/form/fields/SelectHookField.js.map +1 -1
  631. package/dist/partner-hook-utils/form/fields/SwitchHookField.d.ts +1 -1
  632. package/dist/partner-hook-utils/form/fields/SwitchHookField.js +28 -22
  633. package/dist/partner-hook-utils/form/fields/SwitchHookField.js.map +1 -1
  634. package/dist/partner-hook-utils/form/fields/TextInputHookField.d.ts +1 -1
  635. package/dist/partner-hook-utils/form/fields/TextInputHookField.js +30 -24
  636. package/dist/partner-hook-utils/form/fields/TextInputHookField.js.map +1 -1
  637. package/dist/partner-hook-utils/form/fields/withFieldElementRegistry.d.ts +10 -0
  638. package/dist/partner-hook-utils/form/fields/withFieldElementRegistry.js +9 -0
  639. package/dist/partner-hook-utils/form/fields/withFieldElementRegistry.js.map +1 -0
  640. package/dist/partner-hook-utils/form/index.d.ts +3 -0
  641. package/dist/partner-hook-utils/form/resolveFieldError.js +10 -7
  642. package/dist/partner-hook-utils/form/resolveFieldError.js.map +1 -1
  643. package/dist/partner-hook-utils/form/useFieldErrorMessage.js +10 -7
  644. package/dist/partner-hook-utils/form/useFieldErrorMessage.js.map +1 -1
  645. package/dist/partner-hook-utils/form/useHookFieldResolution.d.ts +10 -3
  646. package/dist/partner-hook-utils/form/useHookFieldResolution.js +6 -6
  647. package/dist/partner-hook-utils/form/useHookFieldResolution.js.map +1 -1
  648. package/dist/partner-hook-utils/form/useHookFormInternals.d.ts +22 -0
  649. package/dist/partner-hook-utils/form/useHookFormInternals.js +12 -0
  650. package/dist/partner-hook-utils/form/useHookFormInternals.js.map +1 -0
  651. package/dist/partner-hook-utils/form/withOptions.d.ts +1 -1
  652. package/dist/partner-hook-utils/form/withOptions.js.map +1 -1
  653. package/dist/partner-hook-utils/types.d.ts +16 -1
  654. package/dist/shared/constants.d.ts +24 -0
  655. package/dist/shared/constants.js +42 -30
  656. package/dist/shared/constants.js.map +1 -1
  657. package/dist/style.css +1 -1
  658. package/dist/types/i18next.d.ts +82 -14
  659. package/docs/reference/endpoint-inventory.json +453 -123
  660. package/package.json +22 -20
  661. package/dist/components/Contractor/Profile/ContractorProfileForm.module.scss.js +0 -8
  662. package/dist/components/Contractor/Profile/ContractorProfileForm.module.scss.js.map +0 -1
  663. package/dist/components/Employee/Compensation/Actions.d.ts +0 -1
  664. package/dist/components/Employee/Compensation/Actions.js +0 -38
  665. package/dist/components/Employee/Compensation/Actions.js.map +0 -1
  666. package/dist/components/Employee/Compensation/Edit.d.ts +0 -5
  667. package/dist/components/Employee/Compensation/Edit.js +0 -178
  668. package/dist/components/Employee/Compensation/Edit.js.map +0 -1
  669. package/dist/components/Employee/Compensation/Head.d.ts +0 -1
  670. package/dist/components/Employee/Compensation/Head.js +0 -22
  671. package/dist/components/Employee/Compensation/Head.js.map +0 -1
  672. package/dist/components/Employee/Compensation/List.d.ts +0 -1
  673. package/dist/components/Employee/Compensation/List.js +0 -71
  674. package/dist/components/Employee/Compensation/List.js.map +0 -1
  675. package/dist/components/Employee/Compensation/useCompensation.js.map +0 -1
  676. package/dist/components/Employee/FederalTaxes/Actions.d.ts +0 -1
  677. package/dist/components/Employee/FederalTaxes/Actions.js +0 -13
  678. package/dist/components/Employee/FederalTaxes/Actions.js.map +0 -1
  679. package/dist/components/Employee/FederalTaxes/FederalForm.d.ts +0 -12
  680. package/dist/components/Employee/FederalTaxes/FederalForm.js +0 -109
  681. package/dist/components/Employee/FederalTaxes/FederalForm.js.map +0 -1
  682. package/dist/components/Employee/FederalTaxes/FederalTaxes.d.ts +0 -6
  683. package/dist/components/Employee/FederalTaxes/FederalTaxes.js +0 -84
  684. package/dist/components/Employee/FederalTaxes/FederalTaxes.js.map +0 -1
  685. package/dist/components/Employee/FederalTaxes/Head.d.ts +0 -1
  686. package/dist/components/Employee/FederalTaxes/Head.js +0 -24
  687. package/dist/components/Employee/FederalTaxes/Head.js.map +0 -1
  688. package/dist/components/Employee/FederalTaxes/useFederalTaxes.d.ts +0 -5
  689. package/dist/components/Employee/FederalTaxes/useFederalTaxes.js +0 -20
  690. package/dist/components/Employee/FederalTaxes/useFederalTaxes.js.map +0 -1
  691. package/dist/components/Employee/Profile/AdminProfile.js +0 -358
  692. package/dist/components/Employee/Profile/AdminProfile.js.map +0 -1
  693. package/dist/components/Employee/Profile/EmployeeProfile.js.map +0 -1
  694. package/dist/components/Employee/Profile/Profile.js.map +0 -1
  695. package/dist/components/Employee/Profile/index.d.ts +0 -2
  696. package/dist/components/Employee/StateTaxes/Actions.d.ts +0 -1
  697. package/dist/components/Employee/StateTaxes/Actions.js +0 -13
  698. package/dist/components/Employee/StateTaxes/Actions.js.map +0 -1
  699. package/dist/components/Employee/StateTaxes/StateForm.d.ts +0 -6
  700. package/dist/components/Employee/StateTaxes/StateForm.js +0 -34
  701. package/dist/components/Employee/StateTaxes/StateForm.js.map +0 -1
  702. package/dist/components/Employee/StateTaxes/StateTaxes.d.ts +0 -7
  703. package/dist/components/Employee/StateTaxes/StateTaxes.js +0 -98
  704. package/dist/components/Employee/StateTaxes/StateTaxes.js.map +0 -1
  705. package/dist/components/Employee/StateTaxes/useStateTaxes.d.ts +0 -8
  706. package/dist/components/Employee/StateTaxes/useStateTaxes.js +0 -20
  707. package/dist/components/Employee/StateTaxes/useStateTaxes.js.map +0 -1
  708. package/dist/components/UNSTABLE_TimeOff/AddEmployeesHoliday/AddEmployeesHoliday.js +0 -46
  709. package/dist/components/UNSTABLE_TimeOff/AddEmployeesHoliday/AddEmployeesHoliday.js.map +0 -1
  710. package/dist/components/UNSTABLE_TimeOff/AddEmployeesToPolicy/AddEmployeesToPolicy.js +0 -46
  711. package/dist/components/UNSTABLE_TimeOff/AddEmployeesToPolicy/AddEmployeesToPolicy.js.map +0 -1
  712. package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionForm.js +0 -49
  713. package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionForm.js.map +0 -1
  714. package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionFormPresentation.js.map +0 -1
  715. package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyList.js +0 -107
  716. package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyList.js.map +0 -1
  717. package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyListPresentation.js +0 -124
  718. package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyListPresentation.js.map +0 -1
  719. package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettings.js +0 -46
  720. package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettings.js.map +0 -1
  721. package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettings.module.scss.js +0 -18
  722. package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettingsPresentation.js +0 -166
  723. package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettingsPresentation.js.map +0 -1
  724. package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelector.js +0 -29
  725. package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelector.js.map +0 -1
  726. package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelectorPresentation.js +0 -66
  727. package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelectorPresentation.js.map +0 -1
  728. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlow.js.map +0 -1
  729. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlowComponents.js +0 -103
  730. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlowComponents.js.map +0 -1
  731. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/timeOffStateMachine.js +0 -290
  732. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/timeOffStateMachine.js.map +0 -1
  733. package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationForm.js +0 -71
  734. package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationForm.js.map +0 -1
  735. package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationFormPresentation.js +0 -206
  736. package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationFormPresentation.js.map +0 -1
  737. package/dist/components/UNSTABLE_TimeOff/ViewHolidayEmployees/ViewHolidayEmployees.js +0 -35
  738. package/dist/components/UNSTABLE_TimeOff/ViewHolidayEmployees/ViewHolidayEmployees.js.map +0 -1
  739. package/dist/components/UNSTABLE_TimeOff/ViewHolidaySchedule/ViewHolidaySchedule.js +0 -35
  740. package/dist/components/UNSTABLE_TimeOff/ViewHolidaySchedule/ViewHolidaySchedule.js.map +0 -1
  741. package/dist/components/UNSTABLE_TimeOff/ViewPolicyDetails/ViewPolicyDetails.d.ts +0 -5
  742. package/dist/components/UNSTABLE_TimeOff/ViewPolicyDetails/ViewPolicyDetails.js +0 -35
  743. package/dist/components/UNSTABLE_TimeOff/ViewPolicyDetails/ViewPolicyDetails.js.map +0 -1
  744. package/dist/components/UNSTABLE_TimeOff/ViewPolicyEmployees/ViewPolicyEmployees.d.ts +0 -5
  745. package/dist/components/UNSTABLE_TimeOff/ViewPolicyEmployees/ViewPolicyEmployees.js +0 -35
  746. package/dist/components/UNSTABLE_TimeOff/ViewPolicyEmployees/ViewPolicyEmployees.js.map +0 -1
  747. package/dist/components/UNSTABLE_TimeOff/index.js +0 -29
  748. package/dist/components/UNSTABLE_TimeOff/shared/EmployeeTable/EmployeeTable.d.ts +0 -2
  749. package/dist/components/UNSTABLE_TimeOff/shared/holidayHelpers.js.map +0 -1
  750. /package/dist/components/Employee/{Compensation/shared/useCompensationForm/compensationSchemaParity.test.d.ts → FederalTaxes/shared/useFederalTaxesForm/federalTaxesSchema.test.d.ts} +0 -0
  751. /package/dist/components/Employee/Profile/{AdminProfile.d.ts → onboarding/AdminProfile.d.ts} +0 -0
  752. /package/dist/components/Employee/Profile/{AdminProfile.module.scss.js → onboarding/AdminProfile.module.scss.js} +0 -0
  753. /package/dist/components/Employee/Profile/{AdminProfile.module.scss.js.map → onboarding/AdminProfile.module.scss.js.map} +0 -0
  754. /package/dist/components/Employee/Profile/{EmployeeProfile.d.ts → onboarding/EmployeeProfile.d.ts} +0 -0
  755. /package/dist/components/Employee/Profile/{EmployeeProfile.module.scss.js → onboarding/EmployeeProfile.module.scss.js} +0 -0
  756. /package/dist/components/Employee/Profile/{EmployeeProfile.module.scss.js.map → onboarding/EmployeeProfile.module.scss.js.map} +0 -0
  757. /package/dist/components/{UNSTABLE_TimeOff/TimeOffFlow/timeOffStateMachine.test.d.ts → Employee/StateTaxes/shared/useEmployeeStateTaxesForm/employeeStateTaxesSchema.test.d.ts} +0 -0
  758. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/AddEmployeesHoliday/AddEmployeesHoliday.d.ts +0 -0
  759. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/HolidaySelectionForm/HolidaySelectionFormPresentation.d.ts +0 -0
  760. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/PolicyList/PolicyList.d.ts +0 -0
  761. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/PolicyList/PolicyListPresentation.d.ts +0 -0
  762. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/PolicyList/PolicyListPresentation.module.scss.js +0 -0
  763. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/PolicyList/PolicyListPresentation.module.scss.js.map +0 -0
  764. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/PolicySettings/PolicySettings.d.ts +0 -0
  765. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/PolicySettings/PolicySettingsPresentation.d.ts +0 -0
  766. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/PolicyTypeSelector/PolicyTypeSelector.d.ts +0 -0
  767. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/TimeOffFlow/TimeOffFlow.d.ts +0 -0
  768. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/TimeOffFlow/TimeOffFlow.js +0 -0
  769. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/TimeOffFlow/index.d.ts +0 -0
  770. /package/dist/components/{UNSTABLE_TimeOff/shared/holidayHelpers.test.d.ts → TimeOff/TimeOffFlow/timeOffStateMachine.test.d.ts} +0 -0
  771. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationForm.module.scss.js +0 -0
  772. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationForm.module.scss.js.map +0 -0
  773. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationFormPresentation.d.ts +0 -0
  774. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationFormTypes.d.ts +0 -0
  775. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/TimeOffManagement/PolicyConfigurationForm/index.d.ts +0 -0
  776. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/ViewHolidayEmployees/ViewHolidayEmployees.d.ts +0 -0
  777. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/ViewHolidaySchedule/ViewHolidaySchedule.d.ts +0 -0
  778. /package/dist/components/{UNSTABLE_TimeOff → TimeOff}/shared/EmployeeTable/index.d.ts +0 -0
@@ -1,52 +1,56 @@
1
- const e = "Time off policies", o = "Add employee", a = { employees: "Employees", policyDetails: "Policy details" }, r = "Details", i = "Edit policy", t = { label: "Policy type", vacation: "Paid time off", sick: "Sick leave", custom: "Custom policy", parentalLeave: "Parental leave", weather: "Weather policy", volunteer: "Volunteer policy", personalDay: "Personal day", learningAndDevelopment: "Learning and development", juryDuty: "Jury duty", floatingHoliday: "Floating holiday", bereavement: "Bereavement" }, l = "Policy name", n = "Accrual rate", c = { label: "Accrual type", unlimited: "Unlimited", perPayPeriod: "Fixed", perCalendarYear: "Fixed", perAnniversaryYear: "Fixed", perHourWorked: "Based on hours worked", perHourWorkedNoOvertime: "Based on hours worked", perHourPaid: "Based on hours worked", perHourPaidNoOvertime: "Based on hours worked" }, m = { label: "Accrual rate", unlimited: "-", perPayPeriod: "{{accrualRate}} hour(s) per pay period", perCalendarYear: "{{accrualRate}} hour(s) per calendar year", perAnniversaryYear: "{{accrualRate}} hour(s) per anniversary year", perHourWorked: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) worked, including overtime", perHourWorkedNoOvertime: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) worked, excluding overtime", perHourPaid: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) including overtime and all paid hours", perHourPaidNoOvertime: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) worked and all paid hours, excluding overtime" }, s = "Reset date", d = "Policy settings", u = { label: "Accrual maximum", noMaximum: "No maximum", withMaximum: "{{count}} hour(s) per year" }, y = { label: "Balance maximum", noMaximum: "No maximum", withMaximum: "{{count}} hour(s)" }, p = { label: "Carry over limit", noLimit: "No carry over limit", withLimit: "{{count}} hour(s)" }, h = { label: "Waiting period", noPeriod: "No waiting period", withPeriod: "{{count}} day(s)" }, v = { label: "Paid out on termination", yes: "Yes, remaining time off balances for this policy are paid out when an employee is dismissed.", no: "No, remaining time off balances for this policy are not paid out when an employee is dismissed." }, f = { balance: "Balance (hrs)", actions: "Actions", editBalance: "Edit balance", removeEmployee: "Remove employee", removeEmployees: "Remove employees" }, b = { title: "Add employee to this policy", description: "Select the employees to add to this policy. Employees not shown are either already included or not eligible." }, R = { title: "Edit {{name}} time off balance", currentBalance: "Current balance", hoursUnit: "hours" }, P = { title: "Remove {{name}} from policy?", alert: "When you remove an employee from a policy, any existing balance is removed.", removeCta: "Remove employee" }, g = { title: "Remove {{count}} employee(s) from policy?", alert: "When you remove an employee from a policy, any existing balance is removed.", removeCta: "Remove employees" }, x = { employeeRemoved: "{{name}} has been removed from the policy.", employeesRemoved_one: "{{count}} employee has been removed from the policy.", employeesRemoved_other: "{{count}} employees have been removed from the policy.", employeesAdded_one: "{{count}} employee has been added to this policy.", employeesAdded_other: "{{count}} employees have been added to this policy.", balanceUpdated: "{{name}}'s time off balance has been updated." }, w = {
1
+ const e = "Time off policies", a = "Add employee", o = { vacation: "Paid time off policy", sick: "Sick leave policy" }, r = { employees: "Employees", policyDetails: "Policy details" }, t = "Details", i = "Edit policy", l = { label: "Policy type", vacation: "Paid time off", sick: "Sick leave", custom: "Custom policy", parentalLeave: "Parental leave", weather: "Weather policy", volunteer: "Volunteer policy", personalDay: "Personal day", learningAndDevelopment: "Learning and development", juryDuty: "Jury duty", floatingHoliday: "Floating holiday", bereavement: "Bereavement" }, n = "Policy name", c = "Accrual rate", s = { label: "Accrual type", unlimited: "Unlimited", perPayPeriod: "Fixed", perCalendarYear: "Fixed", perAnniversaryYear: "Fixed", perHourWorked: "Based on hours worked", perHourWorkedNoOvertime: "Based on hours worked", perHourPaid: "Based on hours worked", perHourPaidNoOvertime: "Based on hours worked" }, d = { label: "Accrual rate", unlimited: "-", perPayPeriod: "{{accrualRate}} hour(s) per pay period", perCalendarYear: "{{accrualRate}} hour(s) per calendar year", perAnniversaryYear: "{{accrualRate}} hour(s) per anniversary year", perHourWorked: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) worked, including overtime", perHourWorkedNoOvertime: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) worked, excluding overtime", perHourPaid: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) including overtime and all paid hours", perHourPaidNoOvertime: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) worked and all paid hours, excluding overtime" }, m = "Reset date", u = "Policy settings", p = "Change", y = { label: "Accrual maximum", noMaximum: "No maximum", withMaximum: "{{count}} hour(s) per year" }, h = { label: "Balance maximum", noMaximum: "No maximum", withMaximum: "{{count}} hour(s)" }, v = { label: "Carry over limit", noLimit: "No carry over limit", withLimit: "{{count}} hour(s)" }, b = { label: "Waiting period", noPeriod: "No waiting period", withPeriod: "{{count}} day(s)" }, f = { label: "Paid out on termination", yes: "Yes, remaining time off balances for this policy are paid out when an employee is dismissed.", no: "No, remaining time off balances for this policy are not paid out when an employee is dismissed." }, P = { balance: "Balance (hrs)", actions: "Actions", editBalance: "Edit balance", removeEmployee: "Remove employee" }, g = { title: "Add employee to this policy", description: "Select the employees to add to this policy. Employees not shown are either already included or not eligible." }, R = { title: "Edit {{name}} time off balance", balanceLabel: "Balance (hrs)", currentBalance: "Current balance", hoursUnit: "hours", cancelCta: "Cancel", updateCta: "Update balance" }, x = { title: "Remove {{name}} from policy?", alert: "When you remove an employee from a policy, any existing balance is removed.", removeCta: "Remove employee" }, w = { title: "Remove {{count}} employee(s) from policy?", alert: "When you remove an employee from a policy, any existing balance is removed.", removeCta: "Remove employees" }, k = { employeeRemoved: "{{name}} has been removed from the policy.", employeesAdded_one: "{{count}} employee has been added to this policy.", employeesAdded_other: "{{count}} employees have been added to this policy.", balanceUpdated: "{{name}}'s time off balance has been updated." }, C = {
2
2
  breadcrumb: e,
3
- addEmployeeCta: o,
4
- tabs: a,
5
- details: r,
3
+ addEmployeeCta: a,
4
+ subtitle: o,
5
+ tabs: r,
6
+ details: t,
6
7
  editPolicyCta: i,
7
- policyType: t,
8
- policyName: l,
9
- accrualRateTitle: n,
10
- accrualMethod: c,
11
- accrualRate: m,
12
- resetDate: s,
13
- policySettingsTitle: d,
14
- maxAccrualHoursPerYear: u,
15
- maxHours: y,
16
- carryoverLimitHours: p,
17
- accrualWaitingPeriodDays: h,
18
- paidOutOnTermination: v,
19
- employeeTable: f,
20
- addEmployeeModal: b,
8
+ policyType: l,
9
+ policyName: n,
10
+ accrualRateTitle: c,
11
+ accrualMethod: s,
12
+ accrualRate: d,
13
+ resetDate: m,
14
+ policySettingsTitle: u,
15
+ changeSettingsCta: p,
16
+ maxAccrualHoursPerYear: y,
17
+ maxHours: h,
18
+ carryoverLimitHours: v,
19
+ accrualWaitingPeriodDays: b,
20
+ paidOutOnTermination: f,
21
+ employeeTable: P,
22
+ addEmployeeModal: g,
21
23
  editBalanceModal: R,
22
- removeEmployeeModal: P,
23
- removeEmployeesModal: g,
24
- flash: x
24
+ removeEmployeeModal: x,
25
+ removeEmployeesModal: w,
26
+ flash: k
25
27
  };
26
28
  export {
27
- c as accrualMethod,
28
- m as accrualRate,
29
- n as accrualRateTitle,
30
- h as accrualWaitingPeriodDays,
31
- o as addEmployeeCta,
32
- b as addEmployeeModal,
29
+ s as accrualMethod,
30
+ d as accrualRate,
31
+ c as accrualRateTitle,
32
+ b as accrualWaitingPeriodDays,
33
+ a as addEmployeeCta,
34
+ g as addEmployeeModal,
33
35
  e as breadcrumb,
34
- p as carryoverLimitHours,
35
- w as default,
36
- r as details,
36
+ v as carryoverLimitHours,
37
+ p as changeSettingsCta,
38
+ C as default,
39
+ t as details,
37
40
  R as editBalanceModal,
38
41
  i as editPolicyCta,
39
- f as employeeTable,
40
- x as flash,
41
- u as maxAccrualHoursPerYear,
42
- y as maxHours,
43
- v as paidOutOnTermination,
44
- l as policyName,
45
- d as policySettingsTitle,
46
- t as policyType,
47
- P as removeEmployeeModal,
48
- g as removeEmployeesModal,
49
- s as resetDate,
50
- a as tabs
42
+ P as employeeTable,
43
+ k as flash,
44
+ y as maxAccrualHoursPerYear,
45
+ h as maxHours,
46
+ f as paidOutOnTermination,
47
+ n as policyName,
48
+ u as policySettingsTitle,
49
+ l as policyType,
50
+ x as removeEmployeeModal,
51
+ w as removeEmployeesModal,
52
+ m as resetDate,
53
+ o as subtitle,
54
+ r as tabs
51
55
  };
52
56
  //# sourceMappingURL=Company.TimeOff.TimeOffPolicyDetails.json.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Company.TimeOff.TimeOffPolicyDetails.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"Company.TimeOff.TimeOffPolicyDetails.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,11 +1,11 @@
1
- const e = "Additional withholding", t = "Step 4b: Deductions", o = "Step 3: Dependents (if applicable)", i = "Step 4c: Extra withholding", l = "Step 1c: Federal filing status (1c)", n = "Select filing status...", s = "Federal tax withholdings (Form W-4)", a = "Federal withholding allowance", r = "This field is a required field. Please enter a value.", c = "Filing status", d = "Exempt from withholding", h = "Head of household", u = "Married", p = "Married, but withhold as Single", f = "Single", g = 'Includes spouse, if applicable. Answering 2c will result in a higher withholding, but to preserve privacy, this can be left unchecked. <IrsLink href="https://www.irs.gov/newsroom/faqs-on-the-2020-form-w-4" target="_blank">Learn more on the IRS website</IrsLink>.', w = `We'll use this information to withhold the appropriate federal taxes from each paycheck. If you're unsure what to enter here, refer to <IrsCalculatorLink href="https://www.irs.gov/pub/irs-pdf/fw4.pdf" target="_blank">Form W-4</IrsCalculatorLink> to calculate the values, visit our <HelpCenterLink href="https://support.gusto.com" target="_blank">Help Center</HelpCenterLink>, or consult your tax advisor.`, b = "Step 2c: Multiple jobs (2c)", m = "Step 4a: Other income", S = "If you select Exempt from withholding, we won't withhold federal income taxes, but we'll still report taxable wages on a W-2. Keep in mind that anyone who claims exemption from withholding needs to submit a new W-4 each year.", x = "Continue", F = "No", I = "Yes", k = { federalFilingStatus: "Please select filing status", federalTwoJobs: "Please select an option" }, L = {
1
+ const e = "Additional withholding", t = "Step 4b: Deductions", o = "Step 3: Dependents (if applicable)", i = "Step 4c: Extra withholding", l = "Step 1c: Federal filing status (1c)", s = "Select filing status...", n = "Federal tax withholdings (Form W-4)", a = "Federal withholding allowance", r = "This field is a required field. Please enter a value.", c = "Filing status", d = "Exempt from withholding", h = "Head of household", u = "Married", p = "Married, but withhold as Single", f = "Single", g = 'Includes spouse, if applicable. Answering 2c will result in a higher withholding, but to preserve privacy, this can be left unchecked. <IrsLink href="https://www.irs.gov/newsroom/faqs-on-the-2020-form-w-4" target="_blank">Learn more on the IRS website</IrsLink>.', w = `We'll use this information to withhold the appropriate federal taxes from each paycheck. If you're unsure what to enter here, refer to <IrsCalculatorLink href="https://www.irs.gov/pub/irs-pdf/fw4.pdf" target="_blank">Form W-4</IrsCalculatorLink> to calculate the values, visit our <HelpCenterLink href="https://support.gusto.com" target="_blank">Help Center</HelpCenterLink>, or consult your tax advisor.`, b = "Step 2c: Multiple jobs (2c)", m = "Step 4a: Other income", S = "If you select Exempt from withholding, we won't withhold federal income taxes, but we'll still report taxable wages on a W-2. Keep in mind that anyone who claims exemption from withholding needs to submit a new W-4 each year.", x = "Continue", k = "Save", v = "Cancel", C = "Successfully updated federal tax settings.", I = "No", L = "Yes", F = { federalFilingStatus: "Please select filing status", federalTwoJobs: "Please select an option" }, W = {
2
2
  additionalWithholding: e,
3
3
  deductions: t,
4
4
  dependentsTotalIfApplicable: o,
5
5
  extraWithholding: i,
6
6
  federalFilingStatus1c: l,
7
- federalFilingStatusPlaceholder: n,
8
- federalTaxesTitle: s,
7
+ federalFilingStatusPlaceholder: s,
8
+ federalTaxesTitle: n,
9
9
  federalWithholdingAllowance: a,
10
10
  fieldIsRequired: r,
11
11
  filingStatus: c,
@@ -20,19 +20,23 @@ const e = "Additional withholding", t = "Step 4b: Deductions", o = "Step 3: Depe
20
20
  otherIncome: m,
21
21
  selectWithholdingDescription: S,
22
22
  submitCta: x,
23
+ saveCta: k,
24
+ cancelCta: v,
25
+ successAlert: C,
23
26
  twoJobNoLabel: "No",
24
27
  twoJobYesLabel: "Yes",
25
- validations: k
28
+ validations: F
26
29
  };
27
30
  export {
28
31
  e as additionalWithholding,
32
+ v as cancelCta,
29
33
  t as deductions,
30
- L as default,
34
+ W as default,
31
35
  o as dependentsTotalIfApplicable,
32
36
  i as extraWithholding,
33
37
  l as federalFilingStatus1c,
34
- n as federalFilingStatusPlaceholder,
35
- s as federalTaxesTitle,
38
+ s as federalFilingStatusPlaceholder,
39
+ n as federalTaxesTitle,
36
40
  a as federalWithholdingAllowance,
37
41
  r as fieldIsRequired,
38
42
  c as filingStatus,
@@ -45,10 +49,12 @@ export {
45
49
  w as irsCalculator,
46
50
  b as multipleJobs2c,
47
51
  m as otherIncome,
52
+ k as saveCta,
48
53
  S as selectWithholdingDescription,
49
54
  x as submitCta,
50
- F as twoJobNoLabel,
51
- I as twoJobYesLabel,
52
- k as validations
55
+ C as successAlert,
56
+ I as twoJobNoLabel,
57
+ L as twoJobYesLabel,
58
+ F as validations
53
59
  };
54
60
  //# sourceMappingURL=Employee.FederalTaxes.json.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Employee.FederalTaxes.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"Employee.FederalTaxes.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,4 +1,4 @@
1
- const e = "Cancel", t = "This information will be used for payroll and taxes, so double-check that it's accurate.", s = "Date of birth", o = "Personal email", a = "Use an email that's not associated with your company.", i = "Legal first name", r = "Employee Form", n = "Legal last name", l = "Middle initial", c = "Preferred first name", d = "Invite this employee to enter their own details online.", m = "Your employee will be invited to enter their information on their own time.", h = "Social Security Number (9 digit)", f = "***-**-****", p = "Your employee’s first day of work at your company.", y = "Start date", u = "Continue", w = "Basics", k = { email: "Valid email is required", firstName: "Please enter valid first name", lastName: "Please enter valid last name", startDate: "Please select valid start date", startDateOutOfRange: "An employee must have a start date that is within six months from today." }, b = "Work address", D = "The primary location where the employee will be working.", P = "Select work address...", g = "Work Address", v = "This is where you primarily work. We need this information to make sure your pay is accurate. Please reach out to your employer if this looks incorrect.", A = {
1
+ const e = "Cancel", t = "This information will be used for payroll and taxes, so double-check that it's accurate.", s = "Date of birth", o = "Personal email", a = "Use an email that's not associated with your company.", i = "Legal first name", r = "Employee Form", n = "Legal last name", l = "Middle initial", c = "Preferred first name", d = "Invite this employee to enter their own details online.", m = "Your employee will be invited to enter their information on their own time.", u = "Social Security Number (9 digit)", f = "***-**-****", p = "Your employee’s first day of work at your company.", h = "Start date", y = "Save", w = "Continue", k = "Successfully updated profile", b = "Basics", D = { email: "Valid email is required", firstName: "Please enter valid first name", lastName: "Please enter valid last name", startDate: "Please select valid start date", startDateOutOfRange: "An employee must have a start date that is within six months from today." }, v = "Work address", A = "The primary location where the employee will be working.", P = "Select work address...", S = "Work Address", g = "This is where you primarily work. We need this information to make sure your pay is accurate. Please reach out to your employer if this looks incorrect.", L = {
2
2
  cancelCta: e,
3
3
  description: t,
4
4
  dobLabel: s,
@@ -11,22 +11,24 @@ const e = "Cancel", t = "This information will be used for payroll and taxes, so
11
11
  preferredFirstName: c,
12
12
  selfOnboardingLabel: d,
13
13
  selfOnboardingDescription: m,
14
- ssnLabel: h,
14
+ ssnLabel: u,
15
15
  ssnMask: f,
16
16
  startDateDescription: p,
17
- startDateLabel: y,
18
- submitCta: u,
19
- title: w,
20
- validations: k,
21
- workAddress: b,
22
- workAddressDescription: D,
17
+ startDateLabel: h,
18
+ saveCta: y,
19
+ submitCta: w,
20
+ successAlert: k,
21
+ title: b,
22
+ validations: D,
23
+ workAddress: v,
24
+ workAddressDescription: A,
23
25
  workAddressPlaceholder: P,
24
- workAddressSectionTitle: g,
25
- workAddressSectionDescription: v
26
+ workAddressSectionTitle: S,
27
+ workAddressSectionDescription: g
26
28
  };
27
29
  export {
28
30
  e as cancelCta,
29
- A as default,
31
+ L as default,
30
32
  t as description,
31
33
  s as dobLabel,
32
34
  o as email,
@@ -36,19 +38,21 @@ export {
36
38
  n as lastName,
37
39
  l as middleInitial,
38
40
  c as preferredFirstName,
41
+ y as saveCta,
39
42
  m as selfOnboardingDescription,
40
43
  d as selfOnboardingLabel,
41
- h as ssnLabel,
44
+ u as ssnLabel,
42
45
  f as ssnMask,
43
46
  p as startDateDescription,
44
- y as startDateLabel,
45
- u as submitCta,
46
- w as title,
47
- k as validations,
48
- b as workAddress,
49
- D as workAddressDescription,
47
+ h as startDateLabel,
48
+ w as submitCta,
49
+ k as successAlert,
50
+ b as title,
51
+ D as validations,
52
+ v as workAddress,
53
+ A as workAddressDescription,
50
54
  P as workAddressPlaceholder,
51
- v as workAddressSectionDescription,
52
- g as workAddressSectionTitle
55
+ g as workAddressSectionDescription,
56
+ S as workAddressSectionTitle
53
57
  };
54
58
  //# sourceMappingURL=Employee.Profile.json.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Employee.Profile.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"Employee.Profile.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,10 +1,18 @@
1
- const t = "{{state}} Tax Requirements", e = "Continue", s = {
2
- stateTaxesTitle: t,
3
- submitCta: e
1
+ const e = "{{state}} Tax Requirements", t = "Continue", s = "Save", a = "Cancel", n = "Successfully updated state tax settings.", c = { required: "This field is a required field. Please enter a value." }, i = {
2
+ stateTaxesTitle: e,
3
+ submitCta: t,
4
+ saveCta: s,
5
+ cancelCta: a,
6
+ successAlert: n,
7
+ validations: c
4
8
  };
5
9
  export {
6
- s as default,
7
- t as stateTaxesTitle,
8
- e as submitCta
10
+ a as cancelCta,
11
+ i as default,
12
+ s as saveCta,
13
+ e as stateTaxesTitle,
14
+ t as submitCta,
15
+ n as successAlert,
16
+ c as validations
9
17
  };
10
18
  //# sourceMappingURL=Employee.StateTaxes.json.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Employee.StateTaxes.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
1
+ {"version":3,"file":"Employee.StateTaxes.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"}
@@ -1,26 +1,28 @@
1
- const t = "Enter a net amount", a = "Please enter the net amount you want this employee to receive. We'll then automatically calculate the gross amount you need to pay, including taxes and deductions.", e = "This will override any previously entered amounts.", n = "Net amount", l = "Calculate", o = "Calculating...", s = "Apply", c = "Cancel", u = "Calculated gross pay", r = "Unable to calculate gross up. Please try again.", i = {
1
+ const t = "Enter a net amount", a = "Please enter the net amount you want this employee to receive. We'll then automatically calculate the gross amount you need to pay, including taxes and deductions.", e = "This will override any previously entered amounts.", n = "Net amount", o = "Calculate", l = "Calculating...", s = "Apply", c = "Cancel", r = "Calculated gross pay", u = "Unable to calculate gross up. Please try again.", i = { netPay: "Net amount must be greater than zero cents" }, y = {
2
2
  title: t,
3
3
  description: a,
4
4
  warning: e,
5
5
  netPayLabel: n,
6
- calculateCta: l,
7
- calculatingCta: o,
6
+ calculateCta: o,
7
+ calculatingCta: l,
8
8
  applyCta: s,
9
9
  cancelCta: c,
10
- grossPayResult: u,
11
- errorMessage: r
10
+ grossPayResult: r,
11
+ errorMessage: u,
12
+ validations: i
12
13
  };
13
14
  export {
14
15
  s as applyCta,
15
- l as calculateCta,
16
- o as calculatingCta,
16
+ o as calculateCta,
17
+ l as calculatingCta,
17
18
  c as cancelCta,
18
- i as default,
19
+ y as default,
19
20
  a as description,
20
- r as errorMessage,
21
- u as grossPayResult,
21
+ u as errorMessage,
22
+ r as grossPayResult,
22
23
  n as netPayLabel,
23
24
  t as title,
25
+ i as validations,
24
26
  e as warning
25
27
  };
26
28
  //# sourceMappingURL=Payroll.GrossUpModal.json.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Payroll.GrossUpModal.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
1
+ {"version":3,"file":"Payroll.GrossUpModal.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
package/dist/index.d.ts CHANGED
@@ -9,14 +9,20 @@ export type { ObservabilityHook, ObservabilityError, ObservabilityMetric, Observ
9
9
  export type { ConfirmWireDetailsProps, ConfirmWireDetailsComponentType, } from './components/Payroll/ConfirmWireDetails';
10
10
  export { composeErrorHandler, collectErrors, SDKFormProvider, composeSubmitHandler, useFieldErrorMessage, useDeriveFieldsMetadata, withOptions, FormFieldsMetadataProvider, TextInputHookField, SelectHookField, CheckboxHookField, NumberInputHookField, DatePickerHookField, RadioGroupHookField, SwitchHookField, } from './partner-hook-utils';
11
11
  export type { MixedErrorSource, SubmitStateForErrorHandling, HookFormInternals, HookLoadingResult, HookSubmitResult, HookErrorHandling, BaseHookReady, BaseFormHookReady, FormHookResult, FieldMetadata, FieldMetadataWithOptions, FieldsMetadata, ValidationMessages, BaseFieldProps, HookFieldProps, TextInputHookFieldProps, SelectHookFieldProps, CheckboxHookFieldProps, NumberInputHookFieldProps, DatePickerHookFieldProps, RadioGroupHookFieldProps, SwitchHookFieldProps, TextInputProps, SelectProps, SelectOption, CheckboxProps, NumberInputProps, DatePickerProps, RadioGroupProps, RadioGroupOption, SwitchProps, FormFieldsMetadataContextValue, } from './partner-hook-utils';
12
- export { useCompensationForm, CompensationErrorCodes, createCompensationSchema, } from './components/Employee/Compensation/shared/useCompensationForm';
13
- export type { CompensationSubmitCallbacks, CompensationSubmitOptions, UseCompensationFormProps, UseCompensationFormResult, UseCompensationFormReady, CompensationFieldsMetadata, CompensationFormFields, CompensationErrorCode, CompensationOptionalFieldsToRequire, CompensationFormData, CompensationFormOutputs, RequiredValidation, RateValidation, StartDateFieldProps, JobTitleFieldProps, FlsaStatusFieldProps, RateFieldProps, PaymentUnitFieldProps, AdjustForMinimumWageFieldProps, MinimumWageIdFieldProps, TwoPercentShareholderFieldProps, StateWcCoveredFieldProps, StateWcClassCodeFieldProps, } from './components/Employee/Compensation/shared/useCompensationForm';
12
+ export { useCompensationForm, useCurrentCompensationForm, CompensationErrorCodes, createCompensationSchema, } from './components/Employee/Compensation/shared/useCompensationForm';
13
+ export type { CompensationSubmitOptions, UseCompensationFormProps, UseCurrentCompensationFormProps, UseCompensationFormResult, UseCompensationFormReady, CompensationFieldsMetadata, CompensationFormFields, CompensationErrorCode, CompensationOptionalFieldsToRequire, CompensationSchemaOptions, CompensationFormData, CompensationFormOutputs, RequiredValidation as CompensationRequiredValidation, RateValidation, EffectiveDateValidation as CompensationEffectiveDateValidation, TitleFieldProps as CompensationTitleFieldProps, EffectiveDateFieldProps as CompensationEffectiveDateFieldProps, FlsaStatusFieldProps, RateFieldProps, PaymentUnitFieldProps, AdjustForMinimumWageFieldProps, MinimumWageIdFieldProps, } from './components/Employee/Compensation/shared/useCompensationForm';
14
+ export { useJobForm, useCurrentJobForm, JobErrorCodes, createJobSchema, } from './components/Employee/Compensation/shared/useJobForm';
15
+ export type { JobSubmitOptions, UseJobFormProps, UseCurrentJobFormProps, UseJobFormResult, UseJobFormReady, JobFieldsMetadata, JobFormFields, JobErrorCode, JobOptionalFieldsToRequire, JobFormData, JobFormOutputs, JobRequiredValidation, JobTitleFieldProps, HireDateFieldProps, TwoPercentShareholderFieldProps, StateWcCoveredFieldProps, StateWcClassCodeFieldProps, } from './components/Employee/Compensation/shared/useJobForm';
14
16
  export { useEmployeeDetailsForm, EmployeeDetailsErrorCodes, createEmployeeDetailsSchema, } from './components/Employee/Profile/shared/useEmployeeDetailsForm';
15
17
  export type { EmployeeDetailsSubmitCallbacks, EmployeeDetailsOptionalFieldsToRequire, UseEmployeeDetailsFormProps, UseEmployeeDetailsFormResult, UseEmployeeDetailsFormReady, EmployeeDetailsFieldsMetadata, EmployeeDetailsFormFields, EmployeeDetailsErrorCode, EmployeeDetailsFormData, EmployeeDetailsFormOutputs, EmployeeDetailsField, EmployeeDetailsRequiredValidation, NameValidation, EmailValidation, SsnValidation, FirstNameFieldProps, MiddleInitialFieldProps, LastNameFieldProps, EmailFieldProps, DateOfBirthFieldProps, SsnFieldProps, SelfOnboardingFieldProps, } from './components/Employee/Profile/shared/useEmployeeDetailsForm';
16
18
  export { useWorkAddressForm, useCurrentWorkAddressForm, WorkAddressErrorCodes, createWorkAddressSchema, } from './components/Employee/Profile/shared/useWorkAddressForm';
17
19
  export type { WorkAddressSubmitCallbacks, WorkAddressSubmitOptions, WorkAddressOptionalFieldsToRequire, UseCurrentWorkAddressFormProps, UseWorkAddressFormProps, UseWorkAddressFormResult, UseWorkAddressFormReady, WorkAddressFieldsMetadata, WorkAddressFormFields, WorkAddressErrorCode, WorkAddressFormData, WorkAddressFormOutputs, WorkAddressField, WorkAddressRequiredValidation, LocationFieldProps, EffectiveDateFieldProps, } from './components/Employee/Profile/shared/useWorkAddressForm';
18
20
  export { useHomeAddressForm, useCurrentHomeAddressForm, HomeAddressErrorCodes, createHomeAddressSchema, } from './components/Employee/Profile/shared/useHomeAddressForm';
19
21
  export type { HomeAddressSubmitOptions, HomeAddressOptionalFieldsToRequire, UseHomeAddressFormProps, UseCurrentHomeAddressFormProps, UseHomeAddressFormResult, UseHomeAddressFormReady, HomeAddressFieldsMetadata, HomeAddressFormFields, HomeAddressErrorCode, HomeAddressFormData, HomeAddressFormOutputs, HomeAddressField, HomeAddressRequiredValidation, ZipValidation, Street1FieldProps, Street2FieldProps, CityFieldProps, StateFieldProps, ZipFieldProps, CourtesyWithholdingFieldProps, HomeAddressEffectiveDateFieldProps, } from './components/Employee/Profile/shared/useHomeAddressForm';
22
+ export { useFederalTaxesForm, FederalTaxesErrorCodes, createFederalTaxesSchema, FILING_STATUS_VALUES, } from './components/Employee/FederalTaxes/shared/useFederalTaxesForm';
23
+ export { useEmployeeStateTaxesForm, createEmployeeStateTaxesSchema, EmployeeStateTaxesErrorCodes, createStateFields, useStateFields, getQuestionVariant, } from './components/Employee/StateTaxes/shared';
24
+ export type { UseEmployeeStateTaxesFormProps, UseEmployeeStateTaxesFormResult, UseEmployeeStateTaxesFormReady, EmployeeStateTaxesFieldsMetadata, EmployeeStateTaxesFormFields, EmployeeStateTaxesErrorCode, EmployeeStateTaxesFormData, EmployeeStateTaxesFormOutputs, EmployeeStateTaxesSchemaOptions, EmployeeStateTaxesQuestionMeta, EmployeeStateTaxesMetadataConfig, StateTaxValue, StateTaxQuestionVariant, StateTaxFieldsGroup, StateTaxQuestionFieldEntry, CreateStateFieldsOptions, SelectStateTaxFieldProps, RadioStateTaxFieldProps, TextStateTaxFieldProps, NumberStateTaxFieldProps, CurrencyStateTaxFieldProps, DateStateTaxFieldProps, } from './components/Employee/StateTaxes/shared';
25
+ export type { FederalTaxesOptionalFieldsToRequire, UseFederalTaxesFormProps, UseFederalTaxesFormResult, UseFederalTaxesFormReady, FederalTaxesFieldsMetadata, FederalTaxesFormFields, FederalTaxesFields, FederalTaxesErrorCode, FederalTaxesFormData, FederalTaxesFormOutputs, FederalTaxesField, FilingStatusValue, FederalTaxesRequiredValidation, FilingStatusFieldProps, TwoJobsFieldProps, DependentsAmountFieldProps, OtherIncomeFieldProps, DeductionsFieldProps, ExtraWithholdingFieldProps, } from './components/Employee/FederalTaxes/shared/useFederalTaxesForm';
20
26
  export { useSignEmployeeForm, SignEmployeeFormErrorCodes, createSignEmployeeFormSchema, MAX_PREPARERS, PREPARER_FIELDS_BY_INDEX, preparerFieldName, } from './components/Employee/DocumentSigner/shared/useSignEmployeeForm';
21
27
  export type { UseSignEmployeeFormProps, UseSignEmployeeFormResult, UseSignEmployeeFormReady, SignEmployeeFormFieldComponents, SignEmployeeFormFieldsMetadata, SignEmployeeFormFields, PreparerFieldGroup, SignEmployeeFormErrorCode, SignEmployeeFormData, SignEmployeeFormOutputs, SignEmployeeFormField, PreparerIndex, PreparerFieldSuffix, SignEmployeeFormRequiredValidation, SignatureFieldProps as SignEmployeeFormSignatureFieldProps, ConfirmSignatureFieldProps as SignEmployeeFormConfirmSignatureFieldProps, UsedPreparerFieldProps, PreparerTextFieldProps, PreparerCheckboxFieldProps, } from './components/Employee/DocumentSigner/shared/useSignEmployeeForm';
22
28
  export { usePayScheduleForm, PayScheduleErrorCodes, createPayScheduleSchema, } from './components/Company/PaySchedule/shared/usePayScheduleForm';