@gusto/embedded-react-sdk 0.37.0 → 0.38.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (599) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/README.md +3 -0
  3. package/dist/UNSTABLE_Hooks.js +2 -2
  4. package/dist/assets/icons/filter-funnel.svg.js +10 -0
  5. package/dist/assets/icons/filter-funnel.svg.js.map +1 -0
  6. package/dist/components/Base/createCompoundContext.js.map +1 -1
  7. package/dist/components/Common/DataView/DataCards/DataCards.js +42 -36
  8. package/dist/components/Common/DataView/DataCards/DataCards.js.map +1 -1
  9. package/dist/components/Common/DateRangeFilter/DateRangeFilter.d.ts +17 -0
  10. package/dist/components/Common/DateRangeFilter/DateRangeFilter.js +100 -0
  11. package/dist/components/Common/DateRangeFilter/DateRangeFilter.js.map +1 -0
  12. package/dist/components/Common/DateRangeFilter/DateRangeFilter.module.scss.js +10 -0
  13. package/dist/components/Common/DateRangeFilter/DateRangeFilter.module.scss.js.map +1 -0
  14. package/dist/components/Common/DetailViewLayout/DetailViewLayout.d.ts +2 -0
  15. package/dist/components/Common/DetailViewLayout/DetailViewLayoutTypes.d.ts +40 -0
  16. package/dist/components/Common/DetailViewLayout/index.d.ts +3 -0
  17. package/dist/components/Common/Fields/CheckboxField/CheckboxField.js +26 -24
  18. package/dist/components/Common/Fields/CheckboxField/CheckboxField.js.map +1 -1
  19. package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.d.ts +1 -1
  20. package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.js +32 -30
  21. package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.js.map +1 -1
  22. package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.d.ts +1 -1
  23. package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.js +36 -34
  24. package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.js.map +1 -1
  25. package/dist/components/Common/Fields/DatePickerField/DatePickerField.d.ts +1 -1
  26. package/dist/components/Common/Fields/DatePickerField/DatePickerField.js +40 -38
  27. package/dist/components/Common/Fields/DatePickerField/DatePickerField.js.map +1 -1
  28. package/dist/components/Common/Fields/FileInputField/FileInputField.js +24 -22
  29. package/dist/components/Common/Fields/FileInputField/FileInputField.js.map +1 -1
  30. package/dist/components/Common/Fields/MultiSelectComboBoxField/MultiSelectComboBoxField.js +24 -22
  31. package/dist/components/Common/Fields/MultiSelectComboBoxField/MultiSelectComboBoxField.js.map +1 -1
  32. package/dist/components/Common/Fields/NumberInputField/NumberInputField.js +27 -25
  33. package/dist/components/Common/Fields/NumberInputField/NumberInputField.js.map +1 -1
  34. package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.d.ts +1 -1
  35. package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.js +34 -32
  36. package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.js.map +1 -1
  37. package/dist/components/Common/Fields/SelectField/SelectField.d.ts +1 -1
  38. package/dist/components/Common/Fields/SelectField/SelectField.js +34 -32
  39. package/dist/components/Common/Fields/SelectField/SelectField.js.map +1 -1
  40. package/dist/components/Common/Fields/SwitchField/SwitchField.js +26 -24
  41. package/dist/components/Common/Fields/SwitchField/SwitchField.js.map +1 -1
  42. package/dist/components/Common/Fields/TextAreaField/TextAreaField.js +24 -22
  43. package/dist/components/Common/Fields/TextAreaField/TextAreaField.js.map +1 -1
  44. package/dist/components/Common/Fields/TextInputField/TextInputField.js +26 -24
  45. package/dist/components/Common/Fields/TextInputField/TextInputField.js.map +1 -1
  46. package/dist/components/Common/Fields/hooks/useField.d.ts +3 -2
  47. package/dist/components/Common/Fields/hooks/useField.js +37 -33
  48. package/dist/components/Common/Fields/hooks/useField.js.map +1 -1
  49. package/dist/components/Common/FlowBreadcrumbs/FlowBreadcrumbs.js +21 -20
  50. package/dist/components/Common/FlowBreadcrumbs/FlowBreadcrumbs.js.map +1 -1
  51. package/dist/components/Common/FlowBreadcrumbs/FlowBreadcrumbsTypes.d.ts +5 -0
  52. package/dist/components/Common/FlowBreadcrumbs/breadcrumbTransitionHelpers.d.ts +1 -1
  53. package/dist/components/Common/FlowBreadcrumbs/breadcrumbTransitionHelpers.js +10 -8
  54. package/dist/components/Common/FlowBreadcrumbs/breadcrumbTransitionHelpers.js.map +1 -1
  55. package/dist/components/Common/ReorderableList/ReorderableList.js.map +1 -1
  56. package/dist/components/Common/SignatureForm/SignatureForm.js +10 -13
  57. package/dist/components/Common/SignatureForm/SignatureForm.js.map +1 -1
  58. package/dist/components/Common/SignatureForm/SignatureFormActions.js +6 -8
  59. package/dist/components/Common/SignatureForm/SignatureFormActions.js.map +1 -1
  60. package/dist/components/Common/SignatureForm/SignatureFormFields.js +11 -14
  61. package/dist/components/Common/SignatureForm/SignatureFormFields.js.map +1 -1
  62. package/dist/components/Common/UI/Breadcrumbs/Breadcrumbs.js +17 -17
  63. package/dist/components/Common/UI/Breadcrumbs/Breadcrumbs.js.map +1 -1
  64. package/dist/components/Common/UI/Breadcrumbs/BreadcrumbsTypes.d.ts +5 -0
  65. package/dist/components/Common/UI/Breadcrumbs/BreadcrumbsTypes.js.map +1 -1
  66. package/dist/components/Common/UI/Button/Button.js +33 -29
  67. package/dist/components/Common/UI/Button/Button.js.map +1 -1
  68. package/dist/components/Common/UI/Button/Button.module.scss.js +5 -3
  69. package/dist/components/Common/UI/Button/Button.module.scss.js.map +1 -1
  70. package/dist/components/Common/UI/Button/ButtonTypes.d.ts +4 -0
  71. package/dist/components/Common/UI/Button/ButtonTypes.js.map +1 -1
  72. package/dist/components/Common/UI/DatePicker/DatePicker.d.ts +1 -1
  73. package/dist/components/Common/UI/DatePicker/DatePicker.js +88 -69
  74. package/dist/components/Common/UI/DatePicker/DatePicker.js.map +1 -1
  75. package/dist/components/Common/UI/DatePicker/DatePickerTypes.d.ts +13 -0
  76. package/dist/components/Common/UI/DateRangePicker/DateRangePicker.d.ts +2 -0
  77. package/dist/components/Common/UI/DateRangePicker/DateRangePicker.js +74 -0
  78. package/dist/components/Common/UI/DateRangePicker/DateRangePicker.js.map +1 -0
  79. package/dist/components/Common/UI/DateRangePicker/DateRangePicker.module.scss.js +30 -0
  80. package/dist/components/Common/UI/DateRangePicker/DateRangePicker.module.scss.js.map +1 -0
  81. package/dist/components/Common/UI/DateRangePicker/DateRangePickerTypes.d.ts +14 -0
  82. package/dist/components/Common/UI/DateRangePicker/index.d.ts +2 -0
  83. package/dist/components/Common/UI/DescriptionList/DescriptionList.module.scss.js +2 -2
  84. package/dist/components/Common/UI/Heading/Heading.d.ts +1 -1
  85. package/dist/components/Common/UI/Heading/Heading.js +11 -9
  86. package/dist/components/Common/UI/Heading/Heading.js.map +1 -1
  87. package/dist/components/Common/UI/Heading/HeadingTypes.d.ts +1 -1
  88. package/dist/components/Common/UI/MultiSelectComboBox/MultiSelectComboBox.js +94 -80
  89. package/dist/components/Common/UI/MultiSelectComboBox/MultiSelectComboBox.js.map +1 -1
  90. package/dist/components/Common/UI/NumberInput/NumberInput.js +1 -1
  91. package/dist/components/Common/UI/NumberInput/NumberInput.js.map +1 -1
  92. package/dist/components/Common/index.d.ts +2 -0
  93. package/dist/components/Company/AssignSignatory/AssignSignatory.js +7 -10
  94. package/dist/components/Company/AssignSignatory/AssignSignatory.js.map +1 -1
  95. package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js +2 -4
  96. package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js.map +1 -1
  97. package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js +2 -3
  98. package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js.map +1 -1
  99. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.js +6 -9
  100. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.js.map +1 -1
  101. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js +11 -12
  102. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js.map +1 -1
  103. package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js +2 -3
  104. package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js.map +1 -1
  105. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.js +5 -8
  106. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.js.map +1 -1
  107. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js +12 -13
  108. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js.map +1 -1
  109. package/dist/components/Company/AssignSignatory/TitleSelect.js +2 -4
  110. package/dist/components/Company/AssignSignatory/TitleSelect.js.map +1 -1
  111. package/dist/components/Company/BankAccount/BankAccountForm/Actions.js +8 -9
  112. package/dist/components/Company/BankAccount/BankAccountForm/Actions.js.map +1 -1
  113. package/dist/components/Company/BankAccount/BankAccountForm/Form.js +4 -6
  114. package/dist/components/Company/BankAccount/BankAccountForm/Form.js.map +1 -1
  115. package/dist/components/Company/BankAccount/BankAccountList/Actions.js +2 -3
  116. package/dist/components/Company/BankAccount/BankAccountList/Actions.js.map +1 -1
  117. package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js +6 -7
  118. package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js.map +1 -1
  119. package/dist/components/Company/BankAccount/BankAccountVerify/Form.js +4 -6
  120. package/dist/components/Company/BankAccount/BankAccountVerify/Form.js.map +1 -1
  121. package/dist/components/Company/DocumentSigner/DocumentList/Actions.js +2 -3
  122. package/dist/components/Company/DocumentSigner/DocumentList/Actions.js.map +1 -1
  123. package/dist/components/Company/DocumentSigner/DocumentList/DocumentList.js +10 -13
  124. package/dist/components/Company/DocumentSigner/DocumentList/DocumentList.js.map +1 -1
  125. package/dist/components/Company/DocumentSigner/SignatureForm/SignatureForm.js +11 -14
  126. package/dist/components/Company/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -1
  127. package/dist/components/Company/FederalTaxes/Actions.js +6 -7
  128. package/dist/components/Company/FederalTaxes/Actions.js.map +1 -1
  129. package/dist/components/Company/FederalTaxes/FederalTaxes.js +12 -15
  130. package/dist/components/Company/FederalTaxes/FederalTaxes.js.map +1 -1
  131. package/dist/components/Company/FederalTaxes/Form.js +4 -4
  132. package/dist/components/Company/Industry/Actions.js +7 -8
  133. package/dist/components/Company/Industry/Actions.js.map +1 -1
  134. package/dist/components/Company/Industry/Edit.js +2 -4
  135. package/dist/components/Company/Industry/Edit.js.map +1 -1
  136. package/dist/components/Company/Locations/LocationForm/Actions.js +6 -7
  137. package/dist/components/Company/Locations/LocationForm/Actions.js.map +1 -1
  138. package/dist/components/Company/Locations/LocationForm/Form.js +4 -6
  139. package/dist/components/Company/Locations/LocationForm/Form.js.map +1 -1
  140. package/dist/components/Company/Locations/LocationForm/LocationForm.js +14 -17
  141. package/dist/components/Company/Locations/LocationForm/LocationForm.js.map +1 -1
  142. package/dist/components/Company/Locations/LocationsList/Actions.js +2 -3
  143. package/dist/components/Company/Locations/LocationsList/Actions.js.map +1 -1
  144. package/dist/components/Company/Locations/LocationsList/List.js +9 -9
  145. package/dist/components/Company/Locations/LocationsList/LocationsList.js +6 -9
  146. package/dist/components/Company/Locations/LocationsList/LocationsList.js.map +1 -1
  147. package/dist/components/Company/OnboardingOverview/Completed.js +2 -3
  148. package/dist/components/Company/OnboardingOverview/Completed.js.map +1 -1
  149. package/dist/components/Company/OnboardingOverview/MissingRequirements.js +8 -9
  150. package/dist/components/Company/OnboardingOverview/MissingRequirements.js.map +1 -1
  151. package/dist/components/Company/OnboardingOverview/OnboardingOverview.js +6 -9
  152. package/dist/components/Company/OnboardingOverview/OnboardingOverview.js.map +1 -1
  153. package/dist/components/Company/PaySchedule/PaySchedule.js +66 -65
  154. package/dist/components/Company/PaySchedule/PaySchedule.js.map +1 -1
  155. package/dist/components/Company/PaySchedule/_parts/Actions.js +18 -19
  156. package/dist/components/Company/PaySchedule/_parts/Actions.js.map +1 -1
  157. package/dist/components/Company/PaySchedule/_parts/Edit.js +40 -37
  158. package/dist/components/Company/PaySchedule/_parts/Edit.js.map +1 -1
  159. package/dist/components/Company/PaySchedule/_parts/Head.js +8 -9
  160. package/dist/components/Company/PaySchedule/_parts/Head.js.map +1 -1
  161. package/dist/components/Company/PaySchedule/_parts/List.js +8 -8
  162. package/dist/components/Company/PaySchedule/usePaySchedule.d.ts +2 -0
  163. package/dist/components/Company/PaySchedule/usePaySchedule.js.map +1 -1
  164. package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js +2 -3
  165. package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js.map +1 -1
  166. package/dist/components/Company/StateTaxes/StateTaxesForm/StateTaxesForm.js.map +1 -1
  167. package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js +2 -3
  168. package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js.map +1 -1
  169. package/dist/components/Company/StateTaxes/StateTaxesList/List.js +2 -3
  170. package/dist/components/Company/StateTaxes/StateTaxesList/List.js.map +1 -1
  171. package/dist/components/Contractor/Address/Address.js +2 -5
  172. package/dist/components/Contractor/Address/Address.js.map +1 -1
  173. package/dist/components/Contractor/Address/Form.js +2 -4
  174. package/dist/components/Contractor/Address/Form.js.map +1 -1
  175. package/dist/components/Contractor/ContractorList/index.js +33 -33
  176. package/dist/components/Contractor/ContractorList/index.js.map +1 -1
  177. package/dist/components/Contractor/PaymentMethod/BankAccountForm.js +10 -12
  178. package/dist/components/Contractor/PaymentMethod/BankAccountForm.js.map +1 -1
  179. package/dist/components/Contractor/PaymentMethod/PaymentTypeForm.js +2 -4
  180. package/dist/components/Contractor/PaymentMethod/PaymentTypeForm.js.map +1 -1
  181. package/dist/components/Contractor/Payments/CreatePayment/CreatePayment.js.map +1 -1
  182. package/dist/components/Contractor/Payments/CreatePayment/CreatePaymentPresentation.js +10 -10
  183. package/dist/components/Contractor/Payments/CreatePayment/FastAchSubmissionBlockerBanner.js +17 -18
  184. package/dist/components/Contractor/Payments/CreatePayment/FastAchSubmissionBlockerBanner.js.map +1 -1
  185. package/dist/components/Contractor/Payments/PaymentHistory/PaymentHistoryPresentation.js +15 -15
  186. package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.js +2 -3
  187. package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.js.map +1 -1
  188. package/dist/components/Contractor/Profile/useContractorProfile.js +42 -40
  189. package/dist/components/Contractor/Profile/useContractorProfile.js.map +1 -1
  190. package/dist/components/Contractor/Submit/Submit.d.ts +2 -2
  191. package/dist/components/Contractor/Submit/Submit.js +45 -46
  192. package/dist/components/Contractor/Submit/Submit.js.map +1 -1
  193. package/dist/components/Employee/Compensation/Actions.js +12 -13
  194. package/dist/components/Employee/Compensation/Actions.js.map +1 -1
  195. package/dist/components/Employee/Compensation/Compensation.js.map +1 -1
  196. package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.js +49 -44
  197. package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.js.map +1 -1
  198. package/dist/components/Employee/Deductions/DeductionsForm/DeductionsForm.js.map +1 -1
  199. package/dist/components/Employee/Deductions/DeductionsList/DeductionsList.js +12 -12
  200. package/dist/components/Employee/Deductions/IncludeDeductions/IncludeDeductions.js +6 -7
  201. package/dist/components/Employee/Deductions/IncludeDeductions/IncludeDeductions.js.map +1 -1
  202. package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js +2 -3
  203. package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js.map +1 -1
  204. package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js +8 -11
  205. package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js.map +1 -1
  206. package/dist/components/Employee/DocumentSigner/DocumentList/List.js +2 -4
  207. package/dist/components/Employee/DocumentSigner/DocumentList/List.js.map +1 -1
  208. package/dist/components/Employee/DocumentSigner/EmploymentEligibility/EmploymentEligibilityPresentation.js +6 -6
  209. package/dist/components/Employee/DocumentSigner/I9SignatureForm/I9SignatureForm.js +3 -4
  210. package/dist/components/Employee/DocumentSigner/I9SignatureForm/I9SignatureForm.js.map +1 -1
  211. package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js +9 -12
  212. package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -1
  213. package/dist/components/Employee/EmployeeDocuments/EmployeeDocumentsPresentation.js +6 -7
  214. package/dist/components/Employee/EmployeeDocuments/EmployeeDocumentsPresentation.js.map +1 -1
  215. package/dist/components/Employee/EmployeeList/EmployeeList.d.ts +2 -5
  216. package/dist/components/Employee/EmployeeList/EmployeeList.js +45 -95
  217. package/dist/components/Employee/EmployeeList/EmployeeList.js.map +1 -1
  218. package/dist/components/Employee/EmployeeList/EmployeeListView.d.ts +15 -0
  219. package/dist/components/Employee/EmployeeList/EmployeeListView.js +132 -0
  220. package/dist/components/Employee/EmployeeList/EmployeeListView.js.map +1 -0
  221. package/dist/components/Employee/EmployeeList/ManagementEmployeeList.d.ts +9 -0
  222. package/dist/components/Employee/EmployeeList/ManagementEmployeeList.js +81 -0
  223. package/dist/components/Employee/EmployeeList/ManagementEmployeeList.js.map +1 -0
  224. package/dist/components/Employee/EmployeeList/ManagementEmployeeListView.d.ts +17 -0
  225. package/dist/components/Employee/EmployeeList/ManagementEmployeeListView.js +195 -0
  226. package/dist/components/Employee/EmployeeList/ManagementEmployeeListView.js.map +1 -0
  227. package/dist/components/Employee/EmployeeList/index.d.ts +3 -0
  228. package/dist/components/Employee/EmployeeList/useEmployeeList.d.ts +36 -23
  229. package/dist/components/Employee/EmployeeList/useEmployeeList.js +114 -19
  230. package/dist/components/Employee/EmployeeList/useEmployeeList.js.map +1 -1
  231. package/dist/components/Employee/FederalTaxes/Actions.js +5 -6
  232. package/dist/components/Employee/FederalTaxes/Actions.js.map +1 -1
  233. package/dist/components/Employee/FederalTaxes/FederalForm.js +4 -5
  234. package/dist/components/Employee/FederalTaxes/FederalForm.js.map +1 -1
  235. package/dist/components/Employee/OnboardingFlow/OnboardingFlow.js +4 -4
  236. package/dist/components/Employee/OnboardingFlow/OnboardingFlow.js.map +1 -1
  237. package/dist/components/Employee/OnboardingFlow/OnboardingFlowComponents.d.ts +1 -0
  238. package/dist/components/Employee/OnboardingFlow/OnboardingFlowComponents.js +14 -8
  239. package/dist/components/Employee/OnboardingFlow/OnboardingFlowComponents.js.map +1 -1
  240. package/dist/components/Employee/OnboardingFlow/onboardingStateMachine.js +10 -11
  241. package/dist/components/Employee/OnboardingFlow/onboardingStateMachine.js.map +1 -1
  242. package/dist/components/Employee/PaymentMethod/Actions.js +5 -6
  243. package/dist/components/Employee/PaymentMethod/Actions.js.map +1 -1
  244. package/dist/components/Employee/PaymentMethod/BankAccountEdit.js +2 -4
  245. package/dist/components/Employee/PaymentMethod/BankAccountEdit.js.map +1 -1
  246. package/dist/components/Employee/PaymentMethod/BankAccountsList.js +10 -10
  247. package/dist/components/Employee/PaymentMethod/BankAccountsList.js.map +1 -1
  248. package/dist/components/Employee/PaymentMethod/PaymentMethod.js +44 -43
  249. package/dist/components/Employee/PaymentMethod/PaymentMethod.js.map +1 -1
  250. package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js +5 -7
  251. package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js.map +1 -1
  252. package/dist/components/Employee/PaymentMethod/Split.js +4 -4
  253. package/dist/components/Employee/PaymentMethod/usePaymentMethod.d.ts +1 -0
  254. package/dist/components/Employee/PaymentMethod/usePaymentMethod.js.map +1 -1
  255. package/dist/components/Employee/Profile/Actions.js +5 -6
  256. package/dist/components/Employee/Profile/Actions.js.map +1 -1
  257. package/dist/components/Employee/Profile/AdminPersonalDetails.js +14 -15
  258. package/dist/components/Employee/Profile/AdminPersonalDetails.js.map +1 -1
  259. package/dist/components/Employee/Profile/HomeAddress.js +8 -9
  260. package/dist/components/Employee/Profile/HomeAddress.js.map +1 -1
  261. package/dist/components/Employee/Profile/PersonalDetailsInputs.js +8 -10
  262. package/dist/components/Employee/Profile/PersonalDetailsInputs.js.map +1 -1
  263. package/dist/components/Employee/Profile/Profile.js.map +1 -1
  264. package/dist/components/Employee/StateTaxes/Actions.js +5 -6
  265. package/dist/components/Employee/StateTaxes/Actions.js.map +1 -1
  266. package/dist/components/Employee/Taxes/Actions.js +6 -7
  267. package/dist/components/Employee/Taxes/Actions.js.map +1 -1
  268. package/dist/components/Employee/Taxes/FederalForm.js +4 -5
  269. package/dist/components/Employee/Taxes/FederalForm.js.map +1 -1
  270. package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployee.js +48 -48
  271. package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployee.js.map +1 -1
  272. package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployeePresentation.js +6 -7
  273. package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployeePresentation.js.map +1 -1
  274. package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.d.ts +1 -0
  275. package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.js +38 -33
  276. package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.js.map +1 -1
  277. package/dist/components/Employee/Terminations/TerminationFlow/terminationStateMachine.d.ts +1 -0
  278. package/dist/components/Employee/Terminations/TerminationFlow/terminationStateMachine.js +57 -45
  279. package/dist/components/Employee/Terminations/TerminationFlow/terminationStateMachine.js.map +1 -1
  280. package/dist/components/Employee/Terminations/TerminationSummary/TerminationSummaryPresentation.js +8 -9
  281. package/dist/components/Employee/Terminations/TerminationSummary/TerminationSummaryPresentation.js.map +1 -1
  282. package/dist/components/Employee/index.d.ts +1 -0
  283. package/dist/components/Employee/index.js +38 -36
  284. package/dist/components/Employee/index.js.map +1 -1
  285. package/dist/components/Flow/Flow.js +6 -7
  286. package/dist/components/Flow/Flow.js.map +1 -1
  287. package/dist/components/InformationRequests/InformationRequestForm/InformationRequestForm.js +1 -2
  288. package/dist/components/InformationRequests/InformationRequestForm/InformationRequestForm.js.map +1 -1
  289. package/dist/components/InformationRequests/InformationRequestList/InformationRequestList.js +10 -11
  290. package/dist/components/InformationRequests/InformationRequestList/InformationRequestList.js.map +1 -1
  291. package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsBanner/ConfirmWireDetailsBanner.js.map +1 -1
  292. package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.js +0 -1
  293. package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.js.map +1 -1
  294. package/dist/components/Payroll/Dismissal/DismissalFlow.js +14 -14
  295. package/dist/components/Payroll/Dismissal/DismissalFlow.js.map +1 -1
  296. package/dist/components/Payroll/Dismissal/DismissalFlowComponents.d.ts +2 -2
  297. package/dist/components/Payroll/Dismissal/DismissalFlowComponents.js +21 -20
  298. package/dist/components/Payroll/Dismissal/DismissalFlowComponents.js.map +1 -1
  299. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelection.d.ts +2 -1
  300. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelection.js +57 -55
  301. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelection.js.map +1 -1
  302. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelectionPresentation.js +2 -3
  303. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelectionPresentation.js.map +1 -1
  304. package/dist/components/Payroll/GrossUpModal/GrossUpModal.d.ts +1 -1
  305. package/dist/components/Payroll/GrossUpModal/GrossUpModal.js +83 -71
  306. package/dist/components/Payroll/GrossUpModal/GrossUpModal.js.map +1 -1
  307. package/dist/components/Payroll/GrossUpModal/GrossUpModal.module.scss.js +7 -7
  308. package/dist/components/Payroll/GrossUpModal/GrossUpModalTypes.d.ts +0 -1
  309. package/dist/components/Payroll/OffCycle/OffCycleFlow.d.ts +1 -1
  310. package/dist/components/Payroll/OffCycle/OffCycleFlow.js +24 -18
  311. package/dist/components/Payroll/OffCycle/OffCycleFlow.js.map +1 -1
  312. package/dist/components/Payroll/OffCycle/OffCycleFlowComponents.d.ts +2 -0
  313. package/dist/components/Payroll/OffCycle/OffCycleFlowComponents.js +28 -22
  314. package/dist/components/Payroll/OffCycle/OffCycleFlowComponents.js.map +1 -1
  315. package/dist/components/Payroll/OffCycleCreation/OffCycleCreation.js +56 -53
  316. package/dist/components/Payroll/OffCycleCreation/OffCycleCreation.js.map +1 -1
  317. package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormPresentation.js +17 -23
  318. package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormPresentation.js.map +1 -1
  319. package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormTypes.js +2 -2
  320. package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormTypes.js.map +1 -1
  321. package/dist/components/Payroll/OffCycleReasonSelection/OffCycleReasonSelectionPresentation.js +2 -3
  322. package/dist/components/Payroll/OffCycleReasonSelection/OffCycleReasonSelectionPresentation.js.map +1 -1
  323. package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerAlerts.js +2 -3
  324. package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerAlerts.js.map +1 -1
  325. package/dist/components/Payroll/PayrollConfiguration/PayrollConfiguration.js +194 -190
  326. package/dist/components/Payroll/PayrollConfiguration/PayrollConfiguration.js.map +1 -1
  327. package/dist/components/Payroll/PayrollConfiguration/PayrollConfigurationPresentation.js +69 -69
  328. package/dist/components/Payroll/PayrollConfiguration/PayrollConfigurationPresentation.js.map +1 -1
  329. package/dist/components/Payroll/PayrollConfiguration/usePayrollConfigurationData.d.ts +2 -1
  330. package/dist/components/Payroll/PayrollConfiguration/usePayrollConfigurationData.js +102 -76
  331. package/dist/components/Payroll/PayrollConfiguration/usePayrollConfigurationData.js.map +1 -1
  332. package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.d.ts +1 -1
  333. package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.js +228 -231
  334. package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.js.map +1 -1
  335. package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.module.scss.js +7 -7
  336. package/dist/components/Payroll/PayrollEditEmployee/TimeOffField.d.ts +11 -0
  337. package/dist/components/Payroll/PayrollEditEmployee/TimeOffField.js +60 -25
  338. package/dist/components/Payroll/PayrollEditEmployee/TimeOffField.js.map +1 -1
  339. package/dist/components/Payroll/PayrollExecutionFlow/PayrollExecutionFlow.d.ts +2 -1
  340. package/dist/components/Payroll/PayrollExecutionFlow/PayrollExecutionFlow.js +43 -41
  341. package/dist/components/Payroll/PayrollExecutionFlow/PayrollExecutionFlow.js.map +1 -1
  342. package/dist/components/Payroll/PayrollExecutionFlow/index.d.ts +1 -1
  343. package/dist/components/Payroll/PayrollExecutionFlow/payrollExecutionMachine.d.ts +1 -1
  344. package/dist/components/Payroll/PayrollExecutionFlow/payrollExecutionMachine.js +62 -51
  345. package/dist/components/Payroll/PayrollExecutionFlow/payrollExecutionMachine.js.map +1 -1
  346. package/dist/components/Payroll/PayrollFlow/OffCycleFlowContextual.js +13 -6
  347. package/dist/components/Payroll/PayrollFlow/OffCycleFlowContextual.js.map +1 -1
  348. package/dist/components/Payroll/PayrollFlow/PayrollExecutionFlowContextual.js +22 -20
  349. package/dist/components/Payroll/PayrollFlow/PayrollExecutionFlowContextual.js.map +1 -1
  350. package/dist/components/Payroll/PayrollFlow/PayrollFlowComponents.d.ts +1 -0
  351. package/dist/components/Payroll/PayrollFlow/PayrollFlowComponents.js.map +1 -1
  352. package/dist/components/Payroll/PayrollFlow/TransitionFlowContextual.js +35 -14
  353. package/dist/components/Payroll/PayrollFlow/TransitionFlowContextual.js.map +1 -1
  354. package/dist/components/Payroll/PayrollFlow/payrollStateMachine.js +80 -69
  355. package/dist/components/Payroll/PayrollFlow/payrollStateMachine.js.map +1 -1
  356. package/dist/components/Payroll/PayrollHistory/PayrollHistory.d.ts +0 -1
  357. package/dist/components/Payroll/PayrollHistory/PayrollHistory.js +59 -66
  358. package/dist/components/Payroll/PayrollHistory/PayrollHistory.js.map +1 -1
  359. package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.d.ts +5 -4
  360. package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.js +96 -103
  361. package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.js.map +1 -1
  362. package/dist/components/Payroll/PayrollList/PayrollList.js +98 -64
  363. package/dist/components/Payroll/PayrollList/PayrollList.js.map +1 -1
  364. package/dist/components/Payroll/PayrollList/PayrollListPresentation.d.ts +9 -1
  365. package/dist/components/Payroll/PayrollList/PayrollListPresentation.js +211 -132
  366. package/dist/components/Payroll/PayrollList/PayrollListPresentation.js.map +1 -1
  367. package/dist/components/Payroll/PayrollList/PayrollListPresentation.module.scss.js +8 -6
  368. package/dist/components/Payroll/PayrollList/PayrollListPresentation.module.scss.js.map +1 -1
  369. package/dist/components/Payroll/PayrollOverview/PayrollOverview.js +55 -53
  370. package/dist/components/Payroll/PayrollOverview/PayrollOverview.js.map +1 -1
  371. package/dist/components/Payroll/PayrollOverview/PayrollOverviewPresentation.js +231 -222
  372. package/dist/components/Payroll/PayrollOverview/PayrollOverviewPresentation.js.map +1 -1
  373. package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchSubmissionBlockerBanner.js +7 -8
  374. package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchSubmissionBlockerBanner.js.map +1 -1
  375. package/dist/components/Payroll/RecoveryCases/RecoveryCasesList/RecoveryCasesList.js +2 -3
  376. package/dist/components/Payroll/RecoveryCases/RecoveryCasesList/RecoveryCasesList.js.map +1 -1
  377. package/dist/components/Payroll/RecoveryCases/RecoveryCasesResubmit/RecoveryCasesResubmit.js +7 -8
  378. package/dist/components/Payroll/RecoveryCases/RecoveryCasesResubmit/RecoveryCasesResubmit.js.map +1 -1
  379. package/dist/components/Payroll/RecoveryCases/useRecoveryCaseErrorCode.js +2 -3
  380. package/dist/components/Payroll/RecoveryCases/useRecoveryCaseErrorCode.js.map +1 -1
  381. package/dist/components/Payroll/Transition/TransitionFlow.d.ts +1 -1
  382. package/dist/components/Payroll/Transition/TransitionFlow.js +29 -27
  383. package/dist/components/Payroll/Transition/TransitionFlow.js.map +1 -1
  384. package/dist/components/Payroll/Transition/TransitionFlowComponents.d.ts +1 -0
  385. package/dist/components/Payroll/Transition/TransitionFlowComponents.js.map +1 -1
  386. package/dist/components/Payroll/TransitionPayrollAlert/TransitionPayrollAlertPresentation.js +44 -55
  387. package/dist/components/Payroll/TransitionPayrollAlert/TransitionPayrollAlertPresentation.js.map +1 -1
  388. package/dist/components/Payroll/helpers.d.ts +5 -0
  389. package/dist/components/Payroll/helpers.js +81 -74
  390. package/dist/components/Payroll/helpers.js.map +1 -1
  391. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataContext.d.ts +2 -2
  392. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataContext.js +6 -9
  393. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataContext.js.map +1 -1
  394. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataProvider.d.ts +1 -1
  395. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataProvider.js.map +1 -1
  396. package/dist/components/UNSTABLE_Hooks/form/SDKFormProvider.d.ts +1 -2
  397. package/dist/components/UNSTABLE_Hooks/form/SDKFormProvider.js.map +1 -1
  398. package/dist/components/UNSTABLE_Hooks/form/deriveFieldsMetadata.d.ts +2 -2
  399. package/dist/components/UNSTABLE_Hooks/form/deriveFieldsMetadata.js.map +1 -1
  400. package/dist/components/UNSTABLE_Hooks/form/fields/CheckboxHookField.d.ts +3 -2
  401. package/dist/components/UNSTABLE_Hooks/form/fields/CheckboxHookField.js +24 -22
  402. package/dist/components/UNSTABLE_Hooks/form/fields/CheckboxHookField.js.map +1 -1
  403. package/dist/components/UNSTABLE_Hooks/form/fields/DatePickerHookField.d.ts +3 -2
  404. package/dist/components/UNSTABLE_Hooks/form/fields/DatePickerHookField.js +22 -17
  405. package/dist/components/UNSTABLE_Hooks/form/fields/DatePickerHookField.js.map +1 -1
  406. package/dist/components/UNSTABLE_Hooks/form/fields/NumberInputHookField.d.ts +3 -2
  407. package/dist/components/UNSTABLE_Hooks/form/fields/NumberInputHookField.js +32 -30
  408. package/dist/components/UNSTABLE_Hooks/form/fields/NumberInputHookField.js.map +1 -1
  409. package/dist/components/UNSTABLE_Hooks/form/fields/RadioGroupHookField.d.ts +3 -2
  410. package/dist/components/UNSTABLE_Hooks/form/fields/RadioGroupHookField.js +26 -24
  411. package/dist/components/UNSTABLE_Hooks/form/fields/RadioGroupHookField.js.map +1 -1
  412. package/dist/components/UNSTABLE_Hooks/form/fields/SelectHookField.d.ts +3 -2
  413. package/dist/components/UNSTABLE_Hooks/form/fields/SelectHookField.js +32 -30
  414. package/dist/components/UNSTABLE_Hooks/form/fields/SelectHookField.js.map +1 -1
  415. package/dist/components/UNSTABLE_Hooks/form/fields/SwitchHookField.d.ts +3 -2
  416. package/dist/components/UNSTABLE_Hooks/form/fields/SwitchHookField.js +24 -22
  417. package/dist/components/UNSTABLE_Hooks/form/fields/SwitchHookField.js.map +1 -1
  418. package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.d.ts +3 -2
  419. package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.js +29 -27
  420. package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.js.map +1 -1
  421. package/dist/components/UNSTABLE_Hooks/form/getFieldWithOptions.d.ts +1 -1
  422. package/dist/components/UNSTABLE_Hooks/form/getFieldWithOptions.js.map +1 -1
  423. package/dist/components/UNSTABLE_Hooks/form/index.d.ts +3 -1
  424. package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.d.ts +4 -0
  425. package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.js +13 -0
  426. package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.js.map +1 -0
  427. package/dist/components/UNSTABLE_Hooks/form/useFieldErrorMessage.d.ts +1 -1
  428. package/dist/components/UNSTABLE_Hooks/form/useFieldErrorMessage.js +6 -6
  429. package/dist/components/UNSTABLE_Hooks/form/useFieldErrorMessage.js.map +1 -1
  430. package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.d.ts +1 -1
  431. package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.js +2 -3
  432. package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.js.map +1 -1
  433. package/dist/components/UNSTABLE_Hooks/form/useHookFieldResolution.d.ts +22 -0
  434. package/dist/components/UNSTABLE_Hooks/form/useHookFieldResolution.js +11 -0
  435. package/dist/components/UNSTABLE_Hooks/form/useHookFieldResolution.js.map +1 -0
  436. package/dist/components/UNSTABLE_Hooks/form/withOptions.d.ts +1 -1
  437. package/dist/components/UNSTABLE_Hooks/form/withOptions.js.map +1 -1
  438. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/CompensationForm.js +2 -3
  439. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/CompensationForm.js.map +1 -1
  440. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.d.ts +4 -4
  441. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.js +86 -89
  442. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.js.map +1 -1
  443. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/fields.d.ts +1 -1
  444. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/fields.js.map +1 -1
  445. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.d.ts +10 -10
  446. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.js +19 -19
  447. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.js.map +1 -1
  448. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/EmployeeDetailsForm.js +15 -16
  449. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/EmployeeDetailsForm.js.map +1 -1
  450. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/fields.d.ts +1 -1
  451. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/fields.js +27 -27
  452. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/fields.js.map +1 -1
  453. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.d.ts +9 -9
  454. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.js +15 -15
  455. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.js.map +1 -1
  456. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/WorkAddressForm.js +14 -15
  457. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/WorkAddressForm.js.map +1 -1
  458. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/fields.d.ts +1 -1
  459. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/fields.js.map +1 -1
  460. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.d.ts +5 -5
  461. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.js +13 -13
  462. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.js.map +1 -1
  463. package/dist/components/UNSTABLE_Hooks/index.d.ts +3 -3
  464. package/dist/components/UNSTABLE_TimeOff/AddEmployeesHoliday/AddEmployeesHoliday.d.ts +5 -0
  465. package/dist/components/UNSTABLE_TimeOff/AddEmployeesHoliday/AddEmployeesHoliday.js +46 -0
  466. package/dist/components/UNSTABLE_TimeOff/AddEmployeesHoliday/AddEmployeesHoliday.js.map +1 -0
  467. package/dist/components/UNSTABLE_TimeOff/AddEmployeesToPolicy/AddEmployeesToPolicy.d.ts +5 -0
  468. package/dist/components/UNSTABLE_TimeOff/AddEmployeesToPolicy/AddEmployeesToPolicy.js +46 -0
  469. package/dist/components/UNSTABLE_TimeOff/AddEmployeesToPolicy/AddEmployeesToPolicy.js.map +1 -0
  470. package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionForm.d.ts +5 -0
  471. package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionForm.js +46 -0
  472. package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionForm.js.map +1 -0
  473. package/dist/components/UNSTABLE_TimeOff/PolicyDetailsForm/PolicyDetailsForm.d.ts +6 -0
  474. package/dist/components/UNSTABLE_TimeOff/PolicyDetailsForm/PolicyDetailsForm.js +50 -0
  475. package/dist/components/UNSTABLE_TimeOff/PolicyDetailsForm/PolicyDetailsForm.js.map +1 -0
  476. package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyList.d.ts +5 -0
  477. package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyList.js +50 -0
  478. package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyList.js.map +1 -0
  479. package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettings.d.ts +5 -0
  480. package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettings.js +46 -0
  481. package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettings.js.map +1 -0
  482. package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelector.d.ts +5 -0
  483. package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelector.js +59 -0
  484. package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelector.js.map +1 -0
  485. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlow.d.ts +2 -0
  486. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlow.js +25 -0
  487. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlow.js.map +1 -0
  488. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlowComponents.d.ts +29 -0
  489. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlowComponents.js +98 -0
  490. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlowComponents.js.map +1 -0
  491. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/index.d.ts +3 -0
  492. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/timeOffStateMachine.d.ts +14 -0
  493. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/timeOffStateMachine.js +290 -0
  494. package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/timeOffStateMachine.js.map +1 -0
  495. package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/shared/EmployeeTable/EmployeeTable.d.ts +2 -0
  496. package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/shared/EmployeeTable/EmployeeTableTypes.d.ts +26 -0
  497. package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/shared/EmployeeTable/index.d.ts +4 -0
  498. package/dist/components/UNSTABLE_TimeOff/ViewHolidayEmployees/ViewHolidayEmployees.d.ts +5 -0
  499. package/dist/components/UNSTABLE_TimeOff/ViewHolidayEmployees/ViewHolidayEmployees.js +35 -0
  500. package/dist/components/UNSTABLE_TimeOff/ViewHolidayEmployees/ViewHolidayEmployees.js.map +1 -0
  501. package/dist/components/UNSTABLE_TimeOff/ViewHolidaySchedule/ViewHolidaySchedule.d.ts +5 -0
  502. package/dist/components/UNSTABLE_TimeOff/ViewHolidaySchedule/ViewHolidaySchedule.js +35 -0
  503. package/dist/components/UNSTABLE_TimeOff/ViewHolidaySchedule/ViewHolidaySchedule.js.map +1 -0
  504. package/dist/components/UNSTABLE_TimeOff/ViewPolicyDetails/ViewPolicyDetails.d.ts +5 -0
  505. package/dist/components/UNSTABLE_TimeOff/ViewPolicyDetails/ViewPolicyDetails.js +35 -0
  506. package/dist/components/UNSTABLE_TimeOff/ViewPolicyDetails/ViewPolicyDetails.js.map +1 -0
  507. package/dist/components/UNSTABLE_TimeOff/ViewPolicyEmployees/ViewPolicyEmployees.d.ts +5 -0
  508. package/dist/components/UNSTABLE_TimeOff/ViewPolicyEmployees/ViewPolicyEmployees.js +35 -0
  509. package/dist/components/UNSTABLE_TimeOff/ViewPolicyEmployees/ViewPolicyEmployees.js.map +1 -0
  510. package/dist/components/UNSTABLE_TimeOff/index.d.ts +25 -0
  511. package/dist/components/UNSTABLE_TimeOff/index.js +27 -0
  512. package/dist/components/UNSTABLE_TimeOff/index.js.map +1 -0
  513. package/dist/components/index.d.ts +1 -0
  514. package/dist/contexts/ComponentAdapter/adapters/defaultComponentAdapter.js +48 -46
  515. package/dist/contexts/ComponentAdapter/adapters/defaultComponentAdapter.js.map +1 -1
  516. package/dist/contexts/ComponentAdapter/useComponentContext.d.ts +2 -0
  517. package/dist/contexts/ComponentAdapter/useComponentContext.js.map +1 -1
  518. package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js +2 -3
  519. package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js.map +1 -1
  520. package/dist/contexts/LoadingIndicatorProvider/useLoadingIndicator.d.ts +10 -2
  521. package/dist/contexts/LoadingIndicatorProvider/useLoadingIndicator.js.map +1 -1
  522. package/dist/contexts/ThemeProvider/useTheme.js.map +1 -1
  523. package/dist/helpers/breadcrumbHelpers.d.ts +14 -0
  524. package/dist/helpers/breadcrumbHelpers.js +35 -26
  525. package/dist/helpers/breadcrumbHelpers.js.map +1 -1
  526. package/dist/{components/UNSTABLE_Hooks → helpers}/collectErrors.d.ts +1 -1
  527. package/dist/{components/UNSTABLE_Hooks → helpers}/collectErrors.js +1 -1
  528. package/dist/helpers/collectErrors.js.map +1 -0
  529. package/dist/hooks/useDateRangeFilter/useDateRangeFilter.d.ts +20 -0
  530. package/dist/hooks/useDateRangeFilter/useDateRangeFilter.js +38 -0
  531. package/dist/hooks/useDateRangeFilter/useDateRangeFilter.js.map +1 -0
  532. package/dist/hooks/useDateRangeFilter/useDateRangeFilter.test.d.ts +1 -0
  533. package/dist/{components/UNSTABLE_Hooks → hooks}/useErrorHandling.d.ts +2 -2
  534. package/dist/{components/UNSTABLE_Hooks → hooks}/useErrorHandling.js +1 -1
  535. package/dist/hooks/useErrorHandling.js.map +1 -0
  536. package/dist/hooks/useErrorHandling.test.d.ts +1 -0
  537. package/dist/hooks/usePagination/usePagination.d.ts +2 -0
  538. package/dist/hooks/usePagination/usePagination.js +32 -29
  539. package/dist/hooks/usePagination/usePagination.js.map +1 -1
  540. package/dist/i18n/I18n.js +24 -24
  541. package/dist/i18n/I18n.js.map +1 -1
  542. package/dist/i18n/en/Company.PaySchedule.json.js +6 -6
  543. package/dist/i18n/en/Company.TimeOff.CreateTimeOffPolicy.json.js +24 -0
  544. package/dist/i18n/en/Company.TimeOff.CreateTimeOffPolicy.json.js.map +1 -0
  545. package/dist/i18n/en/Company.TimeOff.EmployeeTable.json.js +32 -0
  546. package/dist/i18n/en/Company.TimeOff.EmployeeTable.json.js.map +1 -0
  547. package/dist/i18n/en/Company.TimeOff.HolidayPolicy.json.js +22 -0
  548. package/dist/i18n/en/Company.TimeOff.HolidayPolicy.json.js.map +1 -0
  549. package/dist/i18n/en/Company.TimeOff.TimeOffPolicies.json.js +32 -0
  550. package/dist/i18n/en/Company.TimeOff.TimeOffPolicies.json.js.map +1 -0
  551. package/dist/i18n/en/Company.TimeOff.TimeOffPolicyDetails.json.js +52 -0
  552. package/dist/i18n/en/Company.TimeOff.TimeOffPolicyDetails.json.js.map +1 -0
  553. package/dist/i18n/en/Company.TimeOff.TimeOffRequests.json.js +21 -0
  554. package/dist/i18n/en/Company.TimeOff.TimeOffRequests.json.js.map +1 -0
  555. package/dist/i18n/en/Employee.EmployeeList.json.js +22 -20
  556. package/dist/i18n/en/Employee.EmployeeList.json.js.map +1 -1
  557. package/dist/i18n/en/Employee.ManagementEmployeeList.json.js +40 -0
  558. package/dist/i18n/en/Employee.ManagementEmployeeList.json.js.map +1 -0
  559. package/dist/i18n/en/Payroll.GrossUpModal.json.js +16 -14
  560. package/dist/i18n/en/Payroll.GrossUpModal.json.js.map +1 -1
  561. package/dist/i18n/en/Payroll.OffCycle.json.js +1 -1
  562. package/dist/i18n/en/Payroll.OffCycleTaxWithholding.json.js +5 -5
  563. package/dist/i18n/en/Payroll.PayrollConfiguration.json.js +38 -34
  564. package/dist/i18n/en/Payroll.PayrollConfiguration.json.js.map +1 -1
  565. package/dist/i18n/en/Payroll.PayrollEditEmployee.json.js +29 -25
  566. package/dist/i18n/en/Payroll.PayrollEditEmployee.json.js.map +1 -1
  567. package/dist/i18n/en/Payroll.PayrollHistory.json.js +12 -12
  568. package/dist/i18n/en/Payroll.PayrollList.json.js +28 -20
  569. package/dist/i18n/en/Payroll.PayrollList.json.js.map +1 -1
  570. package/dist/i18n/en/Payroll.PayrollOverview.json.js +64 -58
  571. package/dist/i18n/en/Payroll.PayrollOverview.json.js.map +1 -1
  572. package/dist/i18n/en/Payroll.TransitionPayrollAlert.json.js +8 -8
  573. package/dist/index.js +18 -16
  574. package/dist/index.js.map +1 -1
  575. package/dist/shared/constants.d.ts +46 -0
  576. package/dist/shared/constants.js +99 -74
  577. package/dist/shared/constants.js.map +1 -1
  578. package/dist/style.css +1 -1
  579. package/dist/types/i18next.d.ts +495 -9
  580. package/dist/{components/UNSTABLE_Hooks/types.d.ts → types/sdkHooks.d.ts} +28 -2
  581. package/docs/reference/endpoint-inventory.json +563 -385
  582. package/package.json +27 -18
  583. package/dist/components/Employee/EmployeeList/Actions.d.ts +0 -1
  584. package/dist/components/Employee/EmployeeList/Actions.js +0 -16
  585. package/dist/components/Employee/EmployeeList/Actions.js.map +0 -1
  586. package/dist/components/Employee/EmployeeList/Head.d.ts +0 -1
  587. package/dist/components/Employee/EmployeeList/Head.js +0 -15
  588. package/dist/components/Employee/EmployeeList/Head.js.map +0 -1
  589. package/dist/components/Employee/EmployeeList/List.d.ts +0 -2
  590. package/dist/components/Employee/EmployeeList/List.js +0 -125
  591. package/dist/components/Employee/EmployeeList/List.js.map +0 -1
  592. package/dist/components/Employee/EmployeeList/List.module.scss.js +0 -8
  593. package/dist/components/Employee/EmployeeList/List.module.scss.js.map +0 -1
  594. package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.module.scss.js +0 -8
  595. package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.module.scss.js.map +0 -1
  596. package/dist/components/UNSTABLE_Hooks/collectErrors.js.map +0 -1
  597. package/dist/components/UNSTABLE_Hooks/form/types.d.ts +0 -27
  598. package/dist/components/UNSTABLE_Hooks/useErrorHandling.js.map +0 -1
  599. /package/dist/components/{UNSTABLE_Hooks/useErrorHandling.test.d.ts → UNSTABLE_TimeOff/TimeOffFlow/timeOffStateMachine.test.d.ts} +0 -0
