@gusto/embedded-react-sdk 0.37.0-rc.1 → 0.37.0-rc.3

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 (563) hide show
  1. package/CHANGELOG.md +44 -8
  2. package/README.md +9 -0
  3. package/dist/UNSTABLE_Hooks.d.ts +1 -1
  4. package/dist/UNSTABLE_Hooks.js +50 -6
  5. package/dist/UNSTABLE_Hooks.js.map +1 -1
  6. package/dist/components/Base/Base.d.ts +2 -1
  7. package/dist/components/Base/Base.js +76 -76
  8. package/dist/components/Base/Base.js.map +1 -1
  9. package/dist/components/Base/createCompoundContext.js.map +1 -1
  10. package/dist/components/Common/DataView/DataCards/DataCards.js +42 -36
  11. package/dist/components/Common/DataView/DataCards/DataCards.js.map +1 -1
  12. package/dist/components/Common/Fields/CheckboxField/CheckboxField.d.ts +2 -0
  13. package/dist/components/Common/Fields/CheckboxField/CheckboxField.js +22 -19
  14. package/dist/components/Common/Fields/CheckboxField/CheckboxField.js.map +1 -1
  15. package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.d.ts +1 -1
  16. package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.js +32 -30
  17. package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.js.map +1 -1
  18. package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.d.ts +1 -1
  19. package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.js +36 -34
  20. package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.js.map +1 -1
  21. package/dist/components/Common/Fields/DatePickerField/DatePickerField.d.ts +5 -3
  22. package/dist/components/Common/Fields/DatePickerField/DatePickerField.js +52 -40
  23. package/dist/components/Common/Fields/DatePickerField/DatePickerField.js.map +1 -1
  24. package/dist/components/Common/Fields/FileInputField/FileInputField.js +24 -22
  25. package/dist/components/Common/Fields/FileInputField/FileInputField.js.map +1 -1
  26. package/dist/components/Common/Fields/MultiSelectComboBoxField/MultiSelectComboBoxField.js +24 -22
  27. package/dist/components/Common/Fields/MultiSelectComboBoxField/MultiSelectComboBoxField.js.map +1 -1
  28. package/dist/components/Common/Fields/NumberInputField/NumberInputField.d.ts +2 -0
  29. package/dist/components/Common/Fields/NumberInputField/NumberInputField.js +31 -28
  30. package/dist/components/Common/Fields/NumberInputField/NumberInputField.js.map +1 -1
  31. package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.d.ts +3 -1
  32. package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.js +30 -27
  33. package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.js.map +1 -1
  34. package/dist/components/Common/Fields/SelectField/SelectField.d.ts +3 -1
  35. package/dist/components/Common/Fields/SelectField/SelectField.js +31 -28
  36. package/dist/components/Common/Fields/SelectField/SelectField.js.map +1 -1
  37. package/dist/components/Common/Fields/SwitchField/SwitchField.d.ts +2 -0
  38. package/dist/components/Common/Fields/SwitchField/SwitchField.js +24 -21
  39. package/dist/components/Common/Fields/SwitchField/SwitchField.js.map +1 -1
  40. package/dist/components/Common/Fields/TextAreaField/TextAreaField.js +24 -22
  41. package/dist/components/Common/Fields/TextAreaField/TextAreaField.js.map +1 -1
  42. package/dist/components/Common/Fields/TextInputField/TextInputField.d.ts +2 -0
  43. package/dist/components/Common/Fields/TextInputField/TextInputField.js +26 -23
  44. package/dist/components/Common/Fields/TextInputField/TextInputField.js.map +1 -1
  45. package/dist/components/Common/Fields/hooks/useField.d.ts +3 -2
  46. package/dist/components/Common/Fields/hooks/useField.js +37 -33
  47. package/dist/components/Common/Fields/hooks/useField.js.map +1 -1
  48. package/dist/components/Common/ReorderableList/ReorderableList.js.map +1 -1
  49. package/dist/components/Common/SignatureForm/SignatureForm.js +10 -15
  50. package/dist/components/Common/SignatureForm/SignatureForm.js.map +1 -1
  51. package/dist/components/Common/SignatureForm/SignatureFormActions.js +10 -14
  52. package/dist/components/Common/SignatureForm/SignatureFormActions.js.map +1 -1
  53. package/dist/components/Common/SignatureForm/SignatureFormFields.js +14 -19
  54. package/dist/components/Common/SignatureForm/SignatureFormFields.js.map +1 -1
  55. package/dist/components/Common/UI/Breadcrumbs/Breadcrumbs.js +1 -1
  56. package/dist/components/Common/UI/Button/Button.js +33 -29
  57. package/dist/components/Common/UI/Button/Button.js.map +1 -1
  58. package/dist/components/Common/UI/Button/Button.module.scss.js +5 -3
  59. package/dist/components/Common/UI/Button/Button.module.scss.js.map +1 -1
  60. package/dist/components/Common/UI/Button/ButtonTypes.d.ts +4 -0
  61. package/dist/components/Common/UI/Button/ButtonTypes.js.map +1 -1
  62. package/dist/components/Common/UI/DescriptionList/DescriptionList.module.scss.js +2 -2
  63. package/dist/components/Common/UI/FileInput/FileInput.js +1 -1
  64. package/dist/components/Common/UI/MultiSelectComboBox/MultiSelectComboBox.js +94 -80
  65. package/dist/components/Common/UI/MultiSelectComboBox/MultiSelectComboBox.js.map +1 -1
  66. package/dist/components/Common/UI/NumberInput/NumberInput.js +1 -1
  67. package/dist/components/Common/UI/NumberInput/NumberInput.js.map +1 -1
  68. package/dist/components/Common/UI/ProgressBar/ProgressBar.js +4 -4
  69. package/dist/components/Company/AssignSignatory/AssignSignatory.js +7 -11
  70. package/dist/components/Company/AssignSignatory/AssignSignatory.js.map +1 -1
  71. package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js +6 -10
  72. package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js.map +1 -1
  73. package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js +8 -11
  74. package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js.map +1 -1
  75. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.js +6 -9
  76. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.js.map +1 -1
  77. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js +14 -16
  78. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js.map +1 -1
  79. package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.js +8 -7
  80. package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.js.map +1 -1
  81. package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js +6 -9
  82. package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js.map +1 -1
  83. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.js +5 -8
  84. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.js.map +1 -1
  85. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js +13 -15
  86. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js.map +1 -1
  87. package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.js +8 -7
  88. package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.js.map +1 -1
  89. package/dist/components/Company/AssignSignatory/TitleSelect.js +2 -5
  90. package/dist/components/Company/AssignSignatory/TitleSelect.js.map +1 -1
  91. package/dist/components/Company/AssignSignatory/useAssignSignatory.js +10 -9
  92. package/dist/components/Company/AssignSignatory/useAssignSignatory.js.map +1 -1
  93. package/dist/components/Company/BankAccount/BankAccountForm/Actions.js +9 -11
  94. package/dist/components/Company/BankAccount/BankAccountForm/Actions.js.map +1 -1
  95. package/dist/components/Company/BankAccount/BankAccountForm/Form.js +9 -13
  96. package/dist/components/Company/BankAccount/BankAccountForm/Form.js.map +1 -1
  97. package/dist/components/Company/BankAccount/BankAccountForm/context.js +8 -7
  98. package/dist/components/Company/BankAccount/BankAccountForm/context.js.map +1 -1
  99. package/dist/components/Company/BankAccount/BankAccountList/Actions.js +10 -13
  100. package/dist/components/Company/BankAccount/BankAccountList/Actions.js.map +1 -1
  101. package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js +12 -15
  102. package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js.map +1 -1
  103. package/dist/components/Company/BankAccount/BankAccountVerify/Form.js +4 -8
  104. package/dist/components/Company/BankAccount/BankAccountVerify/Form.js.map +1 -1
  105. package/dist/components/Company/DocumentSigner/DocumentList/Actions.js +5 -8
  106. package/dist/components/Company/DocumentSigner/DocumentList/Actions.js.map +1 -1
  107. package/dist/components/Company/DocumentSigner/DocumentList/DocumentList.js +11 -15
  108. package/dist/components/Company/DocumentSigner/DocumentList/DocumentList.js.map +1 -1
  109. package/dist/components/Company/DocumentSigner/DocumentList/useDocumentList.js +8 -7
  110. package/dist/components/Company/DocumentSigner/DocumentList/useDocumentList.js.map +1 -1
  111. package/dist/components/Company/DocumentSigner/SignatureForm/SignatureForm.js +11 -15
  112. package/dist/components/Company/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -1
  113. package/dist/components/Company/DocumentSigner/SignatureForm/useSignatureForm.js +8 -7
  114. package/dist/components/Company/DocumentSigner/SignatureForm/useSignatureForm.js.map +1 -1
  115. package/dist/components/Company/FederalTaxes/Actions.js +8 -11
  116. package/dist/components/Company/FederalTaxes/Actions.js.map +1 -1
  117. package/dist/components/Company/FederalTaxes/FederalTaxes.js +15 -19
  118. package/dist/components/Company/FederalTaxes/FederalTaxes.js.map +1 -1
  119. package/dist/components/Company/FederalTaxes/Form.js +6 -8
  120. package/dist/components/Company/FederalTaxes/Form.js.map +1 -1
  121. package/dist/components/Company/FederalTaxes/useFederalTaxes.js +13 -12
  122. package/dist/components/Company/FederalTaxes/useFederalTaxes.js.map +1 -1
  123. package/dist/components/Company/Industry/Actions.js +8 -11
  124. package/dist/components/Company/Industry/Actions.js.map +1 -1
  125. package/dist/components/Company/Industry/Context.js +11 -10
  126. package/dist/components/Company/Industry/Context.js.map +1 -1
  127. package/dist/components/Company/Industry/Edit.js +10 -14
  128. package/dist/components/Company/Industry/Edit.js.map +1 -1
  129. package/dist/components/Company/Locations/LocationForm/Actions.js +8 -11
  130. package/dist/components/Company/Locations/LocationForm/Actions.js.map +1 -1
  131. package/dist/components/Company/Locations/LocationForm/Form.js +5 -8
  132. package/dist/components/Company/Locations/LocationForm/Form.js.map +1 -1
  133. package/dist/components/Company/Locations/LocationForm/LocationForm.js +15 -19
  134. package/dist/components/Company/Locations/LocationForm/LocationForm.js.map +1 -1
  135. package/dist/components/Company/Locations/LocationForm/useLocationForm.js +8 -7
  136. package/dist/components/Company/Locations/LocationForm/useLocationForm.js.map +1 -1
  137. package/dist/components/Company/Locations/LocationsList/Actions.js +6 -9
  138. package/dist/components/Company/Locations/LocationsList/Actions.js.map +1 -1
  139. package/dist/components/Company/Locations/LocationsList/List.js +17 -19
  140. package/dist/components/Company/Locations/LocationsList/List.js.map +1 -1
  141. package/dist/components/Company/Locations/LocationsList/LocationsList.js +6 -10
  142. package/dist/components/Company/Locations/LocationsList/LocationsList.js.map +1 -1
  143. package/dist/components/Company/Locations/LocationsList/useLocationsList.js +8 -7
  144. package/dist/components/Company/Locations/LocationsList/useLocationsList.js.map +1 -1
  145. package/dist/components/Company/OnboardingOverview/Completed.js +12 -15
  146. package/dist/components/Company/OnboardingOverview/Completed.js.map +1 -1
  147. package/dist/components/Company/OnboardingOverview/MissingRequirements.js +9 -12
  148. package/dist/components/Company/OnboardingOverview/MissingRequirements.js.map +1 -1
  149. package/dist/components/Company/OnboardingOverview/OnboardingOverview.js +6 -10
  150. package/dist/components/Company/OnboardingOverview/OnboardingOverview.js.map +1 -1
  151. package/dist/components/Company/OnboardingOverview/context.js +8 -7
  152. package/dist/components/Company/OnboardingOverview/context.js.map +1 -1
  153. package/dist/components/Company/PaySchedule/PaySchedule.js +3 -6
  154. package/dist/components/Company/PaySchedule/PaySchedule.js.map +1 -1
  155. package/dist/components/Company/PaySchedule/_parts/Actions.js +10 -13
  156. package/dist/components/Company/PaySchedule/_parts/Actions.js.map +1 -1
  157. package/dist/components/Company/PaySchedule/_parts/Edit.js +17 -18
  158. package/dist/components/Company/PaySchedule/_parts/Edit.js.map +1 -1
  159. package/dist/components/Company/PaySchedule/_parts/Head.js +11 -14
  160. package/dist/components/Company/PaySchedule/_parts/Head.js.map +1 -1
  161. package/dist/components/Company/PaySchedule/_parts/List.js +19 -21
  162. package/dist/components/Company/PaySchedule/_parts/List.js.map +1 -1
  163. package/dist/components/Company/PaySchedule/usePaySchedule.js +10 -9
  164. package/dist/components/Company/PaySchedule/usePaySchedule.js.map +1 -1
  165. package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js +5 -8
  166. package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js.map +1 -1
  167. package/dist/components/Company/StateTaxes/StateTaxesForm/StateTaxesForm.js.map +1 -1
  168. package/dist/components/Company/StateTaxes/StateTaxesForm/context.js +8 -7
  169. package/dist/components/Company/StateTaxes/StateTaxesForm/context.js.map +1 -1
  170. package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js +6 -9
  171. package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js.map +1 -1
  172. package/dist/components/Company/StateTaxes/StateTaxesList/List.js +5 -8
  173. package/dist/components/Company/StateTaxes/StateTaxesList/List.js.map +1 -1
  174. package/dist/components/Company/StateTaxes/StateTaxesList/context.js +8 -7
  175. package/dist/components/Company/StateTaxes/StateTaxesList/context.js.map +1 -1
  176. package/dist/components/Contractor/Address/Address.js +3 -7
  177. package/dist/components/Contractor/Address/Address.js.map +1 -1
  178. package/dist/components/Contractor/Address/Form.js +9 -12
  179. package/dist/components/Contractor/Address/Form.js.map +1 -1
  180. package/dist/components/Contractor/Address/useAddress.js +10 -9
  181. package/dist/components/Contractor/Address/useAddress.js.map +1 -1
  182. package/dist/components/Contractor/ContractorList/index.js +29 -30
  183. package/dist/components/Contractor/ContractorList/index.js.map +1 -1
  184. package/dist/components/Contractor/NewHireReport/NewHireReport.js +2 -3
  185. package/dist/components/Contractor/NewHireReport/NewHireReport.js.map +1 -1
  186. package/dist/components/Contractor/PaymentMethod/BankAccountForm.js +10 -14
  187. package/dist/components/Contractor/PaymentMethod/BankAccountForm.js.map +1 -1
  188. package/dist/components/Contractor/PaymentMethod/PaymentMethod.js +2 -3
  189. package/dist/components/Contractor/PaymentMethod/PaymentMethod.js.map +1 -1
  190. package/dist/components/Contractor/PaymentMethod/PaymentTypeForm.js +2 -5
  191. package/dist/components/Contractor/PaymentMethod/PaymentTypeForm.js.map +1 -1
  192. package/dist/components/Contractor/Payments/CreatePayment/CreatePayment.js.map +1 -1
  193. package/dist/components/Contractor/Payments/CreatePayment/CreatePaymentPresentation.js +12 -14
  194. package/dist/components/Contractor/Payments/CreatePayment/CreatePaymentPresentation.js.map +1 -1
  195. package/dist/components/Contractor/Payments/CreatePayment/EditContractorPaymentPresentation.js +12 -13
  196. package/dist/components/Contractor/Payments/CreatePayment/EditContractorPaymentPresentation.js.map +1 -1
  197. package/dist/components/Contractor/Payments/CreatePayment/FastAchSubmissionBlockerBanner.js +18 -21
  198. package/dist/components/Contractor/Payments/CreatePayment/FastAchSubmissionBlockerBanner.js.map +1 -1
  199. package/dist/components/Contractor/Payments/CreatePayment/PreviewPresentation.js +3 -4
  200. package/dist/components/Contractor/Payments/CreatePayment/PreviewPresentation.js.map +1 -1
  201. package/dist/components/Contractor/Payments/PaymentHistory/PaymentHistoryPresentation.js +17 -19
  202. package/dist/components/Contractor/Payments/PaymentHistory/PaymentHistoryPresentation.js.map +1 -1
  203. package/dist/components/Contractor/Payments/PaymentStatement/PaymentStatementPresentation.js +6 -8
  204. package/dist/components/Contractor/Payments/PaymentStatement/PaymentStatementPresentation.js.map +1 -1
  205. package/dist/components/Contractor/Payments/PaymentSummary/PaymentSummaryPresentation.js +2 -4
  206. package/dist/components/Contractor/Payments/PaymentSummary/PaymentSummaryPresentation.js.map +1 -1
  207. package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.js +2 -5
  208. package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.js.map +1 -1
  209. package/dist/components/Contractor/Profile/ContractorProfileForm.js +15 -15
  210. package/dist/components/Contractor/Profile/useContractorProfile.js +11 -8
  211. package/dist/components/Contractor/Profile/useContractorProfile.js.map +1 -1
  212. package/dist/components/Contractor/Submit/Submit.js +20 -22
  213. package/dist/components/Contractor/Submit/Submit.js.map +1 -1
  214. package/dist/components/Employee/Compensation/Actions.js +12 -14
  215. package/dist/components/Employee/Compensation/Actions.js.map +1 -1
  216. package/dist/components/Employee/Compensation/Compensation.js.map +1 -1
  217. package/dist/components/Employee/Compensation/Edit.js +27 -28
  218. package/dist/components/Employee/Compensation/Edit.js.map +1 -1
  219. package/dist/components/Employee/Compensation/List.js +23 -25
  220. package/dist/components/Employee/Compensation/List.js.map +1 -1
  221. package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.js +55 -49
  222. package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.js.map +1 -1
  223. package/dist/components/Employee/Deductions/DeductionsForm/CustomDeductionForm.js +14 -13
  224. package/dist/components/Employee/Deductions/DeductionsForm/CustomDeductionForm.js.map +1 -1
  225. package/dist/components/Employee/Deductions/DeductionsForm/DeductionsForm.js.map +1 -1
  226. package/dist/components/Employee/Deductions/DeductionsForm/GarnishmentForm.js +14 -13
  227. package/dist/components/Employee/Deductions/DeductionsForm/GarnishmentForm.js.map +1 -1
  228. package/dist/components/Employee/Deductions/DeductionsList/DeductionsList.js +18 -19
  229. package/dist/components/Employee/Deductions/DeductionsList/DeductionsList.js.map +1 -1
  230. package/dist/components/Employee/Deductions/IncludeDeductions/IncludeDeductions.js +6 -8
  231. package/dist/components/Employee/Deductions/IncludeDeductions/IncludeDeductions.js.map +1 -1
  232. package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js +6 -9
  233. package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js.map +1 -1
  234. package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js +10 -14
  235. package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js.map +1 -1
  236. package/dist/components/Employee/DocumentSigner/DocumentList/List.js +2 -6
  237. package/dist/components/Employee/DocumentSigner/DocumentList/List.js.map +1 -1
  238. package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.js +8 -7
  239. package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.js.map +1 -1
  240. package/dist/components/Employee/DocumentSigner/EmploymentEligibility/EmploymentEligibilityPresentation.js +23 -25
  241. package/dist/components/Employee/DocumentSigner/EmploymentEligibility/EmploymentEligibilityPresentation.js.map +1 -1
  242. package/dist/components/Employee/DocumentSigner/I9SignatureForm/I9SignatureForm.js +9 -11
  243. package/dist/components/Employee/DocumentSigner/I9SignatureForm/I9SignatureForm.js.map +1 -1
  244. package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js +11 -15
  245. package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -1
  246. package/dist/components/Employee/DocumentSigner/SignatureForm/useSignatureForm.js +8 -7
  247. package/dist/components/Employee/DocumentSigner/SignatureForm/useSignatureForm.js.map +1 -1
  248. package/dist/components/Employee/EmployeeDocuments/EmployeeDocumentsPresentation.js +6 -9
  249. package/dist/components/Employee/EmployeeDocuments/EmployeeDocumentsPresentation.js.map +1 -1
  250. package/dist/components/Employee/EmployeeList/Actions.js +6 -9
  251. package/dist/components/Employee/EmployeeList/Actions.js.map +1 -1
  252. package/dist/components/Employee/EmployeeList/EmployeeList.js +3 -7
  253. package/dist/components/Employee/EmployeeList/EmployeeList.js.map +1 -1
  254. package/dist/components/Employee/EmployeeList/Head.js +5 -8
  255. package/dist/components/Employee/EmployeeList/Head.js.map +1 -1
  256. package/dist/components/Employee/EmployeeList/List.js +16 -17
  257. package/dist/components/Employee/EmployeeList/List.js.map +1 -1
  258. package/dist/components/Employee/EmployeeList/useEmployeeList.js +8 -7
  259. package/dist/components/Employee/EmployeeList/useEmployeeList.js.map +1 -1
  260. package/dist/components/Employee/FederalTaxes/Actions.js +7 -10
  261. package/dist/components/Employee/FederalTaxes/Actions.js.map +1 -1
  262. package/dist/components/Employee/FederalTaxes/FederalForm.js +10 -13
  263. package/dist/components/Employee/FederalTaxes/FederalForm.js.map +1 -1
  264. package/dist/components/Employee/FederalTaxes/useFederalTaxes.js +8 -7
  265. package/dist/components/Employee/FederalTaxes/useFederalTaxes.js.map +1 -1
  266. package/dist/components/Employee/Landing/Landing.js +14 -15
  267. package/dist/components/Employee/Landing/Landing.js.map +1 -1
  268. package/dist/components/Employee/OnboardingSummary/OnboardingSummary.js +7 -7
  269. package/dist/components/Employee/PaymentMethod/Actions.js +8 -11
  270. package/dist/components/Employee/PaymentMethod/Actions.js.map +1 -1
  271. package/dist/components/Employee/PaymentMethod/BankAccountEdit.js +5 -8
  272. package/dist/components/Employee/PaymentMethod/BankAccountEdit.js.map +1 -1
  273. package/dist/components/Employee/PaymentMethod/BankAccountsList.js +9 -10
  274. package/dist/components/Employee/PaymentMethod/BankAccountsList.js.map +1 -1
  275. package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js +7 -10
  276. package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js.map +1 -1
  277. package/dist/components/Employee/PaymentMethod/Split.js +9 -10
  278. package/dist/components/Employee/PaymentMethod/Split.js.map +1 -1
  279. package/dist/components/Employee/PaymentMethod/usePaymentMethod.js +10 -9
  280. package/dist/components/Employee/PaymentMethod/usePaymentMethod.js.map +1 -1
  281. package/dist/components/Employee/Profile/Actions.js +8 -11
  282. package/dist/components/Employee/Profile/Actions.js.map +1 -1
  283. package/dist/components/Employee/Profile/AdminPersonalDetails.js +14 -17
  284. package/dist/components/Employee/Profile/AdminPersonalDetails.js.map +1 -1
  285. package/dist/components/Employee/Profile/HomeAddress.d.ts +3 -3
  286. package/dist/components/Employee/Profile/HomeAddress.js +45 -45
  287. package/dist/components/Employee/Profile/HomeAddress.js.map +1 -1
  288. package/dist/components/Employee/Profile/PersonalDetailsInputs.js +15 -19
  289. package/dist/components/Employee/Profile/PersonalDetailsInputs.js.map +1 -1
  290. package/dist/components/Employee/Profile/Profile.js.map +1 -1
  291. package/dist/components/Employee/Profile/useProfile.js +8 -7
  292. package/dist/components/Employee/Profile/useProfile.js.map +1 -1
  293. package/dist/components/Employee/StateTaxes/Actions.js +8 -11
  294. package/dist/components/Employee/StateTaxes/Actions.js.map +1 -1
  295. package/dist/components/Employee/StateTaxes/useStateTaxes.js +8 -7
  296. package/dist/components/Employee/StateTaxes/useStateTaxes.js.map +1 -1
  297. package/dist/components/Employee/Taxes/Actions.js +8 -11
  298. package/dist/components/Employee/Taxes/Actions.js.map +1 -1
  299. package/dist/components/Employee/Taxes/FederalForm.js +10 -13
  300. package/dist/components/Employee/Taxes/FederalForm.js.map +1 -1
  301. package/dist/components/Employee/Taxes/useTaxes.js +8 -7
  302. package/dist/components/Employee/Taxes/useTaxes.js.map +1 -1
  303. package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployeePresentation.js +12 -15
  304. package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployeePresentation.js.map +1 -1
  305. package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.d.ts +1 -0
  306. package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.js +37 -33
  307. package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.js.map +1 -1
  308. package/dist/components/Employee/Terminations/TerminationFlow/terminationStateMachine.d.ts +1 -0
  309. package/dist/components/Employee/Terminations/TerminationFlow/terminationStateMachine.js +57 -45
  310. package/dist/components/Employee/Terminations/TerminationFlow/terminationStateMachine.js.map +1 -1
  311. package/dist/components/Employee/Terminations/TerminationSummary/TerminationSummaryPresentation.js +8 -11
  312. package/dist/components/Employee/Terminations/TerminationSummary/TerminationSummaryPresentation.js.map +1 -1
  313. package/dist/components/Flow/Flow.js +20 -23
  314. package/dist/components/Flow/Flow.js.map +1 -1
  315. package/dist/components/InformationRequests/InformationRequestForm/InformationRequestForm.js +16 -18
  316. package/dist/components/InformationRequests/InformationRequestForm/InformationRequestForm.js.map +1 -1
  317. package/dist/components/InformationRequests/InformationRequestList/InformationRequestList.js +18 -20
  318. package/dist/components/InformationRequests/InformationRequestList/InformationRequestList.js.map +1 -1
  319. package/dist/components/InformationRequests/InformationRequests.js +3 -4
  320. package/dist/components/InformationRequests/InformationRequests.js.map +1 -1
  321. package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsBanner/ConfirmWireDetailsBanner.js.map +1 -1
  322. package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.js +10 -12
  323. package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.js.map +1 -1
  324. package/dist/components/Payroll/Dismissal/DismissalFlow.js +14 -14
  325. package/dist/components/Payroll/Dismissal/DismissalFlow.js.map +1 -1
  326. package/dist/components/Payroll/Dismissal/DismissalFlowComponents.d.ts +2 -2
  327. package/dist/components/Payroll/Dismissal/DismissalFlowComponents.js +8 -8
  328. package/dist/components/Payroll/Dismissal/DismissalFlowComponents.js.map +1 -1
  329. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelection.d.ts +2 -1
  330. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelection.js +57 -55
  331. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelection.js.map +1 -1
  332. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelectionPresentation.js +8 -11
  333. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelectionPresentation.js.map +1 -1
  334. package/dist/components/Payroll/GrossUpModal/GrossUpModal.d.ts +1 -1
  335. package/dist/components/Payroll/GrossUpModal/GrossUpModal.js +88 -75
  336. package/dist/components/Payroll/GrossUpModal/GrossUpModal.js.map +1 -1
  337. package/dist/components/Payroll/GrossUpModal/GrossUpModal.module.scss.js +6 -6
  338. package/dist/components/Payroll/GrossUpModal/GrossUpModalTypes.d.ts +0 -1
  339. package/dist/components/Payroll/OffCycle/OffCycleFlow.d.ts +1 -1
  340. package/dist/components/Payroll/OffCycle/OffCycleFlow.js +24 -18
  341. package/dist/components/Payroll/OffCycle/OffCycleFlow.js.map +1 -1
  342. package/dist/components/Payroll/OffCycle/OffCycleFlowComponents.d.ts +2 -0
  343. package/dist/components/Payroll/OffCycle/OffCycleFlowComponents.js +25 -24
  344. package/dist/components/Payroll/OffCycle/OffCycleFlowComponents.js.map +1 -1
  345. package/dist/components/Payroll/OffCycleCreation/OffCycleCreation.js +56 -53
  346. package/dist/components/Payroll/OffCycleCreation/OffCycleCreation.js.map +1 -1
  347. package/dist/components/Payroll/OffCycleCreation/OffCycleCreationPresentation.js +30 -32
  348. package/dist/components/Payroll/OffCycleCreation/OffCycleCreationPresentation.js.map +1 -1
  349. package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormPresentation.js +18 -26
  350. package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormPresentation.js.map +1 -1
  351. package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormTypes.js +2 -2
  352. package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormTypes.js.map +1 -1
  353. package/dist/components/Payroll/OffCycleReasonSelection/OffCycleReasonSelectionPresentation.js +6 -9
  354. package/dist/components/Payroll/OffCycleReasonSelection/OffCycleReasonSelectionPresentation.js.map +1 -1
  355. package/dist/components/Payroll/OffCycleTaxWithholdingModal/OffCycleTaxWithholdingModal.js +12 -14
  356. package/dist/components/Payroll/OffCycleTaxWithholdingModal/OffCycleTaxWithholdingModal.js.map +1 -1
  357. package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerAlerts.js +11 -14
  358. package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerAlerts.js.map +1 -1
  359. package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerList.js +12 -12
  360. package/dist/components/Payroll/PayrollConfiguration/PayrollConfiguration.js +85 -87
  361. package/dist/components/Payroll/PayrollConfiguration/PayrollConfiguration.js.map +1 -1
  362. package/dist/components/Payroll/PayrollConfiguration/PayrollConfigurationPresentation.js +71 -72
  363. package/dist/components/Payroll/PayrollConfiguration/PayrollConfigurationPresentation.js.map +1 -1
  364. package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.d.ts +1 -1
  365. package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.js +222 -216
  366. package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.js.map +1 -1
  367. package/dist/components/Payroll/PayrollEditEmployee/TimeOffField.js +19 -21
  368. package/dist/components/Payroll/PayrollEditEmployee/TimeOffField.js.map +1 -1
  369. package/dist/components/Payroll/PayrollExecutionFlow/PayrollExecutionFlow.d.ts +2 -1
  370. package/dist/components/Payroll/PayrollExecutionFlow/PayrollExecutionFlow.js +29 -27
  371. package/dist/components/Payroll/PayrollExecutionFlow/PayrollExecutionFlow.js.map +1 -1
  372. package/dist/components/Payroll/PayrollExecutionFlow/index.d.ts +1 -1
  373. package/dist/components/Payroll/PayrollExecutionFlow/payrollExecutionMachine.d.ts +1 -1
  374. package/dist/components/Payroll/PayrollExecutionFlow/payrollExecutionMachine.js +60 -60
  375. package/dist/components/Payroll/PayrollExecutionFlow/payrollExecutionMachine.js.map +1 -1
  376. package/dist/components/Payroll/PayrollFlow/OffCycleFlowContextual.js +13 -6
  377. package/dist/components/Payroll/PayrollFlow/OffCycleFlowContextual.js.map +1 -1
  378. package/dist/components/Payroll/PayrollFlow/PayrollExecutionFlowContextual.js +22 -20
  379. package/dist/components/Payroll/PayrollFlow/PayrollExecutionFlowContextual.js.map +1 -1
  380. package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.js +31 -33
  381. package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.js.map +1 -1
  382. package/dist/components/Payroll/PayrollList/PayrollList.js +44 -40
  383. package/dist/components/Payroll/PayrollList/PayrollList.js.map +1 -1
  384. package/dist/components/Payroll/PayrollList/PayrollListPresentation.js +15 -17
  385. package/dist/components/Payroll/PayrollList/PayrollListPresentation.js.map +1 -1
  386. package/dist/components/Payroll/PayrollOverview/PayrollOverview.js +15 -15
  387. package/dist/components/Payroll/PayrollOverview/PayrollOverview.js.map +1 -1
  388. package/dist/components/Payroll/PayrollOverview/PayrollOverviewPresentation.js +127 -128
  389. package/dist/components/Payroll/PayrollOverview/PayrollOverviewPresentation.js.map +1 -1
  390. package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchSubmissionBlockerBanner.js +7 -10
  391. package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchSubmissionBlockerBanner.js.map +1 -1
  392. package/dist/components/Payroll/PayrollReceipts/PayrollReceiptsPresentation.js +2 -3
  393. package/dist/components/Payroll/PayrollReceipts/PayrollReceiptsPresentation.js.map +1 -1
  394. package/dist/components/Payroll/RecoveryCases/RecoveryCasesList/RecoveryCasesList.js +2 -4
  395. package/dist/components/Payroll/RecoveryCases/RecoveryCasesList/RecoveryCasesList.js.map +1 -1
  396. package/dist/components/Payroll/RecoveryCases/RecoveryCasesResubmit/RecoveryCasesResubmit.js +11 -13
  397. package/dist/components/Payroll/RecoveryCases/RecoveryCasesResubmit/RecoveryCasesResubmit.js.map +1 -1
  398. package/dist/components/Payroll/RecoveryCases/useRecoveryCaseErrorCode.js +2 -5
  399. package/dist/components/Payroll/RecoveryCases/useRecoveryCaseErrorCode.js.map +1 -1
  400. package/dist/components/Payroll/TransitionCreation/TransitionCreationPresentation.js +8 -10
  401. package/dist/components/Payroll/TransitionCreation/TransitionCreationPresentation.js.map +1 -1
  402. package/dist/components/Payroll/helpers.d.ts +5 -0
  403. package/dist/components/Payroll/helpers.js +81 -74
  404. package/dist/components/Payroll/helpers.js.map +1 -1
  405. package/dist/components/Payroll/usePreparedPayrollData.js +4 -4
  406. package/dist/components/UNSTABLE_Hooks/collectErrors.d.ts +6 -0
  407. package/dist/components/UNSTABLE_Hooks/collectErrors.js +9 -0
  408. package/dist/components/UNSTABLE_Hooks/collectErrors.js.map +1 -0
  409. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataContext.d.ts +2 -2
  410. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataContext.js +6 -9
  411. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataContext.js.map +1 -1
  412. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataProvider.d.ts +2 -2
  413. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataProvider.js +13 -0
  414. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataProvider.js.map +1 -0
  415. package/dist/components/UNSTABLE_Hooks/form/SDKFormProvider.d.ts +11 -6
  416. package/dist/components/UNSTABLE_Hooks/form/SDKFormProvider.js +24 -0
  417. package/dist/components/UNSTABLE_Hooks/form/SDKFormProvider.js.map +1 -0
  418. package/dist/components/UNSTABLE_Hooks/form/composeFormSchema.d.ts +26 -0
  419. package/dist/components/UNSTABLE_Hooks/form/composeFormSchema.js +24 -0
  420. package/dist/components/UNSTABLE_Hooks/form/composeFormSchema.js.map +1 -0
  421. package/dist/components/UNSTABLE_Hooks/form/composeSubmitHandler.d.ts +53 -0
  422. package/dist/components/UNSTABLE_Hooks/form/composeSubmitHandler.js +34 -0
  423. package/dist/components/UNSTABLE_Hooks/form/composeSubmitHandler.js.map +1 -0
  424. package/dist/components/UNSTABLE_Hooks/form/composeSubmitHandler.test.d.ts +1 -0
  425. package/dist/components/UNSTABLE_Hooks/form/deriveFieldsMetadata.d.ts +1 -1
  426. package/dist/components/UNSTABLE_Hooks/form/deriveFieldsMetadata.js +14 -0
  427. package/dist/components/UNSTABLE_Hooks/form/deriveFieldsMetadata.js.map +1 -0
  428. package/dist/components/UNSTABLE_Hooks/form/fields/CheckboxHookField.d.ts +11 -0
  429. package/dist/components/UNSTABLE_Hooks/form/fields/CheckboxHookField.js +34 -0
  430. package/dist/components/UNSTABLE_Hooks/form/fields/CheckboxHookField.js.map +1 -0
  431. package/dist/components/UNSTABLE_Hooks/form/fields/DatePickerHookField.d.ts +11 -0
  432. package/dist/components/UNSTABLE_Hooks/form/fields/DatePickerHookField.js +34 -0
  433. package/dist/components/UNSTABLE_Hooks/form/fields/DatePickerHookField.js.map +1 -0
  434. package/dist/components/UNSTABLE_Hooks/form/fields/NumberInputHookField.d.ts +14 -0
  435. package/dist/components/UNSTABLE_Hooks/form/fields/NumberInputHookField.js +40 -0
  436. package/dist/components/UNSTABLE_Hooks/form/fields/NumberInputHookField.js.map +1 -0
  437. package/dist/components/UNSTABLE_Hooks/form/fields/RadioGroupHookField.d.ts +12 -0
  438. package/dist/components/UNSTABLE_Hooks/form/fields/RadioGroupHookField.js +40 -0
  439. package/dist/components/UNSTABLE_Hooks/form/fields/RadioGroupHookField.js.map +1 -0
  440. package/dist/components/UNSTABLE_Hooks/form/fields/SelectHookField.d.ts +12 -0
  441. package/dist/components/UNSTABLE_Hooks/form/fields/SelectHookField.js +40 -0
  442. package/dist/components/UNSTABLE_Hooks/form/fields/SelectHookField.js.map +1 -0
  443. package/dist/components/UNSTABLE_Hooks/form/fields/SwitchHookField.d.ts +11 -0
  444. package/dist/components/UNSTABLE_Hooks/form/fields/SwitchHookField.js +34 -0
  445. package/dist/components/UNSTABLE_Hooks/form/fields/SwitchHookField.js.map +1 -0
  446. package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.d.ts +13 -0
  447. package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.js +38 -0
  448. package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.js.map +1 -0
  449. package/dist/components/UNSTABLE_Hooks/form/fields/index.d.ts +15 -0
  450. package/dist/components/UNSTABLE_Hooks/form/getFieldWithOptions.d.ts +2 -0
  451. package/dist/components/UNSTABLE_Hooks/form/getFieldWithOptions.js +8 -0
  452. package/dist/components/UNSTABLE_Hooks/form/getFieldWithOptions.js.map +1 -0
  453. package/dist/components/UNSTABLE_Hooks/form/getFormSubmissionValues.d.ts +18 -0
  454. package/dist/components/UNSTABLE_Hooks/form/getFormSubmissionValues.js +10 -0
  455. package/dist/components/UNSTABLE_Hooks/form/getFormSubmissionValues.js.map +1 -0
  456. package/dist/components/UNSTABLE_Hooks/form/getFormSubmissionValues.test.d.ts +1 -0
  457. package/dist/components/UNSTABLE_Hooks/form/index.d.ts +8 -1
  458. package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.d.ts +4 -0
  459. package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.js +13 -0
  460. package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.js.map +1 -0
  461. package/dist/components/UNSTABLE_Hooks/form/resolveRequiredFields.d.ts +6 -0
  462. package/dist/components/UNSTABLE_Hooks/form/resolveRequiredFields.js +14 -0
  463. package/dist/components/UNSTABLE_Hooks/form/resolveRequiredFields.js.map +1 -0
  464. package/dist/components/UNSTABLE_Hooks/form/types.d.ts +12 -0
  465. package/dist/components/UNSTABLE_Hooks/form/useFieldErrorMessage.d.ts +2 -1
  466. package/dist/components/UNSTABLE_Hooks/form/useFieldErrorMessage.js +11 -9
  467. package/dist/components/UNSTABLE_Hooks/form/useFieldErrorMessage.js.map +1 -1
  468. package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.d.ts +2 -2
  469. package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.js +2 -3
  470. package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.js.map +1 -1
  471. package/dist/components/UNSTABLE_Hooks/form/useHookFieldResolution.d.ts +23 -0
  472. package/dist/components/UNSTABLE_Hooks/form/useHookFieldResolution.js +11 -0
  473. package/dist/components/UNSTABLE_Hooks/form/useHookFieldResolution.js.map +1 -0
  474. package/dist/components/UNSTABLE_Hooks/form/withOptions.js +7 -0
  475. package/dist/components/UNSTABLE_Hooks/form/withOptions.js.map +1 -0
  476. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/CompensationForm.d.ts +5 -0
  477. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/CompensationForm.js +149 -0
  478. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/CompensationForm.js.map +1 -0
  479. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.d.ts +97 -0
  480. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.js +118 -0
  481. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.js.map +1 -0
  482. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/fields.d.ts +34 -0
  483. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/fields.js +50 -0
  484. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/fields.js.map +1 -0
  485. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/index.d.ts +5 -1
  486. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.d.ts +97 -9
  487. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.js +255 -3
  488. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.js.map +1 -1
  489. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/EmployeeDetailsForm.d.ts +5 -0
  490. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/EmployeeDetailsForm.js +112 -0
  491. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/EmployeeDetailsForm.js.map +1 -0
  492. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/employeeDetailsSchema.d.ts +39 -0
  493. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/employeeDetailsSchema.js +45 -0
  494. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/employeeDetailsSchema.js.map +1 -0
  495. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/fields.d.ts +23 -0
  496. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/fields.js +46 -0
  497. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/fields.js.map +1 -0
  498. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/index.d.ts +7 -0
  499. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.d.ts +77 -0
  500. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.js +153 -0
  501. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.js.map +1 -0
  502. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/WorkAddressForm.d.ts +5 -0
  503. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/WorkAddressForm.js +69 -0
  504. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/WorkAddressForm.js.map +1 -0
  505. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/fields.d.ts +10 -0
  506. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/fields.js +14 -0
  507. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/fields.js.map +1 -0
  508. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/index.d.ts +7 -0
  509. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.d.ts +68 -0
  510. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.js +129 -0
  511. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.js.map +1 -0
  512. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/workAddressSchema.d.ts +25 -0
  513. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/workAddressSchema.js +24 -0
  514. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/workAddressSchema.js.map +1 -0
  515. package/dist/components/UNSTABLE_Hooks/index.d.ts +8 -4
  516. package/dist/components/UNSTABLE_Hooks/types.d.ts +9 -6
  517. package/dist/components/UNSTABLE_Hooks/useErrorHandling.d.ts +9 -0
  518. package/dist/components/UNSTABLE_Hooks/useErrorHandling.js +12 -0
  519. package/dist/components/UNSTABLE_Hooks/useErrorHandling.js.map +1 -0
  520. package/dist/components/UNSTABLE_Hooks/useErrorHandling.test.d.ts +1 -0
  521. package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js +10 -13
  522. package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js.map +1 -1
  523. package/dist/contexts/LoadingIndicatorProvider/useLoadingIndicator.d.ts +10 -2
  524. package/dist/contexts/LoadingIndicatorProvider/useLoadingIndicator.js.map +1 -1
  525. package/dist/contexts/ThemeProvider/useTheme.js.map +1 -1
  526. package/dist/helpers/requiredIf.d.ts +13 -0
  527. package/dist/helpers/requiredIf.js +8 -0
  528. package/dist/helpers/requiredIf.js.map +1 -0
  529. package/dist/i18n/I18n.js +12 -12
  530. package/dist/i18n/I18n.js.map +1 -1
  531. package/dist/i18n/en/Company.TimeOff.CreateTimeOffPolicy.json.js +26 -0
  532. package/dist/i18n/en/Company.TimeOff.CreateTimeOffPolicy.json.js.map +1 -0
  533. package/dist/i18n/en/Company.TimeOff.HolidayPolicy.json.js +24 -0
  534. package/dist/i18n/en/Company.TimeOff.HolidayPolicy.json.js.map +1 -0
  535. package/dist/i18n/en/Company.TimeOff.TimeOffPolicies.json.js +32 -0
  536. package/dist/i18n/en/Company.TimeOff.TimeOffPolicies.json.js.map +1 -0
  537. package/dist/i18n/en/Company.TimeOff.TimeOffPolicyDetails.json.js +52 -0
  538. package/dist/i18n/en/Company.TimeOff.TimeOffPolicyDetails.json.js.map +1 -0
  539. package/dist/i18n/en/Company.TimeOff.TimeOffRequests.json.js +21 -0
  540. package/dist/i18n/en/Company.TimeOff.TimeOffRequests.json.js.map +1 -0
  541. package/dist/i18n/en/Payroll.GrossUpModal.json.js +16 -14
  542. package/dist/i18n/en/Payroll.GrossUpModal.json.js.map +1 -1
  543. package/dist/i18n/en/Payroll.OffCycleTaxWithholding.json.js +5 -5
  544. package/dist/i18n/en/Payroll.PayrollConfiguration.json.js +38 -34
  545. package/dist/i18n/en/Payroll.PayrollConfiguration.json.js.map +1 -1
  546. package/dist/i18n/en/Payroll.PayrollEditEmployee.json.js +29 -25
  547. package/dist/i18n/en/Payroll.PayrollEditEmployee.json.js.map +1 -1
  548. package/dist/i18n/en/Payroll.PayrollOverview.json.js +62 -58
  549. package/dist/i18n/en/Payroll.PayrollOverview.json.js.map +1 -1
  550. package/dist/i18n/en/UNSTABLE.CompensationForm.json.js +58 -0
  551. package/dist/i18n/en/UNSTABLE.CompensationForm.json.js.map +1 -0
  552. package/dist/i18n/en/UNSTABLE.EmployeeDetailsForm.json.js +34 -0
  553. package/dist/i18n/en/UNSTABLE.EmployeeDetailsForm.json.js.map +1 -0
  554. package/dist/i18n/en/UNSTABLE.WorkAddressForm.json.js +24 -0
  555. package/dist/i18n/en/UNSTABLE.WorkAddressForm.json.js.map +1 -0
  556. package/dist/models/WA_RISK_CODES.d.ts +5 -2866
  557. package/dist/models/WA_RISK_CODES.js.map +1 -1
  558. package/dist/style.css +1 -1
  559. package/dist/types/i18next.d.ts +549 -1
  560. package/dist/types/sdkError.d.ts +7 -1
  561. package/dist/types/sdkError.js.map +1 -1
  562. package/docs/reference/endpoint-inventory.json +92 -0
  563. package/package.json +13 -13