@@ -1,4 +1,4 @@
1
- const e = `Pick what frequency you'd like to run payroll. If you need help, you can read more about <ScheduleLink href="https://gusto.com/resources/articles/payroll/best-payroll-schedule-small-business" target="_blank">how to choose a pay schedule.</ScheduleLink>`, t = 'Why do we need to ask for this? We need to know when to pay your employees. Some states have <PaymentLawLink href="https://www.dol.gov/agencies/whd/state/payday" target="_blank">laws around when you must pay your employees.</PaymentLawLink> Please choose pay schedules that are legal for your employees.', a = "+ Add another pay schedule", o = "Save & continue", n = "Continue", s = "Please make sure to verify this information is accurate. If this information isn't correct, it can delay when your team will be paid.", i = { name: "Name", actions: "Actions", active: "Active", inactive: "Inactive", edit: "Edit" }, r = { addPaySchedule: "Add pay schedule", editPaySchedule: "Edit pay schedule", pageTitle: "Set up pay schedule" }, y = { name: "Name", payfrequency: "Pay frequency", frequency: "Frequency", deadline: "Deadline to run payroll", frequencyOptions: "Frequency Options", firstPayDate: "First pay date", firstPayPeriodEndDate: "First pay period end date", firstPayDayOfTheMonth: "First pay day of the month", lastPayDayOfTheMonth: "Last pay day of the month", preview: "Preview", legend: "Legend" }, c = "Loading...", l = { frequencyOptionsDescription: "Select the pay days for the month.", anchorPayDateDescription: "Please account for the 2 days it will take to process payroll.", anchorEndOfPayPeriodDescription: "The last date of the first pay period to help calculate future pay periods. This can be the same date as the first pay date." }, d = { payPeriod: "Pay period", payday: "Payday", payrollDeadline: "Run payroll by 4:00PM (PDT) on " }, h = { cancel: "Cancel", save: "Save" }, p = { everyWeek: "Every week", everyOtherWeek: "Every other week", twicePerMonth: "Twice per month", monthly: "Monthly" }, u = { "15thAndLast": "15th and Last day of the month", custom: "Custom" }, f = { title: "Pay Schedule Preview", description: "Complete all the required fields to see a preview of your pay schedule." }, m = {
1
+ const e = `Pick what frequency you'd like to run payroll. If you need help, you can read more about <ScheduleLink href="https://gusto.com/resources/articles/payroll/best-payroll-schedule-small-business" target="_blank">how to choose a pay schedule.</ScheduleLink>`, t = 'Why do we need to ask for this? We need to know when to pay your employees. Some states have <PaymentLawLink href="https://www.dol.gov/agencies/whd/state/payday" target="_blank">laws around when you must pay your employees.</PaymentLawLink> Please choose pay schedules that are legal for your employees.', a = "+ Add another pay schedule", o = "Save & continue", n = "Continue", s = "Please make sure to verify this information is accurate. If this information isn't correct, it can delay when your team will be paid.", i = { name: "Name", actions: "Actions", active: "Active", inactive: "Inactive", edit: "Edit" }, r = { addPaySchedule: "Add pay schedule", editPaySchedule: "Edit pay schedule", pageTitle: "Set up pay schedule" }, c = { name: "Name", payfrequency: "Pay frequency", frequency: "Frequency", deadline: "Deadline to run payroll", frequencyOptions: "Frequency Options", firstPayDate: "First pay date", firstPayPeriodEndDate: "First pay period end date", firstPayDayOfTheMonth: "First pay day of the month", lastPayDayOfTheMonth: "Last pay day of the month", preview: "Preview", legend: "Legend" }, y = "Loading...", l = { frequencyOptionsDescription: "Select the pay days for the month.", anchorPayDateDescription_one: "Please account for the {{count}} day it will take to process payroll.", anchorPayDateDescription_other: "Please account for the {{count}} days it will take to process payroll.", anchorEndOfPayPeriodDescription: "The last date of the first pay period to help calculate future pay periods. This can be the same date as the first pay date." }, d = { payPeriod: "Pay period", payday: "Payday", payrollDeadline: "Run payroll by 4:00PM (PDT) on " }, h = { cancel: "Cancel", save: "Save" }, p = { everyWeek: "Every week", everyOtherWeek: "Every other week", twicePerMonth: "Twice per month", monthly: "Monthly" }, u = { "15thAndLast": "15th and Last day of the month", custom: "Custom" }, f = { title: "Pay Schedule Preview", description: "Complete all the required fields to see a preview of your pay schedule." }, P = {
2
2
  listDescription: e,
3
3
  listDescription2: t,
4
4
  addAnotherPayScheduleCta: a,
@@ -7,8 +7,8 @@ const e = `Pick what frequency you'd like to run payroll. If you need help, you
7
7
  pleaseVerify: s,
8
8
  payScheduleList: i,
9
9
  headings: r,
10
- labels: y,
11
- loading: c,
10
+ labels: c,
11
+ loading: y,
12
12
  descriptions: l,
13
13
  payPreview: d,
14
14
  actions: h,
@@ -20,15 +20,15 @@ export {
20
20
  h as actions,
21
21
  a as addAnotherPayScheduleCta,
22
22
  n as continueCta,
23
- m as default,
23
+ P as default,
24
24
  l as descriptions,
25
25
  p as frequencies,
26
26
  u as frequencyOptions,
27
27
  r as headings,
28
- y as labels,
28
+ c as labels,
29
29
  e as listDescription,
30
30
  t as listDescription2,
31
- c as loading,
31
+ y as loading,
32
32
  d as payPreview,
33
33
  i as payScheduleList,
34
34
  s as pleaseVerify,
@@ -0,0 +1,24 @@
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" }, i = { balance: "Balance (hrs)", employeeCount_one: "{{count}} employee", employeeCount_other: "{{count}} employees" }, l = "Save & continue", r = "Back", c = "Cancel", n = { 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." }, s = {
2
+ policyDetails: e,
3
+ policySettings: a,
4
+ addEmployees: t,
5
+ startingBalances: o,
6
+ balanceTable: i,
7
+ continueCta: l,
8
+ backCta: r,
9
+ cancelCta: c,
10
+ flash: n
11
+ };
12
+ export {
13
+ t as addEmployees,
14
+ r as backCta,
15
+ i as balanceTable,
16
+ c as cancelCta,
17
+ l as continueCta,
18
+ s as default,
19
+ n as flash,
20
+ e as policyDetails,
21
+ a as policySettings,
22
+ o as startingBalances
23
+ };
24
+ //# 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,32 @@
1
+ const e = "Name", l = "Job title", s = "Department", c = "of {{numAll}} employees selected", o = "Select all employees", t = "Select all", a = "Clear selected employees", n = "Clear", r = "Search employees", m = "Search employees", p = "Employees", y = "No employees found", h = "Clear search", b = {
2
+ name: e,
3
+ jobTitle: l,
4
+ department: s,
5
+ selected: c,
6
+ selectAllEmployees: o,
7
+ selectAll: t,
8
+ clearAriaLabel: a,
9
+ clear: n,
10
+ searchPlaceholder: r,
11
+ searchLabel: m,
12
+ tableLabel: p,
13
+ noSearchResults: y,
14
+ clearSearch: h
15
+ };
16
+ export {
17
+ n as clear,
18
+ a as clearAriaLabel,
19
+ h as clearSearch,
20
+ b as default,
21
+ s as department,
22
+ l as jobTitle,
23
+ e as name,
24
+ y as noSearchResults,
25
+ m as searchLabel,
26
+ r as searchPlaceholder,
27
+ t as selectAll,
28
+ o as selectAllEmployees,
29
+ c as selected,
30
+ p as tableLabel
31
+ };
32
+ //# sourceMappingURL=Company.TimeOff.EmployeeTable.json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Company.TimeOff.EmployeeTable.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
@@ -0,0 +1,22 @@
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", d = { holidayName: "Holiday name", observedDate: "Observed date" }, t = { title: "Add employees to your policy" }, y = { title: "Holiday pay policy", holidaySchedule: "Holiday schedule" }, a = { title: "Holiday schedule", editCta: "Edit" }, s = { 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: d,
6
+ editEmployees: t,
7
+ show: y,
8
+ holidayScheduleTable: a,
9
+ flash: s
10
+ };
11
+ export {
12
+ l as continueCta,
13
+ i as default,
14
+ o as description,
15
+ t as editEmployees,
16
+ s as flash,
17
+ a as holidayScheduleTable,
18
+ y as show,
19
+ d as tableHeaders,
20
+ e as title
21
+ };
22
+ //# 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", i = "Edit policy", t = { label: "Policy type", vacation: "Paid time off", sick: "Sick leave", custom: "Custom policy", parentalLeave: "Parental leave", weather: "Weather policy", volunteer: "Volunteer policy", personalDay: "Personal day", learningAndDevelopment: "Learning and development", juryDuty: "Jury duty", floatingHoliday: "Floating holiday", bereavement: "Bereavement" }, l = "Policy name", n = "Accrual rate", c = { label: "Accrual type", unlimited: "Unlimited", perPayPeriod: "Fixed", perCalendarYear: "Fixed", perAnniversaryYear: "Fixed", perHourWorked: "Based on hours worked", perHourWorkedNoOvertime: "Based on hours worked", perHourPaid: "Based on hours worked", perHourPaidNoOvertime: "Based on hours worked" }, m = { label: "Accrual rate", unlimited: "-", perPayPeriod: "{{accrualRate}} hour(s) per pay period", perCalendarYear: "{{accrualRate}} hour(s) per calendar year", perAnniversaryYear: "{{accrualRate}} hour(s) per anniversary year", perHourWorked: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) worked, including overtime", perHourWorkedNoOvertime: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) worked, excluding overtime", perHourPaid: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) including overtime and all paid hours", perHourPaidNoOvertime: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) worked and all paid hours, excluding overtime" }, s = "Reset date", d = "Policy settings", u = { label: "Accrual maximum", noMaximum: "No maximum", withMaximum: "{{count}} hour(s) per year" }, y = { label: "Balance maximum", noMaximum: "No maximum", withMaximum: "{{count}} hour(s)" }, p = { label: "Carry over limit", noLimit: "No carry over limit", withLimit: "{{count}} hour(s)" }, h = { label: "Waiting period", noPeriod: "No waiting period", withPeriod: "{{count}} day(s)" }, v = { label: "Paid out on termination", yes: "Yes, remaining time off balances for this policy are paid out when an employee is dismissed.", no: "No, remaining time off balances for this policy are not paid out when an employee is dismissed." }, f = { balance: "Balance (hrs)", actions: "Actions", editBalance: "Edit balance", removeEmployee: "Remove employee", removeEmployees: "Remove employees" }, b = { title: "Add employee to this policy", description: "Select the employees to add to this policy. Employees not shown are either already included or not eligible." }, R = { title: "Edit {{name}} time off balance", currentBalance: "Current balance", hoursUnit: "hours" }, P = { title: "Remove {{name}} from policy?", alert: "When you remove an employee from a policy, any existing balance is removed.", removeCta: "Remove employee" }, g = { title: "Remove {{count}} employee(s) from policy?", alert: "When you remove an employee from a policy, any existing balance is removed.", removeCta: "Remove employees" }, x = { employeeRemoved: "{{name}} has been removed from the policy.", employeesRemoved_one: "{{count}} employee has been removed from the policy.", employeesRemoved_other: "{{count}} employees have been removed from the policy.", employeesAdded_one: "{{count}} employee has been added to this policy.", employeesAdded_other: "{{count}} employees have been added to this policy.", balanceUpdated: "{{name}}'s time off balance has been updated." }, w = {
2
+ breadcrumb: e,
3
+ addEmployeeCta: o,
4
+ tabs: a,
5
+ details: r,
6
+ editPolicyCta: i,
7
+ policyType: t,
8
+ policyName: l,
9
+ accrualRateTitle: n,
10
+ accrualMethod: c,
11
+ accrualRate: m,
12
+ resetDate: s,
13
+ policySettingsTitle: d,
14
+ maxAccrualHoursPerYear: u,
15
+ maxHours: y,
16
+ carryoverLimitHours: p,
17
+ accrualWaitingPeriodDays: h,
18
+ paidOutOnTermination: v,
19
+ employeeTable: f,
20
+ addEmployeeModal: b,
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
+ w as default,
36
+ r as details,
37
+ R as editBalanceModal,
38
+ i as editPolicyCta,
39
+ f as employeeTable,
40
+ x as flash,
41
+ u as maxAccrualHoursPerYear,
42
+ y as maxHours,
43
+ v as paidOutOnTermination,
44
+ l as policyName,
45
+ d as policySettingsTitle,
46
+ t as policyType,
47
+ P as removeEmployeeModal,
48
+ g as removeEmployeesModal,
49
+ s as resetDate,
50
+ a as tabs
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,44 +1,46 @@
1
- const e = "Actions", t = "Add an employee", o = "I'll do this later", s = "+ Add another employee", n = "Continue", a = "Addresses", l = "Deductions", c = "Delete employee", d = "Edit employee", i = "Cancel self-onboarding", p = "Review", m = "List of current employees", r = "Once you’ve added employees they will appear here", y = "No employees", C = "Federal Taxes", u = "Employee actions menu", b = "Employee name", L = "Status", h = "Your employees", E = {
1
+ const e = "Actions", t = "Add an employee", o = "I'll do this later", n = "Add another employee", a = "Continue", s = "Addresses", l = "Deductions", c = "Delete employee", i = "Edit employee", d = "Cancel self-onboarding", m = "Review", p = "List of current employees", r = "Once you’ve added employees they will appear here", y = "No employees", C = "Federal Taxes", u = "Employee actions menu", b = "Employee name", h = "Status", T = "Your employees", f = { title: "Delete employee?", description: "This will permanently delete this employee from your account. This action cannot be undone.", confirmCta: "Delete employee", cancelCta: "Cancel" }, L = {
2
2
  actionLabel: e,
3
3
  addEmployeeCta: t,
4
4
  skipCta: o,
5
- addAnotherCta: s,
6
- continueCta: n,
7
- addressesCta: a,
5
+ addAnotherCta: n,
6
+ continueCta: a,
7
+ addressesCta: s,
8
8
  deductionsCta: l,
9
9
  deleteCta: c,
10
- editCta: d,
11
- cancelSelfOnboardingCta: i,
12
- reviewCta: p,
13
- employeeListLabel: m,
10
+ editCta: i,
11
+ cancelSelfOnboardingCta: d,
12
+ reviewCta: m,
13
+ employeeListLabel: p,
14
14
  emptyTableDescription: r,
15
15
  emptyTableTitle: y,
16
16
  federalTaxesCta: C,
17
17
  hamburgerTitle: u,
18
18
  nameLabel: b,
19
- statusLabel: L,
20
- title: h
19
+ statusLabel: h,
20
+ title: T,
21
+ deleteDialog: f
21
22
  };
22
23
  export {
23
24
  e as actionLabel,
24
- s as addAnotherCta,
25
+ n as addAnotherCta,
25
26
  t as addEmployeeCta,
26
- a as addressesCta,
27
- i as cancelSelfOnboardingCta,
28
- n as continueCta,
27
+ s as addressesCta,
28
+ d as cancelSelfOnboardingCta,
29
+ a as continueCta,
29
30
  l as deductionsCta,
30
- E as default,
31
+ L as default,
31
32
  c as deleteCta,
32
- d as editCta,
33
- m as employeeListLabel,
33
+ f as deleteDialog,
34
+ i as editCta,
35
+ p as employeeListLabel,
34
36
  r as emptyTableDescription,
35
37
  y as emptyTableTitle,
36
38
  C as federalTaxesCta,
37
39
  u as hamburgerTitle,
38
40
  b as nameLabel,
39
- p as reviewCta,
41
+ m as reviewCta,
40
42
  o as skipCta,
41
- L as statusLabel,
42
- h as title
43
+ h as statusLabel,
44
+ T as title
43
45
  };
44
46
  //# sourceMappingURL=Employee.EmployeeList.json.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Employee.EmployeeList.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"Employee.EmployeeList.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,40 @@
1
+ const e = "Employees", t = "Add employee", o = "Employee status tabs", a = { active: "Active", onboarding: "Onboarding", dismissed: "Dismissed" }, s = "Employee name", n = "Job title", i = "Start date", l = "Status", c = "Last day", m = "Edit employee", r = "Dismiss employee", p = "Cancel onboarding", d = "Rehire employee", y = "Employee actions menu", b = "List of employees", h = { active: { title: "There are no active employees", description: "Employees who have completed onboarding will appear here" }, onboarding: { title: "There are no employees onboarding", description: "Employees currently being onboarded will appear here" }, dismissed: { title: "There are no dismissed employees", description: "Terminated employees will appear here" } }, g = { title: "Cancel employee onboarding?", description: "This will permanently delete this employee from your account. This action cannot be undone.", confirmCta: "Delete employee", cancelCta: "Cancel" }, L = {
2
+ title: e,
3
+ addEmployeeCta: t,
4
+ tabsLabel: o,
5
+ tabs: a,
6
+ nameLabel: s,
7
+ jobTitleLabel: n,
8
+ startDateLabel: i,
9
+ statusLabel: l,
10
+ lastDayLabel: c,
11
+ editCta: m,
12
+ dismissCta: r,
13
+ cancelCta: p,
14
+ rehireCta: d,
15
+ hamburgerTitle: y,
16
+ employeeListLabel: b,
17
+ emptyState: h,
18
+ deleteDialog: g
19
+ };
20
+ export {
21
+ t as addEmployeeCta,
22
+ p as cancelCta,
23
+ L as default,
24
+ g as deleteDialog,
25
+ r as dismissCta,
26
+ m as editCta,
27
+ b as employeeListLabel,
28
+ h as emptyState,
29
+ y as hamburgerTitle,
30
+ n as jobTitleLabel,
31
+ c as lastDayLabel,
32
+ s as nameLabel,
33
+ d as rehireCta,
34
+ i as startDateLabel,
35
+ l as statusLabel,
36
+ a as tabs,
37
+ o as tabsLabel,
38
+ e as title
39
+ };
40
+ //# sourceMappingURL=Employee.ManagementEmployeeList.json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Employee.ManagementEmployeeList.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,4 +1,4 @@
1
- const l = { breadcrumbLabel: "New Off-Cycle Payroll" }, e = {
1
+ const l = { breadcrumbLabel: "Run Off-Cycle Payroll" }, e = {
2
2
  createOffCyclePayroll: l
3
3
  };
4
4
  export {
@@ -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", l = "Edit Payroll for {{startDate}} - {{endDate}}", o = "Edit Dismissal Payroll", i = "Save and exit", s = "Calculate and review", n = "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: l,
6
+ breadcrumbLabelDismissal: o,
7
+ exitFlowCta: i,
8
+ calculatePayroll: s,
9
+ calculatePayrollTitle: n,
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
+ l as breadcrumbLabel,
26
+ o as breadcrumbLabelDismissal,
27
+ s as calculatePayroll,
28
+ n 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":";;;;;;;;;;;;;;;;;;;;;;"}