@@ -0,0 +1,26 @@
1
+ const e = { title: "Policy details", description: "Give your policy a name and choose how employees accrue time off.", policyNameLabel: "Policy name", accrualType: "Accrual type", accrualTypeHint: "Choose how employees receive time off.", perHourPaidLabel: "Based on hours worked", perHourPaidHint: "Employees earn time off based on hours worked (e.g., 1 hour for every 40 hours worked).", perYearLabel: "Fixed amount each year", perYearHint: "Employees earn a set amount of time off each year (e.g., 120 hours per year).", unlimitedLabel: "Unlimited", unlimitedHint: "Employees can take flexible time off with no set limit.", accrualRateTitle: "Accrual rate", accrualRateDescription: "Set the rate at which employees will accrue time off.", accrualRateAndUnitError: "You must provide a valid base rate.", baseRateLabel: "Base rate", baseRateHint: "This sets the base rate for accrued time off.", hoursUnit: "hours", hoursWorkedUnit: "hours worked", fixedAccrualRateLabel: "Total hours per year", fixedAccrualRateHint: "The total number of hours employees earn each year.", accrualMethodFixed: "Accrual rate", accrualMethodFixedHint: "The rate at which employees will accrue paid time off.", perPayPeriodLabel: "Each pay period", perPayPeriodHint: "Employees earn time off gradually with each paycheck.", allAtOnceLabel: "All at once", allAtOnceHint: "Employees receive their full annual time off balance upfront.", policyResetDateType: "Reset date", policyResetDateTypeHint: "The accrual period will reset on this date each year.", perAnniversaryYearLabel: "Each employee's start date", perCalendarYearLabel: "Custom date", monthLabel: "Month", dayLabel: "Day", includeOvertimeLabel: "Include overtime", allPaidHoursLabel: "All paid hours" }, a = { title: "Policy settings", hoursUnit: "hours", daysUnit: "days", accrualMaximumLabel: "Accrual maximum", accrualMaximumHint: "Set the maximum balance an employee can accrue per period. Accrual will stop when this limit is reached.", balanceMaximumLabel: "Balance maximum", balanceMaximumHint: "Set the maximum balance an employee can hold at once. Accrual stops when this limit is reached.", carryOverLimitLabel: "Carry over limit", carryOverLimitHint: "Set the maximum hours allowed to carryover from one accrual period to the next.", waitingPeriodLabel: "Waiting period", waitingPeriodHint: "Set the number of days employees must work before they begin accruing time off.", paidOutOnTerminationLabel: "Payout on dismissal", paidOutOnTerminationHint: "Choose if unused time off is paid out when an employee leaves. Some states require it by law.", numberOfHoursPlaceholder: "Number of hours", numberOfDaysPlaceholder: "Number of days" }, t = { title: "Add employees to your policy", employeesMovedWarning: "Any employees currently assigned to another {{policyType}} policy will be moved to this policy.", createPolicyCta: "Create policy", policyType: { vacation: "paid time off", sick: "sick leave" } }, o = { title: "Starting balances", description: "If your employees have an existing balance, please enter those hours here. Employees moving to this policy from another will carry over their accrued hours.", noEmployees: "You haven't added any employees to this policy yet, so there aren't any starting balances to add.", alertHeader: "The following employees' balances need review", createPolicyCta: "Create policy" }, l = { selected: "of {{numAll}} employees selected", selectAllEmployees: "Select all employees", selectAll: "Select all", clearAriaLabel: "Clear selected employees", clear: "Clear", name: "Name", jobTitle: "Job title" }, i = { name: "Name", jobTitle: "Job title", balance: "Balance (hrs)", employeeCount_one: "{{count}} employee", employeeCount_other: "{{count}} employees" }, r = "Save & continue", c = "Back", n = "Cancel", s = { policyUpdated: "Details for this policy have been updated.", policyActive: "Your time off policy is active.", 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.", settingsUpdated: "Details for this policy have been updated." }, m = {
2
+ policyDetails: e,
3
+ policySettings: a,
4
+ addEmployees: t,
5
+ startingBalances: o,
6
+ employeeTable: l,
7
+ balanceTable: i,
8
+ continueCta: r,
9
+ backCta: c,
10
+ cancelCta: n,
11
+ flash: s
12
+ };
13
+ export {
14
+ t as addEmployees,
15
+ c as backCta,
16
+ i as balanceTable,
17
+ n as cancelCta,
18
+ r as continueCta,
19
+ m as default,
20
+ l as employeeTable,
21
+ s as flash,
22
+ e as policyDetails,
23
+ a as policySettings,
24
+ o as startingBalances
25
+ };
26
+ //# sourceMappingURL=Company.TimeOff.CreateTimeOffPolicy.json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Company.TimeOff.CreateTimeOffPolicy.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
@@ -0,0 +1,24 @@
1
+ const e = "Choose your company holidays", o = "Choose which holidays your company observes and we'll automatically add those hours when you run payroll.", l = "Continue", t = { holidayName: "Holiday name", observedDate: "Observed date" }, d = { selected: "selected", selectAllEmployees: "Select all employees", selectAll: "Select all", clearAriaLabel: "Clear selected employees", clear: "Clear" }, a = { title: "Add employees to your policy" }, s = { title: "Holiday pay policy", holidaySchedule: "Holiday schedule" }, y = { title: "Holiday schedule", editCta: "Edit" }, c = { deleted: "Holiday pay policy deleted successfully", employeesAdded_one: "{{count}} employee has been added to this policy.", employeesAdded_other: "{{count}} employees have been added to this policy.", 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." }, i = {
2
+ title: e,
3
+ description: o,
4
+ continueCta: l,
5
+ tableHeaders: t,
6
+ employeeTable: d,
7
+ editEmployees: a,
8
+ show: s,
9
+ holidayScheduleTable: y,
10
+ flash: c
11
+ };
12
+ export {
13
+ l as continueCta,
14
+ i as default,
15
+ o as description,
16
+ a as editEmployees,
17
+ d as employeeTable,
18
+ c as flash,
19
+ y as holidayScheduleTable,
20
+ s as show,
21
+ t as tableHeaders,
22
+ e as title
23
+ };
24
+ //# sourceMappingURL=Company.TimeOff.HolidayPolicy.json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Company.TimeOff.HolidayPolicy.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;"}
@@ -0,0 +1,32 @@
1
+ const e = "Time off policies", o = "Add policy", i = { name: "Name", enrolled: "Enrolled", actions: "Actions" }, l = { viewPolicy: "View policy", editPolicy: "Edit policy", deletePolicy: "Delete policy" }, t = "{{count}} employee", a = "{{count}} employees", c = "Incomplete", y = "Holiday pay policy", n = { title: 'Are you sure you want to delete the policy "{{name}}"?', description: 'This will delete the policy "{{name}}" and all associated time off requests.' }, s = { title: "Are you sure you want to delete the company holiday pay policy?", description: "This will delete the company holiday pay policy." }, p = { heading: "You haven't added any time off policies yet", body: "Time off policies help you track and approve employee leave." }, d = { title: "Select policy type", policyTypeLabel: "Policy type", policyTypeHint: "Select the type of time off policy you want to set up for your team.", holidayLabel: "Holiday pay", holidayHint: "Give employees time off for company holidays. Choose which holidays to observe.", timeOffLabel: "Time off", timeOffHint: "Use for paid leave or combine vacation and sick time into one PTO policy.", sickLeaveLabel: "Sick leave", sickLeaveHint: "Paid time employees can use when they're sick or caring for their health.", continueCta: "Continue", cancelCta: "Cancel" }, m = { policyDeleted: 'Policy "{{name}}" deleted successfully', holidayDeleted: "Holiday pay policy deleted successfully", invalidPolicyType: "Please select a valid policy type." }, f = {
2
+ pageTitle: e,
3
+ addPolicyCta: o,
4
+ tableHeaders: i,
5
+ actions: l,
6
+ employeeCount_one: t,
7
+ employeeCount_other: a,
8
+ incompleteBadge: c,
9
+ holidayPayPolicy: y,
10
+ deletePolicyDialog: n,
11
+ deleteHolidayDialog: s,
12
+ emptyState: p,
13
+ selectPolicyType: d,
14
+ flash: m
15
+ };
16
+ export {
17
+ l as actions,
18
+ o as addPolicyCta,
19
+ f as default,
20
+ s as deleteHolidayDialog,
21
+ n as deletePolicyDialog,
22
+ t as employeeCount_one,
23
+ a as employeeCount_other,
24
+ p as emptyState,
25
+ m as flash,
26
+ y as holidayPayPolicy,
27
+ c as incompleteBadge,
28
+ e as pageTitle,
29
+ d as selectPolicyType,
30
+ i as tableHeaders
31
+ };
32
+ //# sourceMappingURL=Company.TimeOff.TimeOffPolicies.json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Company.TimeOff.TimeOffPolicies.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
@@ -0,0 +1,52 @@
1
+ const e = "Time off policies", o = "Add employee", a = { employees: "Employees", policyDetails: "Policy details" }, r = "Details", l = "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" }, i = "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", y = { label: "Accrual maximum", noMaximum: "No maximum", withMaximum: "{{count}} hour(s) per year" }, u = { 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 = { selected: "of {{numAll}} employees selected", selectAllEmployees: "Select all employees", selectAll: "Select all", clearAriaLabel: "Clear selected employees", clear: "Clear", name: "Name", 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." }, A = {
2
+ breadcrumb: e,
3
+ addEmployeeCta: o,
4
+ tabs: a,
5
+ details: r,
6
+ editPolicyCta: l,
7
+ policyType: t,
8
+ policyName: i,
9
+ accrualRateTitle: n,
10
+ accrualMethod: c,
11
+ accrualRate: m,
12
+ resetDate: s,
13
+ policySettingsTitle: d,
14
+ maxAccrualHoursPerYear: y,
15
+ maxHours: u,
16
+ carryoverLimitHours: p,
17
+ accrualWaitingPeriodDays: h,
18
+ paidOutOnTermination: v,
19
+ employeeTable: f,
20
+ addEmployeeModal: b,
21
+ editBalanceModal: R,
22
+ removeEmployeeModal: P,
23
+ removeEmployeesModal: g,
24
+ flash: x
25
+ };
26
+ 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,
33
+ e as breadcrumb,
34
+ p as carryoverLimitHours,
35
+ A as default,
36
+ r as details,
37
+ R as editBalanceModal,
38
+ l as editPolicyCta,
39
+ f as employeeTable,
40
+ x as flash,
41
+ y as maxAccrualHoursPerYear,
42
+ u as maxHours,
43
+ v as paidOutOnTermination,
44
+ i 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
51
+ };
52
+ //# sourceMappingURL=Company.TimeOff.TimeOffPolicyDetails.json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Company.TimeOff.TimeOffPolicyDetails.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,21 @@
1
+ const e = { title: "Time off requests", addTimeOff: "Add time off", tabs: { needsReview: "Needs review", approved: "Approved", completed: "Completed", declined: "Declined" }, emptyState: { needsReview: { heading: "No requests to review", body: "New time off requests will appear here." }, approved: { heading: "No approved requests yet", body: "Once time off is approved, it will appear here." }, completed: { heading: "No completed time off yet", body: "Once approved time off is completed, it will appear here." }, declined: { heading: "No declined requests", body: "If a time off request is declined, it will appear here." } } }, t = { employee: "Employee", policy: "Policy", dates: "Date(s)", requested: "Requested", remaining: "Remaining", actions: "Actions", view: "View", requestsCount_one: "{{count}} request", requestsCount_other: "{{count}} requests", hoursUnit: "hrs" }, a = { vacation: "Vacation", sick: "Sick leave", bereavement: "Bereavement", floatingHoliday: "Floating holiday", juryDuty: "Jury duty", learningAndDevelopment: "Learning and development", personalDay: "Personal day", volunteer: "Volunteer", weather: "Weather", parentalLeave: "Parental leave", custom: "Custom" }, o = { title: "{{policyType}} request", breadcrumb: "Time off requests", details: "Details", employee: "Employee", datesRequested: "Date(s) requested", timeRequested: "Time requested", viewBreakdown: "View breakdown by day", breakdownDate: "Date", breakdownTimeRequested: "Time requested", employeeNote: "Employee note", policyName: "Policy name", policyType: "Policy type", requestedOn: "Requested on", noteToEmployee: "Note to employee", notes: "Notes", hoursUnit: "hrs", statusNeedsReview: "Needs review", statusApproved: "Approved", statusCompleted: "Completed", statusDeclined: "Declined", approveRequestCta: "Approve request", declineRequestCta: "Decline request", declineApprovedRequestCta: "Decline approved request", doneCta: "Done", employerNoteRequired: "A note to the employee is required when declining a request" }, i = { startDate: "Start date", endDate: "End date", timeRequested: "Time requested", hoursUnit: "hrs", invalidDateRange: "End date must be on or after start date.", duration: { title: "Duration", description: "Choose how many hours of time off to record for the selected dates.", fullDays: "Full days", fullDaysDescription: "Automatically counts 8 hours for each weekday (Monday - Friday). Weekends are excluded.", partialDays: "Partial days", partialDaysDescription: "Use this option to specify the exact number of hours for each day.", dateHeader: "Date", timeRequestedHeader: "Time requested" } }, s = { title: "Time off balance for this policy", availableBalance: "Available balance", availableBalanceHint: "The amount of time off this employee has available today to use on this policy.", otherRequested: "Other requested time off", otherRequestedHint: "Any other approved future time off and pending time off under this policy. Excludes this request.", thisRequest: "This request", remainingBalance: "Remaining available balance", placeholder: "TBD hrs", negativeBalanceWarning: "If you approve this request, the employee will end up with a negative time off balance." }, r = { createSuccess: "Time off request created successfully", approveSuccess: "Time off request approved", declineSuccess: "Time off request declined", employerNoteRequired: "A note is required when declining a request" }, l = {
2
+ index: e,
3
+ requestsTable: t,
4
+ policyType: a,
5
+ show: o,
6
+ new: { title: "Add time off", breadcrumb: "Back", subtitle: "Time off you record for an employee is approved automatically.", employeeLabel: "Employee", selectEmployee: "Select...", policyLabel: "Policy", selectPolicy: "Select...", noteLabel: "Note", optionalLabel: "(Optional)", saveCta: "Save", cancelCta: "Cancel" },
7
+ dateHoursFields: i,
8
+ balancePreview: s,
9
+ flash: r
10
+ };
11
+ export {
12
+ s as balancePreview,
13
+ i as dateHoursFields,
14
+ l as default,
15
+ r as flash,
16
+ e as index,
17
+ a as policyType,
18
+ t as requestsTable,
19
+ o as show
20
+ };
21
+ //# sourceMappingURL=Company.TimeOff.TimeOffRequests.json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Company.TimeOff.TimeOffRequests.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;"}
@@ -1,24 +1,26 @@
1
- const t = "Enter a net amount", e = "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.", a = "This will override any previously entered amounts.", o = "Net amount", n = "Calculate Gross from Net", s = "Apply", l = "Cancel", c = "Calculated gross pay", r = "Unable to calculate gross up. Please try again.", u = {
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 = {
2
2
  title: t,
3
- description: e,
4
- warning: a,
5
- netPayLabel: o,
6
- calculateCta: n,
3
+ description: a,
4
+ warning: e,
5
+ netPayLabel: n,
6
+ calculateCta: l,
7
+ calculatingCta: o,
7
8
  applyCta: s,
8
- cancelCta: l,
9
- grossPayResult: c,
9
+ cancelCta: c,
10
+ grossPayResult: u,
10
11
  errorMessage: r
11
12
  };
12
13
  export {
13
14
  s as applyCta,
14
- n as calculateCta,
15
- l as cancelCta,
16
- u as default,
17
- e as description,
15
+ l as calculateCta,
16
+ o as calculatingCta,
17
+ c as cancelCta,
18
+ i as default,
19
+ a as description,
18
20
  r as errorMessage,
19
- c as grossPayResult,
20
- o as netPayLabel,
21
+ u as grossPayResult,
22
+ n as netPayLabel,
21
23
  t as title,
22
- a as warning
24
+ e as warning
23
25
  };
24
26
  //# 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":";;;;;;;;;;;;"}
@@ -1,20 +1,20 @@
1
- const e = "Tax withholding rates", a = "We've set the recommended withholding rate for each earning type below. Regular wages should be taxed at a rate that matches your employees' normal pay schedule", t = "Edit", l = { headers: { wageTypes: "Wage types", taxedAs: "Taxed as" }, taxedAsRegular: "Regular wages, paid {{frequency}}", taxedAsSupplemental: "Supplemental 22% for federal income taxes and at the state's supplemental tax rate for state income taxes.", taxedAsNotTaxed: "Not taxed" }, r = { regular: { label: "Regular hours, regular wages, tips", description: "These earnings should be taxed at a rate that matches your employees' regular pay schedule." }, supplemental: { label: "Supplemental wages, bonus wages, commission", description: "These are typically taxed at the rate required by the IRS for federal income taxes and by the state for state income taxes." }, reimbursement: { label: "Reimbursements" } }, s = { title: "Tax withholding rates", regularSection: { title: "Rate for regular wages and earnings", subtitle: "For regular hours, regular wages, tips", rateLabel: "Rate is based on payment schedule of", rateDescription: "Regular wages should be taxed at a rate matching your employees' regular pay schedule. Select the most accurate pay schedule." }, supplementalSection: { title: "Rate for supplemental wages and earnings", useSupplementalRate: "Use supplemental tax rate", useSupplementalRateDescription: "Taxes will be withheld at the IRS's required rate of 22% for federal income taxes. State income taxes will be taxed at the state's supplemental tax rate", useRegularRate: "Use rate for regular wages (based on payment schedule of {{frequency}})", useRegularRateDescription: "We'll sum the entirety of the employee's wages and withhold taxes on the entire amount at the rate for regular wages" }, cancelButton: "Cancel", doneButton: "Done" }, n = { everyWeek: "Every week", everyOtherWeek: "Every other week", twicePerMonth: "Twice per month", monthly: "Monthly", quarterly: "Quarterly", semiannually: "Semiannually", annually: "Annually" }, o = {
1
+ const e = "Tax withholding rates", a = "We've set the recommended withholding rate for each earning type below. Regular wages should be taxed at a rate that matches your employees' normal pay schedule", t = "Edit", l = { headers: { wageTypes: "Wage types", taxedAs: "Taxed as" }, taxedAsRegular: "Regular wages, paid {{frequency}}", taxedAsSupplemental: "Supplemental 22% for federal income taxes and at the state's supplemental tax rate for state income taxes.", taxedAsNotTaxed: "Not taxed" }, s = { regular: { label: "Regular hours, regular wages, and tips", description: "These earnings should be taxed at a rate that matches your employees' regular pay schedule." }, supplemental: { label: "Supplemental wages, bonus wages, commission", description: "These are typically taxed at the rate required by the IRS for federal income taxes and by the state for state income taxes." }, reimbursement: { label: "Reimbursements" } }, r = { title: "Tax withholding rates", regularSection: { title: "Rate for regular wages and earnings", subtitle: "Includes regular hours, regular wages, and tips", rateLabel: "Rate is based on payment schedule of", rateDescription: "Regular wages should be taxed at a rate matching your employees' regular pay schedule. Select the most accurate pay schedule." }, supplementalSection: { title: "Rate for supplemental wages and earnings", useSupplementalRate: "Use supplemental tax rate", useSupplementalRateDescription: "Taxes will be withheld at the IRS's required rate of 22% for federal income taxes. State income taxes will be taxed at the state's supplemental tax rate", useRegularRate: "Use rate for regular wages (based on payment schedule of {{frequency}})", useRegularRateDescription: "We'll sum the entirety of the employee's wages and withhold taxes on the entire amount at the rate for regular wages" }, cancelButton: "Cancel", doneButton: "Done" }, n = { everyWeek: "Every week", everyOtherWeek: "Every other week", twicePerMonth: "Twice per month", monthly: "Monthly", quarterly: "Quarterly", semiannually: "Semiannually", annually: "Annually" }, o = {
2
2
  title: e,
3
3
  description: a,
4
4
  editButton: t,
5
5
  table: l,
6
- wageTypeGroups: r,
7
- modal: s,
6
+ wageTypeGroups: s,
7
+ modal: r,
8
8
  payPeriodFrequency: n
9
9
  };
10
10
  export {
11
11
  o as default,
12
12
  a as description,
13
13
  t as editButton,
14
- s as modal,
14
+ r as modal,
15
15
  n as payPeriodFrequency,
16
16
  l as table,
17
17
  e as title,
18
- r as wageTypeGroups
18
+ s as wageTypeGroups
19
19
  };
20
20
  //# sourceMappingURL=Payroll.OffCycleTaxWithholding.json.js.map
@@ -1,42 +1,46 @@
1
- const e = "Edit Payroll", a = "{{payrollType}} payroll for <dateWrapper>{{startDate}} - {{endDate}}</dateWrapper>", t = "Edit Payroll for {{startDate}} - {{endDate}}", o = "Save and exit", l = "Calculate and review", i = "Calculate and review", n = "Hours and additional earnings", s = "Review and update your employee's hours, reimbursements, and additional earnings below.", r = "Employee compensations", p = { employees: "Employees", hours: "Hours", timeOff: "Time off", additionalEarnings: "Additional earnings", reimbursements: "Reimbursements", totalPay: "Total pay" }, d = "Skipped", y = { edit: "Edit", skip: "Skip employee", unskip: "Unskip employee", setNetEarnings: "Set employee net earnings" }, c = { progressSaved: "Your progress has been saved", directDepositDeadline: "To pay your employees with direct deposit by {{payDate}}, you'll need to run payroll by {{time}} on {{date}}.", directDepositDeadlineText: "Make sure to submit before the deadline to ensure timely payments.", payrollLate: "Your original pay date was {{initialCheckDate}}", payrollLateText: "Run payroll before {{time}} on {{date}} to pay your employees on {{newCheckDate}}.", payrollDeadline: { label: "Payroll Deadline", message: "To pay your employees with direct deposit by the check date, you'll need to run payroll by the deadline." }, skippedEmployees: { label: "Skipped Employees", employeeAddressNotVerified: "Employee address not verified" }, employeeUpdated: { label: "{{employeeName}} updated successfully" } }, u = "Preparing payroll...", m = "This may take a minute or two. You can navigate away while this happens.", g = "Calculating payroll...", h = "This may take a minute or two. You can navigate away while this happens.", b = "Calculating payroll...", D = {
1
+ const e = "Edit Payroll", a = "{{payrollType}} payroll for <dateWrapper>{{startDate}} - {{endDate}}</dateWrapper>", t = "{{payrollType}} payroll", o = "Edit Payroll for {{startDate}} - {{endDate}}", l = "Edit Payroll", i = "Save and exit", n = "Calculate and review", s = "Calculate and review", r = "Hours and additional earnings", p = "Review and update your employee's hours, reimbursements, and additional earnings below.", d = "Employee compensations", y = { employees: "Employees", hours: "Hours", timeOff: "Time off", additionalEarnings: "Additional earnings", reimbursements: "Reimbursements", totalPay: "Total pay" }, c = "Skipped", u = { edit: "Edit", skip: "Skip employee", unskip: "Unskip employee", setNetEarnings: "Set employee net earnings" }, m = { progressSaved: "Your progress has been saved", directDepositDeadline: "To pay your employees with direct deposit by {{payDate}}, you'll need to run payroll by {{time}} on {{date}}.", directDepositDeadlineText: "Make sure to submit before the deadline to ensure timely payments.", payrollLate: "Your original pay date was {{initialCheckDate}}", payrollLateText: "Run payroll before {{time}} on {{date}} to pay your employees on {{newCheckDate}}.", payrollDeadline: { label: "Payroll Deadline", message: "To pay your employees with direct deposit by the check date, you'll need to run payroll by the deadline." }, skippedEmployees: { label: "Skipped Employees", employeeAddressNotVerified: "Employee address not verified" }, employeeUpdated: { label: "{{employeeName}} updated successfully" } }, g = "Preparing payroll...", b = "This may take a minute or two. You can navigate away while this happens.", h = "Calculating payroll...", D = "This may take a minute or two. You can navigate away while this happens.", T = "Calculating payroll...", w = {
2
2
  pageTitle: e,
3
3
  description: a,
4
- breadcrumbLabel: t,
5
- exitFlowCta: o,
6
- calculatePayroll: l,
7
- calculatePayrollTitle: i,
8
- hoursAndEarningsTitle: n,
9
- hoursAndEarningsDescription: s,
10
- employeeCompensationsTitle: r,
11
- tableColumns: p,
12
- skippedBadge: d,
13
- editMenu: y,
14
- alerts: c,
15
- loadingTitle: u,
16
- loadingDescription: m,
17
- calculatingTitle: g,
18
- calculatingDescription: h,
19
- calculatingPayroll: b
4
+ descriptionDismissal: t,
5
+ breadcrumbLabel: o,
6
+ breadcrumbLabelDismissal: l,
7
+ exitFlowCta: i,
8
+ calculatePayroll: n,
9
+ calculatePayrollTitle: s,
10
+ hoursAndEarningsTitle: r,
11
+ hoursAndEarningsDescription: p,
12
+ employeeCompensationsTitle: d,
13
+ tableColumns: y,
14
+ skippedBadge: c,
15
+ editMenu: u,
16
+ alerts: m,
17
+ loadingTitle: g,
18
+ loadingDescription: b,
19
+ calculatingTitle: h,
20
+ calculatingDescription: D,
21
+ calculatingPayroll: T
20
22
  };
21
23
  export {
22
- c as alerts,
23
- t as breadcrumbLabel,
24
- l as calculatePayroll,
25
- i as calculatePayrollTitle,
26
- h as calculatingDescription,
27
- b as calculatingPayroll,
28
- g as calculatingTitle,
29
- D as default,
24
+ m as alerts,
25
+ o as breadcrumbLabel,
26
+ l as breadcrumbLabelDismissal,
27
+ n as calculatePayroll,
28
+ s as calculatePayrollTitle,
29
+ D as calculatingDescription,
30
+ T as calculatingPayroll,
31
+ h as calculatingTitle,
32
+ w as default,
30
33
  a as description,
31
- y as editMenu,
32
- r as employeeCompensationsTitle,
33
- o as exitFlowCta,
34
- s as hoursAndEarningsDescription,
35
- n as hoursAndEarningsTitle,
36
- m as loadingDescription,
37
- u as loadingTitle,
34
+ t as descriptionDismissal,
35
+ u as editMenu,
36
+ d as employeeCompensationsTitle,
37
+ i as exitFlowCta,
38
+ p as hoursAndEarningsDescription,
39
+ r as hoursAndEarningsTitle,
40
+ b as loadingDescription,
41
+ g as loadingTitle,
38
42
  e as pageTitle,
39
- d as skippedBadge,
40
- p as tableColumns
43
+ c as skippedBadge,
44
+ y as tableColumns
41
45
  };
42
46
  //# sourceMappingURL=Payroll.PayrollConfiguration.json.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Payroll.PayrollConfiguration.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"Payroll.PayrollConfiguration.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,44 +1,48 @@
1
- const e = "Edit payroll for {{employeeName}}", t = "{{firstName}} {{lastName}}", o = "Gross pay (excluding reimbursements)", s = "Gross pay: {{grossPay}} (excluding reimbursements)", n = "Regular hours", a = "Hours", i = "Save", r = "Cancel", m = { regularHours: "Regular Hours", overtime: "Overtime", doubleOvertime: "Double overtime" }, c = "Time off", l = "Unused time off payout", p = { remaining: "{{balance}} remaining" }, u = "Additional earnings", y = "Reimbursement", d = { bonus: "Bonus", paycheckTips: "Paycheck tips", correctionPayment: "Correction payment", commission: "Commission", cashTips: "Cash tips", reimbursement: "Reimbursement" }, b = "Payment", h = "Payment method", g = "Changing the default payment method will only apply to this payroll.", f = { directDeposit: "Direct deposit", check: "Check" }, P = {
1
+ const e = "Edit payroll for {{employeeName}}", t = "{{firstName}} {{lastName}}", o = "Gross pay (excluding reimbursements)", s = "Gross pay: {{grossPay}} (excluding reimbursements)", i = "Regular hours", n = "Hours", a = "Save", r = "Cancel", m = { regularHours: "Regular Hours", overtime: "Overtime", doubleOvertime: "Double overtime" }, c = "Time off", l = "Time off hours used this pay period", u = "Unused time off payout", p = "Enter the unused hours to pay out on the final paycheck. This is separate from time off hours used during the pay period.", y = { remaining: "{{balance}} remaining" }, d = "Additional earnings", h = "Reimbursement", f = { bonus: "Bonus", paycheckTips: "Paycheck tips", correctionPayment: "Correction payment", commission: "Commission", cashTips: "Cash tips", reimbursement: "Reimbursement" }, b = "Payment", g = "Payment method", T = "Changing the default payment method will only apply to this payroll.", P = { directDeposit: "Direct deposit", check: "Check" }, C = {
2
2
  pageTitle: e,
3
3
  breadcrumbLabel: t,
4
4
  grossPayLabel: o,
5
5
  grossPayLabelMobile: s,
6
- regularHoursTitle: n,
7
- hoursUnit: a,
8
- saveCta: i,
6
+ regularHoursTitle: i,
7
+ hoursUnit: n,
8
+ saveCta: a,
9
9
  cancelCta: r,
10
10
  compensationNames: m,
11
11
  timeOffTitle: c,
12
- finalPayoutTitle: l,
13
- timeOffBalance: p,
14
- additionalEarningsTitle: u,
15
- reimbursementTitle: y,
16
- fixedCompensationNames: d,
12
+ timeOffTitleDismissal: l,
13
+ finalPayoutTitle: u,
14
+ finalPayoutDescription: p,
15
+ timeOffBalance: y,
16
+ additionalEarningsTitle: d,
17
+ reimbursementTitle: h,
18
+ fixedCompensationNames: f,
17
19
  paymentMethodTitle: b,
18
- paymentMethodLabel: h,
19
- paymentMethodDescription: g,
20
- paymentMethodOptions: f
20
+ paymentMethodLabel: g,
21
+ paymentMethodDescription: T,
22
+ paymentMethodOptions: P
21
23
  };
22
24
  export {
23
- u as additionalEarningsTitle,
25
+ d as additionalEarningsTitle,
24
26
  t as breadcrumbLabel,
25
27
  r as cancelCta,
26
28
  m as compensationNames,
27
- P as default,
28
- l as finalPayoutTitle,
29
- d as fixedCompensationNames,
29
+ C as default,
30
+ p as finalPayoutDescription,
31
+ u as finalPayoutTitle,
32
+ f as fixedCompensationNames,
30
33
  o as grossPayLabel,
31
34
  s as grossPayLabelMobile,
32
- a as hoursUnit,
35
+ n as hoursUnit,
33
36
  e as pageTitle,
34
- g as paymentMethodDescription,
35
- h as paymentMethodLabel,
36
- f as paymentMethodOptions,
37
+ T as paymentMethodDescription,
38
+ g as paymentMethodLabel,
39
+ P as paymentMethodOptions,
37
40
  b as paymentMethodTitle,
38
- n as regularHoursTitle,
39
- y as reimbursementTitle,
40
- i as saveCta,
41
- p as timeOffBalance,
42
- c as timeOffTitle
41
+ i as regularHoursTitle,
42
+ h as reimbursementTitle,
43
+ a as saveCta,
44
+ y as timeOffBalance,
45
+ c as timeOffTitle,
46
+ l as timeOffTitleDismissal
43
47
  };
44
48
  //# sourceMappingURL=Payroll.PayrollEditEmployee.json.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Payroll.PayrollEditEmployee.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"Payroll.PayrollEditEmployee.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,74 +1,78 @@
1
- const e = "Submit", a = "Back", t = "Save and exit", o = "Review payroll", l = "Payroll summary", s = "{{payrollType}} payroll for <dateWrapper>{{startDate}} - {{endDate}}</dateWrapper>", n = "Submit", i = "Edit", r = "Cancel payroll", y = "Cancel {{startDate}} - {{endDate}} payroll?", c = "Any changes you have made to this payroll will be saved.", p = "Run this payroll by {{deadline}} to ensure your employees are paid on time.", d = " Yes, cancel payroll", m = "No, go back", u = "View payroll receipt", b = "Download paystub pdf", h = "Submitting payroll...", T = "This may take a minute or two. You can navigate away while this happens.", D = "Cancelling payroll...", g = "This payroll has been cancelled.", w = { payrollNotCalculated: "Payroll is not calculated", directDepositDeadline: "To pay your employees with direct deposit by {{payDate}}, you'll need to run payroll by {{time}} on {{date}}", paystubPdfError: "There was an issue generating the paystub PDF. Please try again later.", checkPaymentWarning_one: "You noted {{count}} employee who should be paid by check.", checkPaymentWarning_other: "You noted {{count}} employees who should be paid by check.", checkPaymentWarningDescription: "Employees with this payment method will need their checks delivered to them.", payrollProcessedTitle: "Payroll submitted", payrollProcessedMessage: "{{amount}} will be debited on {{date}}. Make sure you have these funds available.", payrollProcessingFailedTitle: "There was an error submitting payroll", payrollProcessingFailedCtaLabel: "Recalculate payroll", wireDetailsSubmittedTitle: "Wire details submitted", wireDetailsSubmittedMessage: "Once we receive the funds from your bank we'll pay your team on {{checkDate}}" }, f = "Payroll Summary", P = "Payroll summary (Wire funds)", k = "Payroll summary (4-day direct deposit)", x = "Payroll summary table", C = { label: "Payroll details", companyPaysTab: "Company pays", companyPaysTable: "Company pays by employee", hoursWorkedTab: "Hours worked", hoursWorkedTable: "Hours worked by employee", employeeTakeHomeTab: "Employee take home", employeeTakeHomeTable: "Employee take home by employee", taxesTab: "Taxed and debited", taxesTable: "Taxes breakdown", debitedTable: "Debited totals by company" }, v = { totalPayroll: "Total payroll", debitAmount: "Debit amount", wireAmount: "Wire amount", wireTransferDeadline: "Wire transfer deadline", employees: "Employees", grossPay: "Gross Pay", reimbursements: "Reimbursements", debitAccount: "Debit account", debitDate: "Debit date", employeePayDate: "Employee pay date", companyTaxes: "Company taxes", companyBenefits: "Company benefits", companyPays: "Company pays", compensationType: "Compensation type", regular: "Regular", overtime: "Overtime (1.5x)", doubleOT: "Overtime (2x)", timeOff: "Paid time off", totalHours: "Total hours", paymentType: "Payment type", employeeTaxes: "Employee taxes", employeeBenefits: "Employee benefits", payment: "Payment", deductions: "Deductions", taxDescription: "Tax description", byYourEmployees: "By your employees", byYourCompany: "By your company", debitedByGusto: "Debited by Gusto", taxesTotal: "Total", paystub: "Paystub", footerTotalsLabel: "Totals", footerTotalsDescription: "All employees in this payroll" }, S = "Totals", E = "Direct deposits", L = "Reimbursements", W = "Garnishments", _ = "Taxes (Employees and Employers)", B = { exempt: "Salaried / Exempt", nonexempt: "Hourly / Nonexempt" }, F = { genericBlockerTitle: "Submission blocked", genericBlockerMessage: "This payroll cannot be submitted. Please contact support for assistance.", fastAchOptions: { description: "Payroll can still be funded by selecting one of the options below. The selected funding method will only be used for this cycle and will not apply to future payroll.", fundingOptionsLabel: "Funding options", wireLabel: "Wire funds", wireFastestBadge: "Fastest", wireDescription: "Pay your employees on time by sending a wire transfer. We'll provide instructions on the next step.", directDepositLabel: "Switch to 4-day direct deposit", directDepositDescription: "Delay your employees pay date by four days and process using regular debits.", employeePayDate: "Employee pay date: {{date}}" }, fast_ach_threshold_exceeded: { title: "You have exceeded the limit at which you can process {{days}} payroll." }, needs_earned_access_for_fast_ach: { title: "You have not yet earned access to faster payroll." } }, O = {
1
+ const e = "Submit", a = "Back", t = "Save and exit", o = "Review payroll", l = "Payroll summary", s = "{{payrollType}} payroll for <dateWrapper>{{startDate}} - {{endDate}}</dateWrapper>", n = "{{payrollType}} payroll", i = "Submit", r = "Edit", y = "Cancel payroll", c = "Cancel {{startDate}} - {{endDate}} payroll?", p = "Cancel payroll?", d = "Any changes you have made to this payroll will be saved.", m = "Run this payroll by {{deadline}} to ensure your employees are paid on time.", u = " Yes, cancel payroll", b = "No, go back", h = "View payroll receipt", T = "Download paystub pdf", D = "Submitting payroll...", g = "This may take a minute or two. You can navigate away while this happens.", w = "Cancelling payroll...", f = "This payroll has been cancelled.", P = { payrollNotCalculated: "Payroll is not calculated", directDepositDeadline: "To pay your employees with direct deposit by {{payDate}}, you'll need to run payroll by {{time}} on {{date}}", paystubPdfError: "There was an issue generating the paystub PDF. Please try again later.", checkPaymentWarning_one: "You noted {{count}} employee who should be paid by check.", checkPaymentWarning_other: "You noted {{count}} employees who should be paid by check.", checkPaymentWarningDescription: "Employees with this payment method will need their checks delivered to them.", payrollProcessedTitle: "Payroll submitted", payrollProcessedMessage: "{{amount}} will be debited on {{date}}. Make sure you have these funds available.", payrollProcessingFailedTitle: "There was an error submitting payroll", payrollProcessingFailedCtaLabel: "Recalculate payroll", wireDetailsSubmittedTitle: "Wire details submitted", wireDetailsSubmittedMessage: "Once we receive the funds from your bank we'll pay your team on {{checkDate}}" }, k = "Payroll Summary", x = "Payroll summary (Wire funds)", C = "Payroll summary (4-day direct deposit)", v = "Payroll summary table", S = { label: "Payroll details", companyPaysTab: "Company pays", companyPaysTable: "Company pays by employee", hoursWorkedTab: "Hours worked", hoursWorkedTable: "Hours worked by employee", employeeTakeHomeTab: "Employee take home", employeeTakeHomeTable: "Employee take home by employee", taxesTab: "Taxed and debited", taxesTable: "Taxes breakdown", debitedTable: "Debited totals by company" }, E = { totalPayroll: "Total payroll", debitAmount: "Debit amount", wireAmount: "Wire amount", wireTransferDeadline: "Wire transfer deadline", employees: "Employees", grossPay: "Gross Pay", reimbursements: "Reimbursements", debitAccount: "Debit account", debitDate: "Debit date", employeePayDate: "Employee pay date", companyTaxes: "Company taxes", companyBenefits: "Company benefits", companyPays: "Company pays", compensationType: "Compensation type", regular: "Regular", overtime: "Overtime (1.5x)", doubleOT: "Overtime (2x)", timeOff: "Paid time off", totalHours: "Total hours", paymentType: "Payment type", employeeTaxes: "Employee taxes", employeeBenefits: "Employee benefits", payment: "Payment", deductions: "Deductions", taxDescription: "Tax description", byYourEmployees: "By your employees", byYourCompany: "By your company", debitedByGusto: "Debited by Gusto", taxesTotal: "Total", paystub: "Paystub", footerTotalsLabel: "Totals", footerTotalsDescription: "All employees in this payroll" }, L = "Totals", W = "Direct deposits", _ = "Reimbursements", B = "Garnishments", F = "Taxes (Employees and Employers)", O = { exempt: "Salaried / Exempt", nonexempt: "Hourly / Nonexempt" }, Y = { genericBlockerTitle: "Submission blocked", genericBlockerMessage: "This payroll cannot be submitted. Please contact support for assistance.", fastAchOptions: { description: "Payroll can still be funded by selecting one of the options below. The selected funding method will only be used for this cycle and will not apply to future payroll.", fundingOptionsLabel: "Funding options", wireLabel: "Wire funds", wireFastestBadge: "Fastest", wireDescription: "Pay your employees on time by sending a wire transfer. We'll provide instructions on the next step.", directDepositLabel: "Switch to 4-day direct deposit", directDepositDescription: "Delay your employees pay date by four days and process using regular debits.", employeePayDate: "Employee pay date: {{date}}" }, fast_ach_threshold_exceeded: { title: "You have exceeded the limit at which you can process {{days}} payroll." }, needs_earned_access_for_fast_ach: { title: "You have not yet earned access to faster payroll." } }, H = {
2
2
  breadcrumbLabel: e,
3
3
  backCta: a,
4
4
  exitFlowCta: t,
5
5
  overviewTitle: o,
6
6
  summaryTitle: l,
7
7
  pageSubtitle: s,
8
- submitCta: n,
9
- editCta: i,
10
- cancelCta: r,
11
- cancelDialogTitle: y,
12
- cancelDialogDescription: c,
13
- cancelDialogDescriptionDeadline: p,
14
- confirmCancelCta: d,
15
- declineCancelCta: m,
16
- payrollReceiptCta: u,
17
- downloadPaystubLabel: b,
18
- loadingTitle: h,
19
- loadingDescription: T,
20
- cancellingTitle: D,
21
- cancelledEmptyState: g,
22
- alerts: w,
23
- payrollSummaryTitle: f,
24
- payrollSummaryTitleWire: P,
25
- payrollSummaryTitleFourDay: k,
26
- payrollSummaryLabel: x,
27
- dataViews: C,
28
- tableHeaders: v,
29
- totalsLabel: S,
30
- directDepositLabel: E,
31
- reimbursementLabel: L,
32
- garnishmentsLabel: W,
33
- taxesLabel: _,
34
- compensationTypeLabels: B,
35
- submissionBlockers: F
8
+ pageSubtitleDismissal: n,
9
+ submitCta: i,
10
+ editCta: r,
11
+ cancelCta: y,
12
+ cancelDialogTitle: c,
13
+ cancelDialogTitleDismissal: p,
14
+ cancelDialogDescription: d,
15
+ cancelDialogDescriptionDeadline: m,
16
+ confirmCancelCta: u,
17
+ declineCancelCta: b,
18
+ payrollReceiptCta: h,
19
+ downloadPaystubLabel: T,
20
+ loadingTitle: D,
21
+ loadingDescription: g,
22
+ cancellingTitle: w,
23
+ cancelledEmptyState: f,
24
+ alerts: P,
25
+ payrollSummaryTitle: k,
26
+ payrollSummaryTitleWire: x,
27
+ payrollSummaryTitleFourDay: C,
28
+ payrollSummaryLabel: v,
29
+ dataViews: S,
30
+ tableHeaders: E,
31
+ totalsLabel: L,
32
+ directDepositLabel: W,
33
+ reimbursementLabel: _,
34
+ garnishmentsLabel: B,
35
+ taxesLabel: F,
36
+ compensationTypeLabels: O,
37
+ submissionBlockers: Y
36
38
  };
37
39
  export {
38
- w as alerts,
40
+ P as alerts,
39
41
  a as backCta,
40
42
  e as breadcrumbLabel,
41
- r as cancelCta,
42
- c as cancelDialogDescription,
43
- p as cancelDialogDescriptionDeadline,
44
- y as cancelDialogTitle,
45
- g as cancelledEmptyState,
46
- D as cancellingTitle,
47
- B as compensationTypeLabels,
48
- d as confirmCancelCta,
49
- C as dataViews,
50
- m as declineCancelCta,
51
- O as default,
52
- E as directDepositLabel,
53
- b as downloadPaystubLabel,
54
- i as editCta,
43
+ y as cancelCta,
44
+ d as cancelDialogDescription,
45
+ m as cancelDialogDescriptionDeadline,
46
+ c as cancelDialogTitle,
47
+ p as cancelDialogTitleDismissal,
48
+ f as cancelledEmptyState,
49
+ w as cancellingTitle,
50
+ O as compensationTypeLabels,
51
+ u as confirmCancelCta,
52
+ S as dataViews,
53
+ b as declineCancelCta,
54
+ H as default,
55
+ W as directDepositLabel,
56
+ T as downloadPaystubLabel,
57
+ r as editCta,
55
58
  t as exitFlowCta,
56
- W as garnishmentsLabel,
57
- T as loadingDescription,
58
- h as loadingTitle,
59
+ B as garnishmentsLabel,
60
+ g as loadingDescription,
61
+ D as loadingTitle,
59
62
  o as overviewTitle,
60
63
  s as pageSubtitle,
61
- u as payrollReceiptCta,
62
- x as payrollSummaryLabel,
63
- f as payrollSummaryTitle,
64
- k as payrollSummaryTitleFourDay,
65
- P as payrollSummaryTitleWire,
66
- L as reimbursementLabel,
67
- F as submissionBlockers,
68
- n as submitCta,
64
+ n as pageSubtitleDismissal,
65
+ h as payrollReceiptCta,
66
+ v as payrollSummaryLabel,
67
+ k as payrollSummaryTitle,
68
+ C as payrollSummaryTitleFourDay,
69
+ x as payrollSummaryTitleWire,
70
+ _ as reimbursementLabel,
71
+ Y as submissionBlockers,
72
+ i as submitCta,
69
73
  l as summaryTitle,
70
- v as tableHeaders,
71
- _ as taxesLabel,
72
- S as totalsLabel
74
+ E as tableHeaders,
75
+ F as taxesLabel,
76
+ L as totalsLabel
73
77
  };
74
78
  //# sourceMappingURL=Payroll.PayrollOverview.json.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Payroll.PayrollOverview.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"Payroll.PayrollOverview.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}