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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (550) hide show
  1. package/CHANGELOG.md +44 -8
  2. package/README.md +6 -0
  3. package/dist/UNSTABLE_Hooks.d.ts +1 -1
  4. package/dist/UNSTABLE_Hooks.js +50 -6
  5. package/dist/UNSTABLE_Hooks.js.map +1 -1
  6. package/dist/components/Base/Base.d.ts +2 -1
  7. package/dist/components/Base/Base.js +76 -76
  8. package/dist/components/Base/Base.js.map +1 -1
  9. package/dist/components/Base/createCompoundContext.js.map +1 -1
  10. package/dist/components/Common/DataView/DataCards/DataCards.js +42 -36
  11. package/dist/components/Common/DataView/DataCards/DataCards.js.map +1 -1
  12. package/dist/components/Common/Fields/CheckboxField/CheckboxField.d.ts +2 -0
  13. package/dist/components/Common/Fields/CheckboxField/CheckboxField.js +22 -19
  14. package/dist/components/Common/Fields/CheckboxField/CheckboxField.js.map +1 -1
  15. package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.d.ts +1 -1
  16. package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.js +32 -30
  17. package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.js.map +1 -1
  18. package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.d.ts +1 -1
  19. package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.js +36 -34
  20. package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.js.map +1 -1
  21. package/dist/components/Common/Fields/DatePickerField/DatePickerField.d.ts +5 -3
  22. package/dist/components/Common/Fields/DatePickerField/DatePickerField.js +52 -40
  23. package/dist/components/Common/Fields/DatePickerField/DatePickerField.js.map +1 -1
  24. package/dist/components/Common/Fields/FileInputField/FileInputField.js +24 -22
  25. package/dist/components/Common/Fields/FileInputField/FileInputField.js.map +1 -1
  26. package/dist/components/Common/Fields/MultiSelectComboBoxField/MultiSelectComboBoxField.js +24 -22
  27. package/dist/components/Common/Fields/MultiSelectComboBoxField/MultiSelectComboBoxField.js.map +1 -1
  28. package/dist/components/Common/Fields/NumberInputField/NumberInputField.d.ts +2 -0
  29. package/dist/components/Common/Fields/NumberInputField/NumberInputField.js +31 -28
  30. package/dist/components/Common/Fields/NumberInputField/NumberInputField.js.map +1 -1
  31. package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.d.ts +3 -1
  32. package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.js +30 -27
  33. package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.js.map +1 -1
  34. package/dist/components/Common/Fields/SelectField/SelectField.d.ts +3 -1
  35. package/dist/components/Common/Fields/SelectField/SelectField.js +31 -28
  36. package/dist/components/Common/Fields/SelectField/SelectField.js.map +1 -1
  37. package/dist/components/Common/Fields/SwitchField/SwitchField.d.ts +2 -0
  38. package/dist/components/Common/Fields/SwitchField/SwitchField.js +24 -21
  39. package/dist/components/Common/Fields/SwitchField/SwitchField.js.map +1 -1
  40. package/dist/components/Common/Fields/TextAreaField/TextAreaField.js +24 -22
  41. package/dist/components/Common/Fields/TextAreaField/TextAreaField.js.map +1 -1
  42. package/dist/components/Common/Fields/TextInputField/TextInputField.d.ts +2 -0
  43. package/dist/components/Common/Fields/TextInputField/TextInputField.js +26 -23
  44. package/dist/components/Common/Fields/TextInputField/TextInputField.js.map +1 -1
  45. package/dist/components/Common/Fields/hooks/useField.d.ts +3 -2
  46. package/dist/components/Common/Fields/hooks/useField.js +37 -33
  47. package/dist/components/Common/Fields/hooks/useField.js.map +1 -1
  48. package/dist/components/Common/ReorderableList/ReorderableList.js.map +1 -1
  49. package/dist/components/Common/SignatureForm/SignatureForm.js +10 -15
  50. package/dist/components/Common/SignatureForm/SignatureForm.js.map +1 -1
  51. package/dist/components/Common/SignatureForm/SignatureFormActions.js +10 -14
  52. package/dist/components/Common/SignatureForm/SignatureFormActions.js.map +1 -1
  53. package/dist/components/Common/SignatureForm/SignatureFormFields.js +14 -19
  54. package/dist/components/Common/SignatureForm/SignatureFormFields.js.map +1 -1
  55. package/dist/components/Common/UI/Breadcrumbs/Breadcrumbs.js +1 -1
  56. package/dist/components/Common/UI/Button/Button.js +33 -29
  57. package/dist/components/Common/UI/Button/Button.js.map +1 -1
  58. package/dist/components/Common/UI/Button/Button.module.scss.js +5 -3
  59. package/dist/components/Common/UI/Button/Button.module.scss.js.map +1 -1
  60. package/dist/components/Common/UI/Button/ButtonTypes.d.ts +4 -0
  61. package/dist/components/Common/UI/Button/ButtonTypes.js.map +1 -1
  62. package/dist/components/Common/UI/DescriptionList/DescriptionList.module.scss.js +2 -2
  63. package/dist/components/Common/UI/FileInput/FileInput.js +1 -1
  64. package/dist/components/Common/UI/MultiSelectComboBox/MultiSelectComboBox.js +94 -80
  65. package/dist/components/Common/UI/MultiSelectComboBox/MultiSelectComboBox.js.map +1 -1
  66. package/dist/components/Common/UI/NumberInput/NumberInput.js +1 -1
  67. package/dist/components/Common/UI/NumberInput/NumberInput.js.map +1 -1
  68. package/dist/components/Common/UI/ProgressBar/ProgressBar.js +4 -4
  69. package/dist/components/Company/AssignSignatory/AssignSignatory.js +7 -11
  70. package/dist/components/Company/AssignSignatory/AssignSignatory.js.map +1 -1
  71. package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js +6 -10
  72. package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js.map +1 -1
  73. package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js +8 -11
  74. package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js.map +1 -1
  75. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.js +6 -9
  76. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.js.map +1 -1
  77. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js +15 -17
  78. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js.map +1 -1
  79. package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.js +8 -7
  80. package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.js.map +1 -1
  81. package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js +6 -9
  82. package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js.map +1 -1
  83. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.js +5 -8
  84. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.js.map +1 -1
  85. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js +13 -15
  86. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js.map +1 -1
  87. package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.js +8 -7
  88. package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.js.map +1 -1
  89. package/dist/components/Company/AssignSignatory/TitleSelect.js +2 -5
  90. package/dist/components/Company/AssignSignatory/TitleSelect.js.map +1 -1
  91. package/dist/components/Company/AssignSignatory/useAssignSignatory.js +10 -9
  92. package/dist/components/Company/AssignSignatory/useAssignSignatory.js.map +1 -1
  93. package/dist/components/Company/BankAccount/BankAccountForm/Actions.js +9 -11
  94. package/dist/components/Company/BankAccount/BankAccountForm/Actions.js.map +1 -1
  95. package/dist/components/Company/BankAccount/BankAccountForm/Form.js +9 -13
  96. package/dist/components/Company/BankAccount/BankAccountForm/Form.js.map +1 -1
  97. package/dist/components/Company/BankAccount/BankAccountForm/context.js +8 -7
  98. package/dist/components/Company/BankAccount/BankAccountForm/context.js.map +1 -1
  99. package/dist/components/Company/BankAccount/BankAccountList/Actions.js +10 -13
  100. package/dist/components/Company/BankAccount/BankAccountList/Actions.js.map +1 -1
  101. package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js +12 -15
  102. package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js.map +1 -1
  103. package/dist/components/Company/BankAccount/BankAccountVerify/Form.js +4 -8
  104. package/dist/components/Company/BankAccount/BankAccountVerify/Form.js.map +1 -1
  105. package/dist/components/Company/DocumentSigner/DocumentList/Actions.js +5 -8
  106. package/dist/components/Company/DocumentSigner/DocumentList/Actions.js.map +1 -1
  107. package/dist/components/Company/DocumentSigner/DocumentList/DocumentList.js +11 -15
  108. package/dist/components/Company/DocumentSigner/DocumentList/DocumentList.js.map +1 -1
  109. package/dist/components/Company/DocumentSigner/DocumentList/useDocumentList.js +8 -7
  110. package/dist/components/Company/DocumentSigner/DocumentList/useDocumentList.js.map +1 -1
  111. package/dist/components/Company/DocumentSigner/SignatureForm/SignatureForm.js +11 -15
  112. package/dist/components/Company/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -1
  113. package/dist/components/Company/DocumentSigner/SignatureForm/useSignatureForm.js +8 -7
  114. package/dist/components/Company/DocumentSigner/SignatureForm/useSignatureForm.js.map +1 -1
  115. package/dist/components/Company/FederalTaxes/Actions.js +8 -11
  116. package/dist/components/Company/FederalTaxes/Actions.js.map +1 -1
  117. package/dist/components/Company/FederalTaxes/FederalTaxes.js +15 -19
  118. package/dist/components/Company/FederalTaxes/FederalTaxes.js.map +1 -1
  119. package/dist/components/Company/FederalTaxes/Form.js +6 -8
  120. package/dist/components/Company/FederalTaxes/Form.js.map +1 -1
  121. package/dist/components/Company/FederalTaxes/useFederalTaxes.js +13 -12
  122. package/dist/components/Company/FederalTaxes/useFederalTaxes.js.map +1 -1
  123. package/dist/components/Company/Industry/Actions.js +8 -11
  124. package/dist/components/Company/Industry/Actions.js.map +1 -1
  125. package/dist/components/Company/Industry/Context.js +11 -10
  126. package/dist/components/Company/Industry/Context.js.map +1 -1
  127. package/dist/components/Company/Industry/Edit.js +10 -14
  128. package/dist/components/Company/Industry/Edit.js.map +1 -1
  129. package/dist/components/Company/Locations/LocationForm/Actions.js +8 -11
  130. package/dist/components/Company/Locations/LocationForm/Actions.js.map +1 -1
  131. package/dist/components/Company/Locations/LocationForm/Form.js +5 -8
  132. package/dist/components/Company/Locations/LocationForm/Form.js.map +1 -1
  133. package/dist/components/Company/Locations/LocationForm/LocationForm.js +15 -19
  134. package/dist/components/Company/Locations/LocationForm/LocationForm.js.map +1 -1
  135. package/dist/components/Company/Locations/LocationForm/useLocationForm.js +8 -7
  136. package/dist/components/Company/Locations/LocationForm/useLocationForm.js.map +1 -1
  137. package/dist/components/Company/Locations/LocationsList/Actions.js +6 -9
  138. package/dist/components/Company/Locations/LocationsList/Actions.js.map +1 -1
  139. package/dist/components/Company/Locations/LocationsList/List.js +17 -19
  140. package/dist/components/Company/Locations/LocationsList/List.js.map +1 -1
  141. package/dist/components/Company/Locations/LocationsList/LocationsList.js +6 -10
  142. package/dist/components/Company/Locations/LocationsList/LocationsList.js.map +1 -1
  143. package/dist/components/Company/Locations/LocationsList/useLocationsList.js +8 -7
  144. package/dist/components/Company/Locations/LocationsList/useLocationsList.js.map +1 -1
  145. package/dist/components/Company/OnboardingOverview/Completed.js +12 -15
  146. package/dist/components/Company/OnboardingOverview/Completed.js.map +1 -1
  147. package/dist/components/Company/OnboardingOverview/MissingRequirements.js +9 -12
  148. package/dist/components/Company/OnboardingOverview/MissingRequirements.js.map +1 -1
  149. package/dist/components/Company/OnboardingOverview/OnboardingOverview.js +6 -10
  150. package/dist/components/Company/OnboardingOverview/OnboardingOverview.js.map +1 -1
  151. package/dist/components/Company/OnboardingOverview/context.js +8 -7
  152. package/dist/components/Company/OnboardingOverview/context.js.map +1 -1
  153. package/dist/components/Company/PaySchedule/PaySchedule.js +3 -6
  154. package/dist/components/Company/PaySchedule/PaySchedule.js.map +1 -1
  155. package/dist/components/Company/PaySchedule/_parts/Actions.js +10 -13
  156. package/dist/components/Company/PaySchedule/_parts/Actions.js.map +1 -1
  157. package/dist/components/Company/PaySchedule/_parts/Edit.js +23 -24
  158. package/dist/components/Company/PaySchedule/_parts/Edit.js.map +1 -1
  159. package/dist/components/Company/PaySchedule/_parts/Head.js +11 -14
  160. package/dist/components/Company/PaySchedule/_parts/Head.js.map +1 -1
  161. package/dist/components/Company/PaySchedule/_parts/List.js +19 -21
  162. package/dist/components/Company/PaySchedule/_parts/List.js.map +1 -1
  163. package/dist/components/Company/PaySchedule/usePaySchedule.js +10 -9
  164. package/dist/components/Company/PaySchedule/usePaySchedule.js.map +1 -1
  165. package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js +5 -8
  166. package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js.map +1 -1
  167. package/dist/components/Company/StateTaxes/StateTaxesForm/StateTaxesForm.js.map +1 -1
  168. package/dist/components/Company/StateTaxes/StateTaxesForm/context.js +8 -7
  169. package/dist/components/Company/StateTaxes/StateTaxesForm/context.js.map +1 -1
  170. package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js +6 -9
  171. package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js.map +1 -1
  172. package/dist/components/Company/StateTaxes/StateTaxesList/List.js +5 -8
  173. package/dist/components/Company/StateTaxes/StateTaxesList/List.js.map +1 -1
  174. package/dist/components/Company/StateTaxes/StateTaxesList/context.js +8 -7
  175. package/dist/components/Company/StateTaxes/StateTaxesList/context.js.map +1 -1
  176. package/dist/components/Contractor/Address/Address.js +3 -7
  177. package/dist/components/Contractor/Address/Address.js.map +1 -1
  178. package/dist/components/Contractor/Address/Form.js +9 -12
  179. package/dist/components/Contractor/Address/Form.js.map +1 -1
  180. package/dist/components/Contractor/Address/useAddress.js +10 -9
  181. package/dist/components/Contractor/Address/useAddress.js.map +1 -1
  182. package/dist/components/Contractor/ContractorList/index.js +29 -30
  183. package/dist/components/Contractor/ContractorList/index.js.map +1 -1
  184. package/dist/components/Contractor/NewHireReport/NewHireReport.js +2 -3
  185. package/dist/components/Contractor/NewHireReport/NewHireReport.js.map +1 -1
  186. package/dist/components/Contractor/PaymentMethod/BankAccountForm.js +10 -14
  187. package/dist/components/Contractor/PaymentMethod/BankAccountForm.js.map +1 -1
  188. package/dist/components/Contractor/PaymentMethod/PaymentMethod.js +2 -3
  189. package/dist/components/Contractor/PaymentMethod/PaymentMethod.js.map +1 -1
  190. package/dist/components/Contractor/PaymentMethod/PaymentTypeForm.js +2 -5
  191. package/dist/components/Contractor/PaymentMethod/PaymentTypeForm.js.map +1 -1
  192. package/dist/components/Contractor/Payments/CreatePayment/CreatePayment.js.map +1 -1
  193. package/dist/components/Contractor/Payments/CreatePayment/CreatePaymentPresentation.js +12 -14
  194. package/dist/components/Contractor/Payments/CreatePayment/CreatePaymentPresentation.js.map +1 -1
  195. package/dist/components/Contractor/Payments/CreatePayment/EditContractorPaymentPresentation.js +12 -13
  196. package/dist/components/Contractor/Payments/CreatePayment/EditContractorPaymentPresentation.js.map +1 -1
  197. package/dist/components/Contractor/Payments/CreatePayment/FastAchSubmissionBlockerBanner.js +18 -21
  198. package/dist/components/Contractor/Payments/CreatePayment/FastAchSubmissionBlockerBanner.js.map +1 -1
  199. package/dist/components/Contractor/Payments/CreatePayment/PreviewPresentation.js +3 -4
  200. package/dist/components/Contractor/Payments/CreatePayment/PreviewPresentation.js.map +1 -1
  201. package/dist/components/Contractor/Payments/PaymentHistory/PaymentHistoryPresentation.js +17 -19
  202. package/dist/components/Contractor/Payments/PaymentHistory/PaymentHistoryPresentation.js.map +1 -1
  203. package/dist/components/Contractor/Payments/PaymentStatement/PaymentStatementPresentation.js +6 -8
  204. package/dist/components/Contractor/Payments/PaymentStatement/PaymentStatementPresentation.js.map +1 -1
  205. package/dist/components/Contractor/Payments/PaymentSummary/PaymentSummaryPresentation.js +2 -4
  206. package/dist/components/Contractor/Payments/PaymentSummary/PaymentSummaryPresentation.js.map +1 -1
  207. package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.js +2 -5
  208. package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.js.map +1 -1
  209. package/dist/components/Contractor/Profile/ContractorProfileForm.js +15 -15
  210. package/dist/components/Contractor/Profile/useContractorProfile.js +11 -8
  211. package/dist/components/Contractor/Profile/useContractorProfile.js.map +1 -1
  212. package/dist/components/Contractor/Submit/Submit.js +20 -22
  213. package/dist/components/Contractor/Submit/Submit.js.map +1 -1
  214. package/dist/components/Employee/Compensation/Actions.js +12 -14
  215. package/dist/components/Employee/Compensation/Actions.js.map +1 -1
  216. package/dist/components/Employee/Compensation/Compensation.js.map +1 -1
  217. package/dist/components/Employee/Compensation/Edit.js +27 -28
  218. package/dist/components/Employee/Compensation/Edit.js.map +1 -1
  219. package/dist/components/Employee/Compensation/List.js +23 -25
  220. package/dist/components/Employee/Compensation/List.js.map +1 -1
  221. package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.js +55 -49
  222. package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.js.map +1 -1
  223. package/dist/components/Employee/Deductions/DeductionsForm/CustomDeductionForm.js +14 -13
  224. package/dist/components/Employee/Deductions/DeductionsForm/CustomDeductionForm.js.map +1 -1
  225. package/dist/components/Employee/Deductions/DeductionsForm/DeductionsForm.js.map +1 -1
  226. package/dist/components/Employee/Deductions/DeductionsForm/GarnishmentForm.js +14 -13
  227. package/dist/components/Employee/Deductions/DeductionsForm/GarnishmentForm.js.map +1 -1
  228. package/dist/components/Employee/Deductions/DeductionsList/DeductionsList.js +18 -19
  229. package/dist/components/Employee/Deductions/DeductionsList/DeductionsList.js.map +1 -1
  230. package/dist/components/Employee/Deductions/IncludeDeductions/IncludeDeductions.js +6 -8
  231. package/dist/components/Employee/Deductions/IncludeDeductions/IncludeDeductions.js.map +1 -1
  232. package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js +6 -9
  233. package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js.map +1 -1
  234. package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js +10 -14
  235. package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js.map +1 -1
  236. package/dist/components/Employee/DocumentSigner/DocumentList/List.js +2 -6
  237. package/dist/components/Employee/DocumentSigner/DocumentList/List.js.map +1 -1
  238. package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.js +8 -7
  239. package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.js.map +1 -1
  240. package/dist/components/Employee/DocumentSigner/EmploymentEligibility/EmploymentEligibilityPresentation.js +24 -26
  241. package/dist/components/Employee/DocumentSigner/EmploymentEligibility/EmploymentEligibilityPresentation.js.map +1 -1
  242. package/dist/components/Employee/DocumentSigner/I9SignatureForm/I9SignatureForm.js +9 -11
  243. package/dist/components/Employee/DocumentSigner/I9SignatureForm/I9SignatureForm.js.map +1 -1
  244. package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js +11 -15
  245. package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -1
  246. package/dist/components/Employee/DocumentSigner/SignatureForm/useSignatureForm.js +8 -7
  247. package/dist/components/Employee/DocumentSigner/SignatureForm/useSignatureForm.js.map +1 -1
  248. package/dist/components/Employee/EmployeeDocuments/EmployeeDocumentsPresentation.js +6 -9
  249. package/dist/components/Employee/EmployeeDocuments/EmployeeDocumentsPresentation.js.map +1 -1
  250. package/dist/components/Employee/EmployeeList/Actions.js +6 -9
  251. package/dist/components/Employee/EmployeeList/Actions.js.map +1 -1
  252. package/dist/components/Employee/EmployeeList/EmployeeList.js +3 -7
  253. package/dist/components/Employee/EmployeeList/EmployeeList.js.map +1 -1
  254. package/dist/components/Employee/EmployeeList/Head.js +5 -8
  255. package/dist/components/Employee/EmployeeList/Head.js.map +1 -1
  256. package/dist/components/Employee/EmployeeList/List.js +16 -17
  257. package/dist/components/Employee/EmployeeList/List.js.map +1 -1
  258. package/dist/components/Employee/EmployeeList/useEmployeeList.js +8 -7
  259. package/dist/components/Employee/EmployeeList/useEmployeeList.js.map +1 -1
  260. package/dist/components/Employee/FederalTaxes/Actions.js +7 -10
  261. package/dist/components/Employee/FederalTaxes/Actions.js.map +1 -1
  262. package/dist/components/Employee/FederalTaxes/FederalForm.js +10 -13
  263. package/dist/components/Employee/FederalTaxes/FederalForm.js.map +1 -1
  264. package/dist/components/Employee/FederalTaxes/useFederalTaxes.js +8 -7
  265. package/dist/components/Employee/FederalTaxes/useFederalTaxes.js.map +1 -1
  266. package/dist/components/Employee/Landing/Landing.js +14 -15
  267. package/dist/components/Employee/Landing/Landing.js.map +1 -1
  268. package/dist/components/Employee/OnboardingSummary/OnboardingSummary.js +7 -7
  269. package/dist/components/Employee/PaymentMethod/Actions.js +8 -11
  270. package/dist/components/Employee/PaymentMethod/Actions.js.map +1 -1
  271. package/dist/components/Employee/PaymentMethod/BankAccountEdit.js +5 -8
  272. package/dist/components/Employee/PaymentMethod/BankAccountEdit.js.map +1 -1
  273. package/dist/components/Employee/PaymentMethod/BankAccountsList.js +9 -10
  274. package/dist/components/Employee/PaymentMethod/BankAccountsList.js.map +1 -1
  275. package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js +7 -10
  276. package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js.map +1 -1
  277. package/dist/components/Employee/PaymentMethod/Split.js +9 -10
  278. package/dist/components/Employee/PaymentMethod/Split.js.map +1 -1
  279. package/dist/components/Employee/PaymentMethod/usePaymentMethod.js +10 -9
  280. package/dist/components/Employee/PaymentMethod/usePaymentMethod.js.map +1 -1
  281. package/dist/components/Employee/Profile/Actions.js +8 -11
  282. package/dist/components/Employee/Profile/Actions.js.map +1 -1
  283. package/dist/components/Employee/Profile/AdminPersonalDetails.js +14 -17
  284. package/dist/components/Employee/Profile/AdminPersonalDetails.js.map +1 -1
  285. package/dist/components/Employee/Profile/HomeAddress.d.ts +3 -3
  286. package/dist/components/Employee/Profile/HomeAddress.js +45 -45
  287. package/dist/components/Employee/Profile/HomeAddress.js.map +1 -1
  288. package/dist/components/Employee/Profile/PersonalDetailsInputs.js +15 -19
  289. package/dist/components/Employee/Profile/PersonalDetailsInputs.js.map +1 -1
  290. package/dist/components/Employee/Profile/Profile.js.map +1 -1
  291. package/dist/components/Employee/Profile/useProfile.js +8 -7
  292. package/dist/components/Employee/Profile/useProfile.js.map +1 -1
  293. package/dist/components/Employee/StateTaxes/Actions.js +8 -11
  294. package/dist/components/Employee/StateTaxes/Actions.js.map +1 -1
  295. package/dist/components/Employee/StateTaxes/useStateTaxes.js +8 -7
  296. package/dist/components/Employee/StateTaxes/useStateTaxes.js.map +1 -1
  297. package/dist/components/Employee/Taxes/Actions.js +8 -11
  298. package/dist/components/Employee/Taxes/Actions.js.map +1 -1
  299. package/dist/components/Employee/Taxes/FederalForm.js +10 -13
  300. package/dist/components/Employee/Taxes/FederalForm.js.map +1 -1
  301. package/dist/components/Employee/Taxes/useTaxes.js +8 -7
  302. package/dist/components/Employee/Taxes/useTaxes.js.map +1 -1
  303. package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployeePresentation.js +14 -17
  304. package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployeePresentation.js.map +1 -1
  305. package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.d.ts +1 -0
  306. package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.js +37 -33
  307. package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.js.map +1 -1
  308. package/dist/components/Employee/Terminations/TerminationFlow/terminationStateMachine.d.ts +1 -0
  309. package/dist/components/Employee/Terminations/TerminationFlow/terminationStateMachine.js +57 -45
  310. package/dist/components/Employee/Terminations/TerminationFlow/terminationStateMachine.js.map +1 -1
  311. package/dist/components/Employee/Terminations/TerminationSummary/TerminationSummaryPresentation.js +8 -11
  312. package/dist/components/Employee/Terminations/TerminationSummary/TerminationSummaryPresentation.js.map +1 -1
  313. package/dist/components/Flow/Flow.js +20 -23
  314. package/dist/components/Flow/Flow.js.map +1 -1
  315. package/dist/components/InformationRequests/InformationRequestForm/InformationRequestForm.js +16 -18
  316. package/dist/components/InformationRequests/InformationRequestForm/InformationRequestForm.js.map +1 -1
  317. package/dist/components/InformationRequests/InformationRequestList/InformationRequestList.js +18 -20
  318. package/dist/components/InformationRequests/InformationRequestList/InformationRequestList.js.map +1 -1
  319. package/dist/components/InformationRequests/InformationRequests.js +3 -4
  320. package/dist/components/InformationRequests/InformationRequests.js.map +1 -1
  321. package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsBanner/ConfirmWireDetailsBanner.js.map +1 -1
  322. package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.js +8 -10
  323. package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.js.map +1 -1
  324. package/dist/components/Payroll/Dismissal/DismissalFlow.js +14 -14
  325. package/dist/components/Payroll/Dismissal/DismissalFlow.js.map +1 -1
  326. package/dist/components/Payroll/Dismissal/DismissalFlowComponents.d.ts +2 -2
  327. package/dist/components/Payroll/Dismissal/DismissalFlowComponents.js +8 -8
  328. package/dist/components/Payroll/Dismissal/DismissalFlowComponents.js.map +1 -1
  329. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelection.d.ts +2 -1
  330. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelection.js +61 -57
  331. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelection.js.map +1 -1
  332. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelectionPresentation.js +8 -11
  333. package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelectionPresentation.js.map +1 -1
  334. package/dist/components/Payroll/GrossUpModal/GrossUpModal.d.ts +1 -1
  335. package/dist/components/Payroll/GrossUpModal/GrossUpModal.js +88 -75
  336. package/dist/components/Payroll/GrossUpModal/GrossUpModal.js.map +1 -1
  337. package/dist/components/Payroll/GrossUpModal/GrossUpModal.module.scss.js +6 -6
  338. package/dist/components/Payroll/GrossUpModal/GrossUpModalTypes.d.ts +0 -1
  339. package/dist/components/Payroll/OffCycle/OffCycleFlow.d.ts +1 -1
  340. package/dist/components/Payroll/OffCycle/OffCycleFlow.js +24 -18
  341. package/dist/components/Payroll/OffCycle/OffCycleFlow.js.map +1 -1
  342. package/dist/components/Payroll/OffCycle/OffCycleFlowComponents.d.ts +2 -0
  343. package/dist/components/Payroll/OffCycle/OffCycleFlowComponents.js +30 -31
  344. package/dist/components/Payroll/OffCycle/OffCycleFlowComponents.js.map +1 -1
  345. package/dist/components/Payroll/OffCycleCreation/OffCycleCreation.js +56 -53
  346. package/dist/components/Payroll/OffCycleCreation/OffCycleCreation.js.map +1 -1
  347. package/dist/components/Payroll/OffCycleCreation/OffCycleCreationPresentation.js +30 -32
  348. package/dist/components/Payroll/OffCycleCreation/OffCycleCreationPresentation.js.map +1 -1
  349. package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormPresentation.js +18 -26
  350. package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormPresentation.js.map +1 -1
  351. package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormTypes.js +2 -2
  352. package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormTypes.js.map +1 -1
  353. package/dist/components/Payroll/OffCycleReasonSelection/OffCycleReasonSelectionPresentation.js +6 -9
  354. package/dist/components/Payroll/OffCycleReasonSelection/OffCycleReasonSelectionPresentation.js.map +1 -1
  355. package/dist/components/Payroll/OffCycleTaxWithholdingModal/OffCycleTaxWithholdingModal.js +12 -14
  356. package/dist/components/Payroll/OffCycleTaxWithholdingModal/OffCycleTaxWithholdingModal.js.map +1 -1
  357. package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerAlerts.js +11 -14
  358. package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerAlerts.js.map +1 -1
  359. package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerList.js +12 -12
  360. package/dist/components/Payroll/PayrollConfiguration/PayrollConfiguration.js +66 -67
  361. package/dist/components/Payroll/PayrollConfiguration/PayrollConfiguration.js.map +1 -1
  362. package/dist/components/Payroll/PayrollConfiguration/PayrollConfigurationPresentation.js +20 -21
  363. package/dist/components/Payroll/PayrollConfiguration/PayrollConfigurationPresentation.js.map +1 -1
  364. package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.d.ts +1 -1
  365. package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.js +222 -216
  366. package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.js.map +1 -1
  367. package/dist/components/Payroll/PayrollEditEmployee/TimeOffField.js +19 -21
  368. package/dist/components/Payroll/PayrollEditEmployee/TimeOffField.js.map +1 -1
  369. package/dist/components/Payroll/PayrollFlow/OffCycleFlowContextual.js +13 -6
  370. package/dist/components/Payroll/PayrollFlow/OffCycleFlowContextual.js.map +1 -1
  371. package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.js +31 -33
  372. package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.js.map +1 -1
  373. package/dist/components/Payroll/PayrollList/PayrollList.js +44 -40
  374. package/dist/components/Payroll/PayrollList/PayrollList.js.map +1 -1
  375. package/dist/components/Payroll/PayrollList/PayrollListPresentation.js +15 -17
  376. package/dist/components/Payroll/PayrollList/PayrollListPresentation.js.map +1 -1
  377. package/dist/components/Payroll/PayrollOverview/PayrollOverview.js +15 -15
  378. package/dist/components/Payroll/PayrollOverview/PayrollOverview.js.map +1 -1
  379. package/dist/components/Payroll/PayrollOverview/PayrollOverviewPresentation.js +58 -59
  380. package/dist/components/Payroll/PayrollOverview/PayrollOverviewPresentation.js.map +1 -1
  381. package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchSubmissionBlockerBanner.js +7 -10
  382. package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchSubmissionBlockerBanner.js.map +1 -1
  383. package/dist/components/Payroll/PayrollReceipts/PayrollReceiptsPresentation.js +2 -3
  384. package/dist/components/Payroll/PayrollReceipts/PayrollReceiptsPresentation.js.map +1 -1
  385. package/dist/components/Payroll/RecoveryCases/RecoveryCasesList/RecoveryCasesList.js +2 -4
  386. package/dist/components/Payroll/RecoveryCases/RecoveryCasesList/RecoveryCasesList.js.map +1 -1
  387. package/dist/components/Payroll/RecoveryCases/RecoveryCasesResubmit/RecoveryCasesResubmit.js +11 -13
  388. package/dist/components/Payroll/RecoveryCases/RecoveryCasesResubmit/RecoveryCasesResubmit.js.map +1 -1
  389. package/dist/components/Payroll/RecoveryCases/useRecoveryCaseErrorCode.js +2 -5
  390. package/dist/components/Payroll/RecoveryCases/useRecoveryCaseErrorCode.js.map +1 -1
  391. package/dist/components/Payroll/TransitionCreation/TransitionCreationPresentation.js +12 -14
  392. package/dist/components/Payroll/TransitionCreation/TransitionCreationPresentation.js.map +1 -1
  393. package/dist/components/Payroll/helpers.d.ts +4 -0
  394. package/dist/components/Payroll/helpers.js +21 -16
  395. package/dist/components/Payroll/helpers.js.map +1 -1
  396. package/dist/components/Payroll/usePreparedPayrollData.js +4 -4
  397. package/dist/components/UNSTABLE_Hooks/collectErrors.d.ts +6 -0
  398. package/dist/components/UNSTABLE_Hooks/collectErrors.js +9 -0
  399. package/dist/components/UNSTABLE_Hooks/collectErrors.js.map +1 -0
  400. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataContext.d.ts +2 -2
  401. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataContext.js +6 -9
  402. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataContext.js.map +1 -1
  403. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataProvider.d.ts +2 -2
  404. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataProvider.js +13 -0
  405. package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataProvider.js.map +1 -0
  406. package/dist/components/UNSTABLE_Hooks/form/SDKFormProvider.d.ts +11 -6
  407. package/dist/components/UNSTABLE_Hooks/form/SDKFormProvider.js +24 -0
  408. package/dist/components/UNSTABLE_Hooks/form/SDKFormProvider.js.map +1 -0
  409. package/dist/components/UNSTABLE_Hooks/form/composeFormSchema.d.ts +26 -0
  410. package/dist/components/UNSTABLE_Hooks/form/composeFormSchema.js +24 -0
  411. package/dist/components/UNSTABLE_Hooks/form/composeFormSchema.js.map +1 -0
  412. package/dist/components/UNSTABLE_Hooks/form/composeSubmitHandler.d.ts +53 -0
  413. package/dist/components/UNSTABLE_Hooks/form/composeSubmitHandler.js +34 -0
  414. package/dist/components/UNSTABLE_Hooks/form/composeSubmitHandler.js.map +1 -0
  415. package/dist/components/UNSTABLE_Hooks/form/composeSubmitHandler.test.d.ts +1 -0
  416. package/dist/components/UNSTABLE_Hooks/form/deriveFieldsMetadata.d.ts +1 -1
  417. package/dist/components/UNSTABLE_Hooks/form/deriveFieldsMetadata.js +14 -0
  418. package/dist/components/UNSTABLE_Hooks/form/deriveFieldsMetadata.js.map +1 -0
  419. package/dist/components/UNSTABLE_Hooks/form/fields/CheckboxHookField.d.ts +11 -0
  420. package/dist/components/UNSTABLE_Hooks/form/fields/CheckboxHookField.js +34 -0
  421. package/dist/components/UNSTABLE_Hooks/form/fields/CheckboxHookField.js.map +1 -0
  422. package/dist/components/UNSTABLE_Hooks/form/fields/DatePickerHookField.d.ts +11 -0
  423. package/dist/components/UNSTABLE_Hooks/form/fields/DatePickerHookField.js +34 -0
  424. package/dist/components/UNSTABLE_Hooks/form/fields/DatePickerHookField.js.map +1 -0
  425. package/dist/components/UNSTABLE_Hooks/form/fields/NumberInputHookField.d.ts +14 -0
  426. package/dist/components/UNSTABLE_Hooks/form/fields/NumberInputHookField.js +40 -0
  427. package/dist/components/UNSTABLE_Hooks/form/fields/NumberInputHookField.js.map +1 -0
  428. package/dist/components/UNSTABLE_Hooks/form/fields/RadioGroupHookField.d.ts +12 -0
  429. package/dist/components/UNSTABLE_Hooks/form/fields/RadioGroupHookField.js +40 -0
  430. package/dist/components/UNSTABLE_Hooks/form/fields/RadioGroupHookField.js.map +1 -0
  431. package/dist/components/UNSTABLE_Hooks/form/fields/SelectHookField.d.ts +12 -0
  432. package/dist/components/UNSTABLE_Hooks/form/fields/SelectHookField.js +40 -0
  433. package/dist/components/UNSTABLE_Hooks/form/fields/SelectHookField.js.map +1 -0
  434. package/dist/components/UNSTABLE_Hooks/form/fields/SwitchHookField.d.ts +11 -0
  435. package/dist/components/UNSTABLE_Hooks/form/fields/SwitchHookField.js +34 -0
  436. package/dist/components/UNSTABLE_Hooks/form/fields/SwitchHookField.js.map +1 -0
  437. package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.d.ts +13 -0
  438. package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.js +38 -0
  439. package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.js.map +1 -0
  440. package/dist/components/UNSTABLE_Hooks/form/fields/index.d.ts +15 -0
  441. package/dist/components/UNSTABLE_Hooks/form/getFieldWithOptions.d.ts +2 -0
  442. package/dist/components/UNSTABLE_Hooks/form/getFieldWithOptions.js +8 -0
  443. package/dist/components/UNSTABLE_Hooks/form/getFieldWithOptions.js.map +1 -0
  444. package/dist/components/UNSTABLE_Hooks/form/getFormSubmissionValues.d.ts +18 -0
  445. package/dist/components/UNSTABLE_Hooks/form/getFormSubmissionValues.js +10 -0
  446. package/dist/components/UNSTABLE_Hooks/form/getFormSubmissionValues.js.map +1 -0
  447. package/dist/components/UNSTABLE_Hooks/form/getFormSubmissionValues.test.d.ts +1 -0
  448. package/dist/components/UNSTABLE_Hooks/form/index.d.ts +8 -1
  449. package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.d.ts +4 -0
  450. package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.js +13 -0
  451. package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.js.map +1 -0
  452. package/dist/components/UNSTABLE_Hooks/form/resolveRequiredFields.d.ts +6 -0
  453. package/dist/components/UNSTABLE_Hooks/form/resolveRequiredFields.js +14 -0
  454. package/dist/components/UNSTABLE_Hooks/form/resolveRequiredFields.js.map +1 -0
  455. package/dist/components/UNSTABLE_Hooks/form/types.d.ts +12 -0
  456. package/dist/components/UNSTABLE_Hooks/form/useFieldErrorMessage.d.ts +2 -1
  457. package/dist/components/UNSTABLE_Hooks/form/useFieldErrorMessage.js +11 -9
  458. package/dist/components/UNSTABLE_Hooks/form/useFieldErrorMessage.js.map +1 -1
  459. package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.d.ts +2 -2
  460. package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.js +2 -3
  461. package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.js.map +1 -1
  462. package/dist/components/UNSTABLE_Hooks/form/useHookFieldResolution.d.ts +23 -0
  463. package/dist/components/UNSTABLE_Hooks/form/useHookFieldResolution.js +11 -0
  464. package/dist/components/UNSTABLE_Hooks/form/useHookFieldResolution.js.map +1 -0
  465. package/dist/components/UNSTABLE_Hooks/form/withOptions.js +7 -0
  466. package/dist/components/UNSTABLE_Hooks/form/withOptions.js.map +1 -0
  467. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/CompensationForm.d.ts +5 -0
  468. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/CompensationForm.js +149 -0
  469. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/CompensationForm.js.map +1 -0
  470. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.d.ts +97 -0
  471. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.js +121 -0
  472. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.js.map +1 -0
  473. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/fields.d.ts +34 -0
  474. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/fields.js +50 -0
  475. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/fields.js.map +1 -0
  476. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/index.d.ts +5 -1
  477. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.d.ts +97 -9
  478. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.js +255 -3
  479. package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.js.map +1 -1
  480. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/EmployeeDetailsForm.d.ts +5 -0
  481. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/EmployeeDetailsForm.js +112 -0
  482. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/EmployeeDetailsForm.js.map +1 -0
  483. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/employeeDetailsSchema.d.ts +39 -0
  484. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/employeeDetailsSchema.js +45 -0
  485. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/employeeDetailsSchema.js.map +1 -0
  486. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/fields.d.ts +23 -0
  487. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/fields.js +46 -0
  488. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/fields.js.map +1 -0
  489. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/index.d.ts +7 -0
  490. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.d.ts +77 -0
  491. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.js +153 -0
  492. package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.js.map +1 -0
  493. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/WorkAddressForm.d.ts +5 -0
  494. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/WorkAddressForm.js +69 -0
  495. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/WorkAddressForm.js.map +1 -0
  496. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/fields.d.ts +10 -0
  497. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/fields.js +14 -0
  498. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/fields.js.map +1 -0
  499. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/index.d.ts +7 -0
  500. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.d.ts +68 -0
  501. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.js +129 -0
  502. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.js.map +1 -0
  503. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/workAddressSchema.d.ts +25 -0
  504. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/workAddressSchema.js +24 -0
  505. package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/workAddressSchema.js.map +1 -0
  506. package/dist/components/UNSTABLE_Hooks/index.d.ts +8 -4
  507. package/dist/components/UNSTABLE_Hooks/types.d.ts +9 -6
  508. package/dist/components/UNSTABLE_Hooks/useErrorHandling.d.ts +9 -0
  509. package/dist/components/UNSTABLE_Hooks/useErrorHandling.js +12 -0
  510. package/dist/components/UNSTABLE_Hooks/useErrorHandling.js.map +1 -0
  511. package/dist/components/UNSTABLE_Hooks/useErrorHandling.test.d.ts +1 -0
  512. package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js +10 -13
  513. package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js.map +1 -1
  514. package/dist/contexts/LoadingIndicatorProvider/useLoadingIndicator.d.ts +10 -2
  515. package/dist/contexts/LoadingIndicatorProvider/useLoadingIndicator.js.map +1 -1
  516. package/dist/contexts/ThemeProvider/useTheme.js.map +1 -1
  517. package/dist/helpers/requiredIf.d.ts +13 -0
  518. package/dist/helpers/requiredIf.js +8 -0
  519. package/dist/helpers/requiredIf.js.map +1 -0
  520. package/dist/i18n/I18n.js +12 -12
  521. package/dist/i18n/I18n.js.map +1 -1
  522. package/dist/i18n/en/Company.TimeOff.CreateTimeOffPolicy.json.js +26 -0
  523. package/dist/i18n/en/Company.TimeOff.CreateTimeOffPolicy.json.js.map +1 -0
  524. package/dist/i18n/en/Company.TimeOff.HolidayPolicy.json.js +24 -0
  525. package/dist/i18n/en/Company.TimeOff.HolidayPolicy.json.js.map +1 -0
  526. package/dist/i18n/en/Company.TimeOff.TimeOffPolicies.json.js +32 -0
  527. package/dist/i18n/en/Company.TimeOff.TimeOffPolicies.json.js.map +1 -0
  528. package/dist/i18n/en/Company.TimeOff.TimeOffPolicyDetails.json.js +52 -0
  529. package/dist/i18n/en/Company.TimeOff.TimeOffPolicyDetails.json.js.map +1 -0
  530. package/dist/i18n/en/Company.TimeOff.TimeOffRequests.json.js +21 -0
  531. package/dist/i18n/en/Company.TimeOff.TimeOffRequests.json.js.map +1 -0
  532. package/dist/i18n/en/Payroll.GrossUpModal.json.js +16 -14
  533. package/dist/i18n/en/Payroll.GrossUpModal.json.js.map +1 -1
  534. package/dist/i18n/en/Payroll.OffCycleTaxWithholding.json.js +5 -5
  535. package/dist/i18n/en/Payroll.PayrollEditEmployee.json.js +29 -25
  536. package/dist/i18n/en/Payroll.PayrollEditEmployee.json.js.map +1 -1
  537. package/dist/i18n/en/UNSTABLE.CompensationForm.json.js +58 -0
  538. package/dist/i18n/en/UNSTABLE.CompensationForm.json.js.map +1 -0
  539. package/dist/i18n/en/UNSTABLE.EmployeeDetailsForm.json.js +34 -0
  540. package/dist/i18n/en/UNSTABLE.EmployeeDetailsForm.json.js.map +1 -0
  541. package/dist/i18n/en/UNSTABLE.WorkAddressForm.json.js +24 -0
  542. package/dist/i18n/en/UNSTABLE.WorkAddressForm.json.js.map +1 -0
  543. package/dist/models/WA_RISK_CODES.d.ts +5 -2866
  544. package/dist/models/WA_RISK_CODES.js.map +1 -1
  545. package/dist/style.css +1 -1
  546. package/dist/types/i18next.d.ts +545 -1
  547. package/dist/types/sdkError.d.ts +7 -1
  548. package/dist/types/sdkError.js.map +1 -1
  549. package/docs/reference/endpoint-inventory.json +92 -0
  550. package/package.json +12 -12
package/dist/i18n/I18n.js CHANGED
@@ -1,36 +1,36 @@
1
1
  import p from "../_virtual/dynamic-import-helper.js";
2
2
  import { useTranslation as a } from "react-i18next";
3
3
  import { LRUCache as y } from "../helpers/LRUCache.js";
4
- const C = "common", m = new y(50), j = ({ lng: e = "en", ns: o }) => {
4
+ const u = "common", s = new y(50), j = ({ lng: e = "en", ns: o }) => {
5
5
  let r = !0, n = !1, t;
6
- const i = (async () => {
6
+ const m = (async () => {
7
7
  try {
8
- t = (await p(/* @__PURE__ */ Object.assign({ "./en/Company.Addresses.json": () => import("./en/Company.Addresses.json.js"), "./en/Company.AssignSignatory.json": () => import("./en/Company.AssignSignatory.json.js"), "./en/Company.BankAccount.json": () => import("./en/Company.BankAccount.json.js"), "./en/Company.DocumentList.json": () => import("./en/Company.DocumentList.json.js"), "./en/Company.FederalTaxes.json": () => import("./en/Company.FederalTaxes.json.js"), "./en/Company.Industry.json": () => import("./en/Company.Industry.json.js"), "./en/Company.Locations.json": () => import("./en/Company.Locations.json.js"), "./en/Company.OnboardingOverview.json": () => import("./en/Company.OnboardingOverview.json.js"), "./en/Company.PaySchedule.json": () => import("./en/Company.PaySchedule.json.js"), "./en/Company.SignatureForm.json": () => import("./en/Company.SignatureForm.json.js"), "./en/Company.StateTaxes.json": () => import("./en/Company.StateTaxes.json.js"), "./en/Contractor.Address.json": () => import("./en/Contractor.Address.json.js"), "./en/Contractor.ContractorList.json": () => import("./en/Contractor.ContractorList.json.js"), "./en/Contractor.NewHireReport.json": () => import("./en/Contractor.NewHireReport.json.js"), "./en/Contractor.PaymentMethod.json": () => import("./en/Contractor.PaymentMethod.json.js"), "./en/Contractor.Payments.CreatePayment.json": () => import("./en/Contractor.Payments.CreatePayment.json.js"), "./en/Contractor.Payments.PaymentHistory.json": () => import("./en/Contractor.Payments.PaymentHistory.json.js"), "./en/Contractor.Payments.PaymentStatement.json": () => import("./en/Contractor.Payments.PaymentStatement.json.js"), "./en/Contractor.Payments.PaymentSummary.json": () => import("./en/Contractor.Payments.PaymentSummary.json.js"), "./en/Contractor.Payments.PaymentsList.json": () => import("./en/Contractor.Payments.PaymentsList.json.js"), "./en/Contractor.Profile.json": () => import("./en/Contractor.Profile.json.js"), "./en/Contractor.Submit.json": () => import("./en/Contractor.Submit.json.js"), "./en/Employee.BankAccount.json": () => import("./en/Employee.BankAccount.json.js"), "./en/Employee.Compensation.json": () => import("./en/Employee.Compensation.json.js"), "./en/Employee.Deductions.json": () => import("./en/Employee.Deductions.json.js"), "./en/Employee.DocumentSigner.json": () => import("./en/Employee.DocumentSigner.json.js"), "./en/Employee.EmployeeDocuments.json": () => import("./en/Employee.EmployeeDocuments.json.js"), "./en/Employee.EmployeeList.json": () => import("./en/Employee.EmployeeList.json.js"), "./en/Employee.EmploymentEligibility.json": () => import("./en/Employee.EmploymentEligibility.json.js"), "./en/Employee.FederalTaxes.json": () => import("./en/Employee.FederalTaxes.json.js"), "./en/Employee.HomeAddress.json": () => import("./en/Employee.HomeAddress.json.js"), "./en/Employee.I9SignatureForm.json": () => import("./en/Employee.I9SignatureForm.json.js"), "./en/Employee.Landing.json": () => import("./en/Employee.Landing.json.js"), "./en/Employee.OnboardingSummary.json": () => import("./en/Employee.OnboardingSummary.json.js"), "./en/Employee.PaySchedules.json": () => import("./en/Employee.PaySchedules.json.js"), "./en/Employee.PaymentMethod.json": () => import("./en/Employee.PaymentMethod.json.js"), "./en/Employee.Profile.json": () => import("./en/Employee.Profile.json.js"), "./en/Employee.SplitPaycheck.json": () => import("./en/Employee.SplitPaycheck.json.js"), "./en/Employee.StateTaxes.json": () => import("./en/Employee.StateTaxes.json.js"), "./en/Employee.Taxes.json": () => import("./en/Employee.Taxes.json.js"), "./en/Employee.Terminations.TerminateEmployee.json": () => import("./en/Employee.Terminations.TerminateEmployee.json.js"), "./en/Employee.Terminations.TerminationFlow.json": () => import("./en/Employee.Terminations.TerminationFlow.json.js"), "./en/Employee.Terminations.TerminationSummary.json": () => import("./en/Employee.Terminations.TerminationSummary.json.js"), "./en/InformationRequests.InformationRequestForm.json": () => import("./en/InformationRequests.InformationRequestForm.json.js"), "./en/InformationRequests.InformationRequestList.json": () => import("./en/InformationRequests.InformationRequestList.json.js"), "./en/InformationRequests.json": () => import("./en/InformationRequests.json.js"), "./en/Payroll.Common.json": () => import("./en/Payroll.Common.json.js"), "./en/Payroll.ConfirmWireDetailsBanner.json": () => import("./en/Payroll.ConfirmWireDetailsBanner.json.js"), "./en/Payroll.ConfirmWireDetailsForm.json": () => import("./en/Payroll.ConfirmWireDetailsForm.json.js"), "./en/Payroll.Dismissal.json": () => import("./en/Payroll.Dismissal.json.js"), "./en/Payroll.EmployeeSelection.json": () => import("./en/Payroll.EmployeeSelection.json.js"), "./en/Payroll.GrossUpModal.json": () => import("./en/Payroll.GrossUpModal.json.js"), "./en/Payroll.OffCycle.json": () => import("./en/Payroll.OffCycle.json.js"), "./en/Payroll.OffCycleCreation.json": () => import("./en/Payroll.OffCycleCreation.json.js"), "./en/Payroll.OffCycleDeductionsSetting.json": () => import("./en/Payroll.OffCycleDeductionsSetting.json.js"), "./en/Payroll.OffCyclePayPeriodDateForm.json": () => import("./en/Payroll.OffCyclePayPeriodDateForm.json.js"), "./en/Payroll.OffCycleReasonSelection.json": () => import("./en/Payroll.OffCycleReasonSelection.json.js"), "./en/Payroll.OffCycleTaxWithholding.json": () => import("./en/Payroll.OffCycleTaxWithholding.json.js"), "./en/Payroll.PayrollBlocker.json": () => import("./en/Payroll.PayrollBlocker.json.js"), "./en/Payroll.PayrollConfiguration.json": () => import("./en/Payroll.PayrollConfiguration.json.js"), "./en/Payroll.PayrollEditEmployee.json": () => import("./en/Payroll.PayrollEditEmployee.json.js"), "./en/Payroll.PayrollFlow.json": () => import("./en/Payroll.PayrollFlow.json.js"), "./en/Payroll.PayrollHistory.json": () => import("./en/Payroll.PayrollHistory.json.js"), "./en/Payroll.PayrollLanding.json": () => import("./en/Payroll.PayrollLanding.json.js"), "./en/Payroll.PayrollList.json": () => import("./en/Payroll.PayrollList.json.js"), "./en/Payroll.PayrollOverview.json": () => import("./en/Payroll.PayrollOverview.json.js"), "./en/Payroll.PayrollReceipts.json": () => import("./en/Payroll.PayrollReceipts.json.js"), "./en/Payroll.RecoveryCasesList.json": () => import("./en/Payroll.RecoveryCasesList.json.js"), "./en/Payroll.RecoveryCasesResubmit.json": () => import("./en/Payroll.RecoveryCasesResubmit.json.js"), "./en/Payroll.Transition.json": () => import("./en/Payroll.Transition.json.js"), "./en/Payroll.TransitionCreation.json": () => import("./en/Payroll.TransitionCreation.json.js"), "./en/Payroll.TransitionPayrollAlert.json": () => import("./en/Payroll.TransitionPayrollAlert.json.js"), "./en/Payroll.WireInstructions.json": () => import("./en/Payroll.WireInstructions.json.js"), "./en/common.json": () => import("./en/common.json.js") }), `./${e}/${o}.json`, 3)).default, r = !1;
8
+ t = (await p(/* @__PURE__ */ Object.assign({ "./en/Company.Addresses.json": () => import("./en/Company.Addresses.json.js"), "./en/Company.AssignSignatory.json": () => import("./en/Company.AssignSignatory.json.js"), "./en/Company.BankAccount.json": () => import("./en/Company.BankAccount.json.js"), "./en/Company.DocumentList.json": () => import("./en/Company.DocumentList.json.js"), "./en/Company.FederalTaxes.json": () => import("./en/Company.FederalTaxes.json.js"), "./en/Company.Industry.json": () => import("./en/Company.Industry.json.js"), "./en/Company.Locations.json": () => import("./en/Company.Locations.json.js"), "./en/Company.OnboardingOverview.json": () => import("./en/Company.OnboardingOverview.json.js"), "./en/Company.PaySchedule.json": () => import("./en/Company.PaySchedule.json.js"), "./en/Company.SignatureForm.json": () => import("./en/Company.SignatureForm.json.js"), "./en/Company.StateTaxes.json": () => import("./en/Company.StateTaxes.json.js"), "./en/Company.TimeOff.CreateTimeOffPolicy.json": () => import("./en/Company.TimeOff.CreateTimeOffPolicy.json.js"), "./en/Company.TimeOff.HolidayPolicy.json": () => import("./en/Company.TimeOff.HolidayPolicy.json.js"), "./en/Company.TimeOff.TimeOffPolicies.json": () => import("./en/Company.TimeOff.TimeOffPolicies.json.js"), "./en/Company.TimeOff.TimeOffPolicyDetails.json": () => import("./en/Company.TimeOff.TimeOffPolicyDetails.json.js"), "./en/Company.TimeOff.TimeOffRequests.json": () => import("./en/Company.TimeOff.TimeOffRequests.json.js"), "./en/Contractor.Address.json": () => import("./en/Contractor.Address.json.js"), "./en/Contractor.ContractorList.json": () => import("./en/Contractor.ContractorList.json.js"), "./en/Contractor.NewHireReport.json": () => import("./en/Contractor.NewHireReport.json.js"), "./en/Contractor.PaymentMethod.json": () => import("./en/Contractor.PaymentMethod.json.js"), "./en/Contractor.Payments.CreatePayment.json": () => import("./en/Contractor.Payments.CreatePayment.json.js"), "./en/Contractor.Payments.PaymentHistory.json": () => import("./en/Contractor.Payments.PaymentHistory.json.js"), "./en/Contractor.Payments.PaymentStatement.json": () => import("./en/Contractor.Payments.PaymentStatement.json.js"), "./en/Contractor.Payments.PaymentSummary.json": () => import("./en/Contractor.Payments.PaymentSummary.json.js"), "./en/Contractor.Payments.PaymentsList.json": () => import("./en/Contractor.Payments.PaymentsList.json.js"), "./en/Contractor.Profile.json": () => import("./en/Contractor.Profile.json.js"), "./en/Contractor.Submit.json": () => import("./en/Contractor.Submit.json.js"), "./en/Employee.BankAccount.json": () => import("./en/Employee.BankAccount.json.js"), "./en/Employee.Compensation.json": () => import("./en/Employee.Compensation.json.js"), "./en/Employee.Deductions.json": () => import("./en/Employee.Deductions.json.js"), "./en/Employee.DocumentSigner.json": () => import("./en/Employee.DocumentSigner.json.js"), "./en/Employee.EmployeeDocuments.json": () => import("./en/Employee.EmployeeDocuments.json.js"), "./en/Employee.EmployeeList.json": () => import("./en/Employee.EmployeeList.json.js"), "./en/Employee.EmploymentEligibility.json": () => import("./en/Employee.EmploymentEligibility.json.js"), "./en/Employee.FederalTaxes.json": () => import("./en/Employee.FederalTaxes.json.js"), "./en/Employee.HomeAddress.json": () => import("./en/Employee.HomeAddress.json.js"), "./en/Employee.I9SignatureForm.json": () => import("./en/Employee.I9SignatureForm.json.js"), "./en/Employee.Landing.json": () => import("./en/Employee.Landing.json.js"), "./en/Employee.OnboardingSummary.json": () => import("./en/Employee.OnboardingSummary.json.js"), "./en/Employee.PaySchedules.json": () => import("./en/Employee.PaySchedules.json.js"), "./en/Employee.PaymentMethod.json": () => import("./en/Employee.PaymentMethod.json.js"), "./en/Employee.Profile.json": () => import("./en/Employee.Profile.json.js"), "./en/Employee.SplitPaycheck.json": () => import("./en/Employee.SplitPaycheck.json.js"), "./en/Employee.StateTaxes.json": () => import("./en/Employee.StateTaxes.json.js"), "./en/Employee.Taxes.json": () => import("./en/Employee.Taxes.json.js"), "./en/Employee.Terminations.TerminateEmployee.json": () => import("./en/Employee.Terminations.TerminateEmployee.json.js"), "./en/Employee.Terminations.TerminationFlow.json": () => import("./en/Employee.Terminations.TerminationFlow.json.js"), "./en/Employee.Terminations.TerminationSummary.json": () => import("./en/Employee.Terminations.TerminationSummary.json.js"), "./en/InformationRequests.InformationRequestForm.json": () => import("./en/InformationRequests.InformationRequestForm.json.js"), "./en/InformationRequests.InformationRequestList.json": () => import("./en/InformationRequests.InformationRequestList.json.js"), "./en/InformationRequests.json": () => import("./en/InformationRequests.json.js"), "./en/Payroll.Common.json": () => import("./en/Payroll.Common.json.js"), "./en/Payroll.ConfirmWireDetailsBanner.json": () => import("./en/Payroll.ConfirmWireDetailsBanner.json.js"), "./en/Payroll.ConfirmWireDetailsForm.json": () => import("./en/Payroll.ConfirmWireDetailsForm.json.js"), "./en/Payroll.Dismissal.json": () => import("./en/Payroll.Dismissal.json.js"), "./en/Payroll.EmployeeSelection.json": () => import("./en/Payroll.EmployeeSelection.json.js"), "./en/Payroll.GrossUpModal.json": () => import("./en/Payroll.GrossUpModal.json.js"), "./en/Payroll.OffCycle.json": () => import("./en/Payroll.OffCycle.json.js"), "./en/Payroll.OffCycleCreation.json": () => import("./en/Payroll.OffCycleCreation.json.js"), "./en/Payroll.OffCycleDeductionsSetting.json": () => import("./en/Payroll.OffCycleDeductionsSetting.json.js"), "./en/Payroll.OffCyclePayPeriodDateForm.json": () => import("./en/Payroll.OffCyclePayPeriodDateForm.json.js"), "./en/Payroll.OffCycleReasonSelection.json": () => import("./en/Payroll.OffCycleReasonSelection.json.js"), "./en/Payroll.OffCycleTaxWithholding.json": () => import("./en/Payroll.OffCycleTaxWithholding.json.js"), "./en/Payroll.PayrollBlocker.json": () => import("./en/Payroll.PayrollBlocker.json.js"), "./en/Payroll.PayrollConfiguration.json": () => import("./en/Payroll.PayrollConfiguration.json.js"), "./en/Payroll.PayrollEditEmployee.json": () => import("./en/Payroll.PayrollEditEmployee.json.js"), "./en/Payroll.PayrollFlow.json": () => import("./en/Payroll.PayrollFlow.json.js"), "./en/Payroll.PayrollHistory.json": () => import("./en/Payroll.PayrollHistory.json.js"), "./en/Payroll.PayrollLanding.json": () => import("./en/Payroll.PayrollLanding.json.js"), "./en/Payroll.PayrollList.json": () => import("./en/Payroll.PayrollList.json.js"), "./en/Payroll.PayrollOverview.json": () => import("./en/Payroll.PayrollOverview.json.js"), "./en/Payroll.PayrollReceipts.json": () => import("./en/Payroll.PayrollReceipts.json.js"), "./en/Payroll.RecoveryCasesList.json": () => import("./en/Payroll.RecoveryCasesList.json.js"), "./en/Payroll.RecoveryCasesResubmit.json": () => import("./en/Payroll.RecoveryCasesResubmit.json.js"), "./en/Payroll.Transition.json": () => import("./en/Payroll.Transition.json.js"), "./en/Payroll.TransitionCreation.json": () => import("./en/Payroll.TransitionCreation.json.js"), "./en/Payroll.TransitionPayrollAlert.json": () => import("./en/Payroll.TransitionPayrollAlert.json.js"), "./en/Payroll.WireInstructions.json": () => import("./en/Payroll.WireInstructions.json.js"), "./en/UNSTABLE.CompensationForm.json": () => import("./en/UNSTABLE.CompensationForm.json.js"), "./en/UNSTABLE.EmployeeDetailsForm.json": () => import("./en/UNSTABLE.EmployeeDetailsForm.json.js"), "./en/UNSTABLE.WorkAddressForm.json": () => import("./en/UNSTABLE.WorkAddressForm.json.js"), "./en/common.json": () => import("./en/common.json.js") }), `./${e}/${o}.json`, 3)).default, r = !1;
9
9
  } catch {
10
10
  n = !0, r = !1;
11
11
  }
12
12
  })();
13
13
  return () => {
14
14
  if (r)
15
- throw i;
15
+ throw m;
16
16
  if (n)
17
17
  throw new Error(`Error loading translation for component: ${o}`);
18
18
  return t;
19
19
  };
20
- }, f = (e) => {
20
+ }, C = (e) => {
21
21
  const { i18n: o } = a();
22
22
  if (!e) return;
23
23
  const r = Array.isArray(e) ? e : [e];
24
24
  for (const n of r) {
25
25
  const t = `${o.resolvedLanguage}:${n}`;
26
- m.get(t) === null && m.put(t, j({ lng: o.resolvedLanguage, ns: n }));
27
- const s = m.get(t);
28
- if (s) {
29
- const i = s();
26
+ s.get(t) === null && s.put(t, j({ lng: o.resolvedLanguage, ns: n }));
27
+ const i = s.get(t);
28
+ if (i) {
29
+ const m = i();
30
30
  o.addResourceBundle(
31
31
  o.resolvedLanguage ?? "en",
32
32
  n,
33
- i,
33
+ m,
34
34
  !0,
35
35
  !1
36
36
  );
@@ -43,8 +43,8 @@ const C = "common", m = new y(50), j = ({ lng: e = "en", ns: o }) => {
43
43
  r.addResourceBundle(n, e, o[n], !0, !0);
44
44
  };
45
45
  export {
46
- C as defaultNS,
46
+ u as defaultNS,
47
47
  d as useComponentDictionary,
48
- f as useI18n
48
+ C as useI18n
49
49
  };
50
50
  //# sourceMappingURL=I18n.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"I18n.js","sources":["../../src/i18n/I18n.ts"],"sourcesContent":["import { useTranslation } from 'react-i18next'\nimport type { CustomTypeOptions } from 'i18next'\nimport { LRUCache } from '@/helpers/LRUCache'\nimport type { ResourceDictionary, Resources } from '@/types/Helpers'\n\nexport const defaultNS = 'common'\n\n//LRU cache holding requested resources\nconst resourceCache = new LRUCache(50)\n/**\n * Dynamic loading of translation resources - works with Suspence to prevent early access to loadable strings\n * @param lng(string): resource language\n * @param ns(string): Namespace/name of the component/resource\n * @returns Promise<Translation resource>\n */\nconst loadResource = ({ lng = 'en', ns }: { ns: string; lng?: string }) => {\n let isLoading = true\n let isError = false\n let resource: Record<string, string>\n\n const importResources = async () => {\n try {\n const module = await import(`@/i18n/${lng}/${ns}.json`)\n\n resource = module.default\n isLoading = false\n } catch (err) {\n isError = true\n isLoading = false\n }\n }\n const promise = importResources()\n return () => {\n if (isLoading) {\n // eslint-disable-next-line @typescript-eslint/only-throw-error\n throw promise // Throw the promise to indicate Suspense should suspend.\n } else if (isError) {\n throw new Error(`Error loading translation for component: ${ns}`) // Handle error\n } else {\n return resource // Return the resource when loading is complete\n }\n }\n}\n\n/**\n * Hook that allows component to load custom dictionary\n * @param @private {string} ns - Namespace - should match component name exactly - not exposed to consumers\n */\nexport const useI18n = (\n namespaces:\n | keyof CustomTypeOptions['resources']\n | Array<keyof CustomTypeOptions['resources']>\n | null,\n) => {\n //Getting our instance of i18n -> supplied by the provider set in GustoApiProvider\n const { i18n: i18nInstance } = useTranslation()\n //Abort when namespace is not provided\n if (!namespaces) return\n const nsMap = Array.isArray(namespaces) ? namespaces : [namespaces]\n for (const ns of nsMap) {\n const key = `${i18nInstance.resolvedLanguage}:${ns}`\n //Skip loading default resource if it is already in cache\n if (resourceCache.get(key) === null) {\n //If resource not in cache, initiate loading and add getter to cache\n resourceCache.put(key, loadResource({ lng: i18nInstance.resolvedLanguage, ns: ns }))\n }\n //Get resourceGetter from cache\n const resourceGetter = resourceCache.get(key)\n if (resourceGetter) {\n const resource = resourceGetter()\n i18nInstance.addResourceBundle(\n i18nInstance.resolvedLanguage ?? 'en',\n ns,\n resource,\n true,\n false,\n ) //Last argument is set to false to prevent override of keys provided by partners on GustoApiProvider level through dictionary prop\n }\n }\n}\n\n//Used by individual components to override their dictionaries with partner provided resources\nexport const useComponentDictionary = <K extends keyof Resources>(\n ns: keyof CustomTypeOptions['resources'],\n resource?: ResourceDictionary<K> | null,\n) => {\n const { i18n: i18nInstance } = useTranslation()\n if (resource) {\n for (const lang in resource) {\n i18nInstance.addResourceBundle(lang, ns, resource[lang], true, true)\n }\n }\n}\n"],"names":["defaultNS","resourceCache","LRUCache","loadResource","lng","ns","isLoading","isError","resource","promise","__variableDynamicImportRuntimeHelper","useI18n","namespaces","i18nInstance","useTranslation","nsMap","key","resourceGetter","useComponentDictionary","lang"],"mappings":";;;AAKO,MAAMA,IAAY,UAGnBC,IAAgB,IAAIC,EAAS,EAAE,GAO/BC,IAAe,CAAC,EAAE,KAAAC,IAAM,MAAM,IAAAC,QAAuC;AACzE,MAAIC,IAAY,IACZC,IAAU,IACVC;AAaJ,QAAMC,KAXkB,YAAY;AAClC,QAAI;AAGF,MAAAD,KAFe,MAAME,6wNAAA,KAAAN,CAAA,IAAAC,CAAA,SAAA,CAAA,GAEH,SAClBC,IAAY;AAAA,IACd,QAAc;AACZ,MAAAC,IAAU,IACVD,IAAY;AAAA,IACd;AAAA,EACF,GACgB;AAChB,SAAO,MAAM;AACX,QAAIA;AAEF,YAAMG;QACGF;AACT,YAAM,IAAI,MAAM,4CAA4CF,CAAE,EAAE;AAEhE,WAAOG;AAAA,EAEX;AACF,GAMaG,IAAU,CACrBC,MAIG;AAEH,QAAM,EAAE,MAAMC,EAAA,IAAiBC,EAAA;AAE/B,MAAI,CAACF,EAAY;AACjB,QAAMG,IAAQ,MAAM,QAAQH,CAAU,IAAIA,IAAa,CAACA,CAAU;AAClE,aAAWP,KAAMU,GAAO;AACtB,UAAMC,IAAM,GAAGH,EAAa,gBAAgB,IAAIR,CAAE;AAElD,IAAIJ,EAAc,IAAIe,CAAG,MAAM,QAE7Bf,EAAc,IAAIe,GAAKb,EAAa,EAAE,KAAKU,EAAa,kBAAkB,IAAAR,EAAA,CAAQ,CAAC;AAGrF,UAAMY,IAAiBhB,EAAc,IAAIe,CAAG;AAC5C,QAAIC,GAAgB;AAClB,YAAMT,IAAWS,EAAA;AACjB,MAAAJ,EAAa;AAAA,QACXA,EAAa,oBAAoB;AAAA,QACjCR;AAAA,QACAG;AAAA,QACA;AAAA,QACA;AAAA,MAAA;AAAA,IAEJ;AAAA,EACF;AACF,GAGaU,IAAyB,CACpCb,GACAG,MACG;AACH,QAAM,EAAE,MAAMK,EAAA,IAAiBC,EAAA;AAC/B,MAAIN;AACF,eAAWW,KAAQX;AACjB,MAAAK,EAAa,kBAAkBM,GAAMd,GAAIG,EAASW,CAAI,GAAG,IAAM,EAAI;AAGzE;"}
1
+ {"version":3,"file":"I18n.js","sources":["../../src/i18n/I18n.ts"],"sourcesContent":["import { useTranslation } from 'react-i18next'\nimport type { CustomTypeOptions } from 'i18next'\nimport { LRUCache } from '@/helpers/LRUCache'\nimport type { ResourceDictionary, Resources } from '@/types/Helpers'\n\nexport const defaultNS = 'common'\n\n//LRU cache holding requested resources\nconst resourceCache = new LRUCache(50)\n/**\n * Dynamic loading of translation resources - works with Suspence to prevent early access to loadable strings\n * @param lng(string): resource language\n * @param ns(string): Namespace/name of the component/resource\n * @returns Promise<Translation resource>\n */\nconst loadResource = ({ lng = 'en', ns }: { ns: string; lng?: string }) => {\n let isLoading = true\n let isError = false\n let resource: Record<string, string>\n\n const importResources = async () => {\n try {\n const module = await import(`@/i18n/${lng}/${ns}.json`)\n\n resource = module.default\n isLoading = false\n } catch (err) {\n isError = true\n isLoading = false\n }\n }\n const promise = importResources()\n return () => {\n if (isLoading) {\n // eslint-disable-next-line @typescript-eslint/only-throw-error\n throw promise // Throw the promise to indicate Suspense should suspend.\n } else if (isError) {\n throw new Error(`Error loading translation for component: ${ns}`) // Handle error\n } else {\n return resource // Return the resource when loading is complete\n }\n }\n}\n\n/**\n * Hook that allows component to load custom dictionary\n * @param @private {string} ns - Namespace - should match component name exactly - not exposed to consumers\n */\nexport const useI18n = (\n namespaces:\n | keyof CustomTypeOptions['resources']\n | Array<keyof CustomTypeOptions['resources']>\n | null,\n) => {\n //Getting our instance of i18n -> supplied by the provider set in GustoApiProvider\n const { i18n: i18nInstance } = useTranslation()\n //Abort when namespace is not provided\n if (!namespaces) return\n const nsMap = Array.isArray(namespaces) ? namespaces : [namespaces]\n for (const ns of nsMap) {\n const key = `${i18nInstance.resolvedLanguage}:${ns}`\n //Skip loading default resource if it is already in cache\n if (resourceCache.get(key) === null) {\n //If resource not in cache, initiate loading and add getter to cache\n resourceCache.put(key, loadResource({ lng: i18nInstance.resolvedLanguage, ns: ns }))\n }\n //Get resourceGetter from cache\n const resourceGetter = resourceCache.get(key)\n if (resourceGetter) {\n const resource = resourceGetter()\n i18nInstance.addResourceBundle(\n i18nInstance.resolvedLanguage ?? 'en',\n ns,\n resource,\n true,\n false,\n ) //Last argument is set to false to prevent override of keys provided by partners on GustoApiProvider level through dictionary prop\n }\n }\n}\n\n//Used by individual components to override their dictionaries with partner provided resources\nexport const useComponentDictionary = <K extends keyof Resources>(\n ns: keyof CustomTypeOptions['resources'],\n resource?: ResourceDictionary<K> | null,\n) => {\n const { i18n: i18nInstance } = useTranslation()\n if (resource) {\n for (const lang in resource) {\n i18nInstance.addResourceBundle(lang, ns, resource[lang], true, true)\n }\n }\n}\n"],"names":["defaultNS","resourceCache","LRUCache","loadResource","lng","ns","isLoading","isError","resource","promise","__variableDynamicImportRuntimeHelper","useI18n","namespaces","i18nInstance","useTranslation","nsMap","key","resourceGetter","useComponentDictionary","lang"],"mappings":";;;AAKO,MAAMA,IAAY,UAGnBC,IAAgB,IAAIC,EAAS,EAAE,GAO/BC,IAAe,CAAC,EAAE,KAAAC,IAAM,MAAM,IAAAC,QAAuC;AACzE,MAAIC,IAAY,IACZC,IAAU,IACVC;AAaJ,QAAMC,KAXkB,YAAY;AAClC,QAAI;AAGF,MAAAD,KAFe,MAAME,mlPAAA,KAAAN,CAAA,IAAAC,CAAA,SAAA,CAAA,GAEH,SAClBC,IAAY;AAAA,IACd,QAAc;AACZ,MAAAC,IAAU,IACVD,IAAY;AAAA,IACd;AAAA,EACF,GACgB;AAChB,SAAO,MAAM;AACX,QAAIA;AAEF,YAAMG;QACGF;AACT,YAAM,IAAI,MAAM,4CAA4CF,CAAE,EAAE;AAEhE,WAAOG;AAAA,EAEX;AACF,GAMaG,IAAU,CACrBC,MAIG;AAEH,QAAM,EAAE,MAAMC,EAAA,IAAiBC,EAAA;AAE/B,MAAI,CAACF,EAAY;AACjB,QAAMG,IAAQ,MAAM,QAAQH,CAAU,IAAIA,IAAa,CAACA,CAAU;AAClE,aAAWP,KAAMU,GAAO;AACtB,UAAMC,IAAM,GAAGH,EAAa,gBAAgB,IAAIR,CAAE;AAElD,IAAIJ,EAAc,IAAIe,CAAG,MAAM,QAE7Bf,EAAc,IAAIe,GAAKb,EAAa,EAAE,KAAKU,EAAa,kBAAkB,IAAAR,EAAA,CAAQ,CAAC;AAGrF,UAAMY,IAAiBhB,EAAc,IAAIe,CAAG;AAC5C,QAAIC,GAAgB;AAClB,YAAMT,IAAWS,EAAA;AACjB,MAAAJ,EAAa;AAAA,QACXA,EAAa,oBAAoB;AAAA,QACjCR;AAAA,QACAG;AAAA,QACA;AAAA,QACA;AAAA,MAAA;AAAA,IAEJ;AAAA,EACF;AACF,GAGaU,IAAyB,CACpCb,GACAG,MACG;AACH,QAAM,EAAE,MAAMK,EAAA,IAAiBC,EAAA;AAC/B,MAAIN;AACF,eAAWW,KAAQX;AACjB,MAAAK,EAAa,kBAAkBM,GAAMd,GAAIG,EAASW,CAAI,GAAG,IAAM,EAAI;AAGzE;"}
@@ -0,0 +1,26 @@
1
+ const e = { title: "Policy details", description: "Give your policy a name and choose how employees accrue time off.", policyNameLabel: "Policy name", accrualType: "Accrual type", accrualTypeHint: "Choose how employees receive time off.", perHourPaidLabel: "Based on hours worked", perHourPaidHint: "Employees earn time off based on hours worked (e.g., 1 hour for every 40 hours worked).", perYearLabel: "Fixed amount each year", perYearHint: "Employees earn a set amount of time off each year (e.g., 120 hours per year).", unlimitedLabel: "Unlimited", unlimitedHint: "Employees can take flexible time off with no set limit.", accrualRateTitle: "Accrual rate", accrualRateDescription: "Set the rate at which employees will accrue time off.", accrualRateAndUnitError: "You must provide a valid base rate.", baseRateLabel: "Base rate", baseRateHint: "This sets the base rate for accrued time off.", hoursUnit: "hours", hoursWorkedUnit: "hours worked", fixedAccrualRateLabel: "Total hours per year", fixedAccrualRateHint: "The total number of hours employees earn each year.", accrualMethodFixed: "Accrual rate", accrualMethodFixedHint: "The rate at which employees will accrue paid time off.", perPayPeriodLabel: "Each pay period", perPayPeriodHint: "Employees earn time off gradually with each paycheck.", allAtOnceLabel: "All at once", allAtOnceHint: "Employees receive their full annual time off balance upfront.", policyResetDateType: "Reset date", policyResetDateTypeHint: "The accrual period will reset on this date each year.", perAnniversaryYearLabel: "Each employee's start date", perCalendarYearLabel: "Custom date", monthLabel: "Month", dayLabel: "Day", includeOvertimeLabel: "Include overtime", allPaidHoursLabel: "All paid hours" }, a = { title: "Policy settings", hoursUnit: "hours", daysUnit: "days", accrualMaximumLabel: "Accrual maximum", accrualMaximumHint: "Set the maximum balance an employee can accrue per period. Accrual will stop when this limit is reached.", balanceMaximumLabel: "Balance maximum", balanceMaximumHint: "Set the maximum balance an employee can hold at once. Accrual stops when this limit is reached.", carryOverLimitLabel: "Carry over limit", carryOverLimitHint: "Set the maximum hours allowed to carryover from one accrual period to the next.", waitingPeriodLabel: "Waiting period", waitingPeriodHint: "Set the number of days employees must work before they begin accruing time off.", paidOutOnTerminationLabel: "Payout on dismissal", paidOutOnTerminationHint: "Choose if unused time off is paid out when an employee leaves. Some states require it by law.", numberOfHoursPlaceholder: "Number of hours", numberOfDaysPlaceholder: "Number of days" }, t = { title: "Add employees to your policy", employeesMovedWarning: "Any employees currently assigned to another {{policyType}} policy will be moved to this policy.", createPolicyCta: "Create policy", policyType: { vacation: "paid time off", sick: "sick leave" } }, o = { title: "Starting balances", description: "If your employees have an existing balance, please enter those hours here. Employees moving to this policy from another will carry over their accrued hours.", noEmployees: "You haven't added any employees to this policy yet, so there aren't any starting balances to add.", alertHeader: "The following employees' balances need review", createPolicyCta: "Create policy" }, l = { selected: "of {{numAll}} employees selected", selectAllEmployees: "Select all employees", selectAll: "Select all", clearAriaLabel: "Clear selected employees", clear: "Clear", name: "Name", jobTitle: "Job title" }, i = { name: "Name", jobTitle: "Job title", balance: "Balance (hrs)", employeeCount_one: "{{count}} employee", employeeCount_other: "{{count}} employees" }, r = "Save & continue", c = "Back", n = "Cancel", s = { policyUpdated: "Details for this policy have been updated.", policyActive: "Your time off policy is active.", employeesAdded_one: "{{count}} employee has been added to this policy.", employeesAdded_other: "{{count}} employees have been added to this policy.", balanceUpdated: "{{name}}'s time off balance has been updated.", settingsUpdated: "Details for this policy have been updated." }, m = {
2
+ policyDetails: e,
3
+ policySettings: a,
4
+ addEmployees: t,
5
+ startingBalances: o,
6
+ employeeTable: l,
7
+ balanceTable: i,
8
+ continueCta: r,
9
+ backCta: c,
10
+ cancelCta: n,
11
+ flash: s
12
+ };
13
+ export {
14
+ t as addEmployees,
15
+ c as backCta,
16
+ i as balanceTable,
17
+ n as cancelCta,
18
+ r as continueCta,
19
+ m as default,
20
+ l as employeeTable,
21
+ s as flash,
22
+ e as policyDetails,
23
+ a as policySettings,
24
+ o as startingBalances
25
+ };
26
+ //# sourceMappingURL=Company.TimeOff.CreateTimeOffPolicy.json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Company.TimeOff.CreateTimeOffPolicy.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
@@ -0,0 +1,24 @@
1
+ const e = "Choose your company holidays", o = "Choose which holidays your company observes and we'll automatically add those hours when you run payroll.", l = "Continue", t = { holidayName: "Holiday name", observedDate: "Observed date" }, d = { selected: "selected", selectAllEmployees: "Select all employees", selectAll: "Select all", clearAriaLabel: "Clear selected employees", clear: "Clear" }, a = { title: "Add employees to your policy" }, s = { title: "Holiday pay policy", holidaySchedule: "Holiday schedule" }, y = { title: "Holiday schedule", editCta: "Edit" }, c = { deleted: "Holiday pay policy deleted successfully", employeesAdded_one: "{{count}} employee has been added to this policy.", employeesAdded_other: "{{count}} employees have been added to this policy.", employeeRemoved: "{{name}} has been removed from the policy.", employeesRemoved_one: "{{count}} employee has been removed from the policy.", employeesRemoved_other: "{{count}} employees have been removed from the policy." }, i = {
2
+ title: e,
3
+ description: o,
4
+ continueCta: l,
5
+ tableHeaders: t,
6
+ employeeTable: d,
7
+ editEmployees: a,
8
+ show: s,
9
+ holidayScheduleTable: y,
10
+ flash: c
11
+ };
12
+ export {
13
+ l as continueCta,
14
+ i as default,
15
+ o as description,
16
+ a as editEmployees,
17
+ d as employeeTable,
18
+ c as flash,
19
+ y as holidayScheduleTable,
20
+ s as show,
21
+ t as tableHeaders,
22
+ e as title
23
+ };
24
+ //# sourceMappingURL=Company.TimeOff.HolidayPolicy.json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Company.TimeOff.HolidayPolicy.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;"}
@@ -0,0 +1,32 @@
1
+ const e = "Time off policies", o = "Add policy", i = { name: "Name", enrolled: "Enrolled", actions: "Actions" }, l = { viewPolicy: "View policy", editPolicy: "Edit policy", deletePolicy: "Delete policy" }, t = "{{count}} employee", a = "{{count}} employees", c = "Incomplete", y = "Holiday pay policy", n = { title: 'Are you sure you want to delete the policy "{{name}}"?', description: 'This will delete the policy "{{name}}" and all associated time off requests.' }, s = { title: "Are you sure you want to delete the company holiday pay policy?", description: "This will delete the company holiday pay policy." }, p = { heading: "You haven't added any time off policies yet", body: "Time off policies help you track and approve employee leave." }, d = { title: "Select policy type", policyTypeLabel: "Policy type", policyTypeHint: "Select the type of time off policy you want to set up for your team.", holidayLabel: "Holiday pay", holidayHint: "Give employees time off for company holidays. Choose which holidays to observe.", timeOffLabel: "Time off", timeOffHint: "Use for paid leave or combine vacation and sick time into one PTO policy.", sickLeaveLabel: "Sick leave", sickLeaveHint: "Paid time employees can use when they're sick or caring for their health.", continueCta: "Continue", cancelCta: "Cancel" }, m = { policyDeleted: 'Policy "{{name}}" deleted successfully', holidayDeleted: "Holiday pay policy deleted successfully", invalidPolicyType: "Please select a valid policy type." }, f = {
2
+ pageTitle: e,
3
+ addPolicyCta: o,
4
+ tableHeaders: i,
5
+ actions: l,
6
+ employeeCount_one: t,
7
+ employeeCount_other: a,
8
+ incompleteBadge: c,
9
+ holidayPayPolicy: y,
10
+ deletePolicyDialog: n,
11
+ deleteHolidayDialog: s,
12
+ emptyState: p,
13
+ selectPolicyType: d,
14
+ flash: m
15
+ };
16
+ export {
17
+ l as actions,
18
+ o as addPolicyCta,
19
+ f as default,
20
+ s as deleteHolidayDialog,
21
+ n as deletePolicyDialog,
22
+ t as employeeCount_one,
23
+ a as employeeCount_other,
24
+ p as emptyState,
25
+ m as flash,
26
+ y as holidayPayPolicy,
27
+ c as incompleteBadge,
28
+ e as pageTitle,
29
+ d as selectPolicyType,
30
+ i as tableHeaders
31
+ };
32
+ //# sourceMappingURL=Company.TimeOff.TimeOffPolicies.json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Company.TimeOff.TimeOffPolicies.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
@@ -0,0 +1,52 @@
1
+ const e = "Time off policies", o = "Add employee", a = { employees: "Employees", policyDetails: "Policy details" }, r = "Details", l = "Edit policy", t = { label: "Policy type", vacation: "Paid time off", sick: "Sick leave", custom: "Custom policy", parentalLeave: "Parental leave", weather: "Weather policy", volunteer: "Volunteer policy", personalDay: "Personal day", learningAndDevelopment: "Learning and development", juryDuty: "Jury duty", floatingHoliday: "Floating holiday", bereavement: "Bereavement" }, i = "Policy name", n = "Accrual rate", c = { label: "Accrual type", unlimited: "Unlimited", perPayPeriod: "Fixed", perCalendarYear: "Fixed", perAnniversaryYear: "Fixed", perHourWorked: "Based on hours worked", perHourWorkedNoOvertime: "Based on hours worked", perHourPaid: "Based on hours worked", perHourPaidNoOvertime: "Based on hours worked" }, m = { label: "Accrual rate", unlimited: "-", perPayPeriod: "{{accrualRate}} hour(s) per pay period", perCalendarYear: "{{accrualRate}} hour(s) per calendar year", perAnniversaryYear: "{{accrualRate}} hour(s) per anniversary year", perHourWorked: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) worked, including overtime", perHourWorkedNoOvertime: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) worked, excluding overtime", perHourPaid: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) including overtime and all paid hours", perHourPaidNoOvertime: "{{accrualRate}} hour(s) for every {{accrualRateUnit}} hour(s) worked and all paid hours, excluding overtime" }, s = "Reset date", d = "Policy settings", y = { label: "Accrual maximum", noMaximum: "No maximum", withMaximum: "{{count}} hour(s) per year" }, u = { label: "Balance maximum", noMaximum: "No maximum", withMaximum: "{{count}} hour(s)" }, p = { label: "Carry over limit", noLimit: "No carry over limit", withLimit: "{{count}} hour(s)" }, h = { label: "Waiting period", noPeriod: "No waiting period", withPeriod: "{{count}} day(s)" }, v = { label: "Paid out on termination", yes: "Yes, remaining time off balances for this policy are paid out when an employee is dismissed.", no: "No, remaining time off balances for this policy are not paid out when an employee is dismissed." }, f = { selected: "of {{numAll}} employees selected", selectAllEmployees: "Select all employees", selectAll: "Select all", clearAriaLabel: "Clear selected employees", clear: "Clear", name: "Name", balance: "Balance (hrs)", actions: "Actions", editBalance: "Edit balance", removeEmployee: "Remove employee", removeEmployees: "Remove employees" }, b = { title: "Add employee to this policy", description: "Select the employees to add to this policy. Employees not shown are either already included or not eligible." }, R = { title: "Edit {{name}} time off balance", currentBalance: "Current balance", hoursUnit: "hours" }, P = { title: "Remove {{name}} from policy?", alert: "When you remove an employee from a policy, any existing balance is removed.", removeCta: "Remove employee" }, g = { title: "Remove {{count}} employee(s) from policy?", alert: "When you remove an employee from a policy, any existing balance is removed.", removeCta: "Remove employees" }, x = { employeeRemoved: "{{name}} has been removed from the policy.", employeesRemoved_one: "{{count}} employee has been removed from the policy.", employeesRemoved_other: "{{count}} employees have been removed from the policy.", employeesAdded_one: "{{count}} employee has been added to this policy.", employeesAdded_other: "{{count}} employees have been added to this policy.", balanceUpdated: "{{name}}'s time off balance has been updated." }, A = {
2
+ breadcrumb: e,
3
+ addEmployeeCta: o,
4
+ tabs: a,
5
+ details: r,
6
+ editPolicyCta: l,
7
+ policyType: t,
8
+ policyName: i,
9
+ accrualRateTitle: n,
10
+ accrualMethod: c,
11
+ accrualRate: m,
12
+ resetDate: s,
13
+ policySettingsTitle: d,
14
+ maxAccrualHoursPerYear: y,
15
+ maxHours: u,
16
+ carryoverLimitHours: p,
17
+ accrualWaitingPeriodDays: h,
18
+ paidOutOnTermination: v,
19
+ employeeTable: f,
20
+ addEmployeeModal: b,
21
+ editBalanceModal: R,
22
+ removeEmployeeModal: P,
23
+ removeEmployeesModal: g,
24
+ flash: x
25
+ };
26
+ export {
27
+ c as accrualMethod,
28
+ m as accrualRate,
29
+ n as accrualRateTitle,
30
+ h as accrualWaitingPeriodDays,
31
+ o as addEmployeeCta,
32
+ b as addEmployeeModal,
33
+ e as breadcrumb,
34
+ p as carryoverLimitHours,
35
+ A as default,
36
+ r as details,
37
+ R as editBalanceModal,
38
+ l as editPolicyCta,
39
+ f as employeeTable,
40
+ x as flash,
41
+ y as maxAccrualHoursPerYear,
42
+ u as maxHours,
43
+ v as paidOutOnTermination,
44
+ i as policyName,
45
+ d as policySettingsTitle,
46
+ t as policyType,
47
+ P as removeEmployeeModal,
48
+ g as removeEmployeesModal,
49
+ s as resetDate,
50
+ a as tabs
51
+ };
52
+ //# sourceMappingURL=Company.TimeOff.TimeOffPolicyDetails.json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Company.TimeOff.TimeOffPolicyDetails.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,21 @@
1
+ const e = { title: "Time off requests", addTimeOff: "Add time off", tabs: { needsReview: "Needs review", approved: "Approved", completed: "Completed", declined: "Declined" }, emptyState: { needsReview: { heading: "No requests to review", body: "New time off requests will appear here." }, approved: { heading: "No approved requests yet", body: "Once time off is approved, it will appear here." }, completed: { heading: "No completed time off yet", body: "Once approved time off is completed, it will appear here." }, declined: { heading: "No declined requests", body: "If a time off request is declined, it will appear here." } } }, t = { employee: "Employee", policy: "Policy", dates: "Date(s)", requested: "Requested", remaining: "Remaining", actions: "Actions", view: "View", requestsCount_one: "{{count}} request", requestsCount_other: "{{count}} requests", hoursUnit: "hrs" }, a = { vacation: "Vacation", sick: "Sick leave", bereavement: "Bereavement", floatingHoliday: "Floating holiday", juryDuty: "Jury duty", learningAndDevelopment: "Learning and development", personalDay: "Personal day", volunteer: "Volunteer", weather: "Weather", parentalLeave: "Parental leave", custom: "Custom" }, o = { title: "{{policyType}} request", breadcrumb: "Time off requests", details: "Details", employee: "Employee", datesRequested: "Date(s) requested", timeRequested: "Time requested", viewBreakdown: "View breakdown by day", breakdownDate: "Date", breakdownTimeRequested: "Time requested", employeeNote: "Employee note", policyName: "Policy name", policyType: "Policy type", requestedOn: "Requested on", noteToEmployee: "Note to employee", notes: "Notes", hoursUnit: "hrs", statusNeedsReview: "Needs review", statusApproved: "Approved", statusCompleted: "Completed", statusDeclined: "Declined", approveRequestCta: "Approve request", declineRequestCta: "Decline request", declineApprovedRequestCta: "Decline approved request", doneCta: "Done", employerNoteRequired: "A note to the employee is required when declining a request" }, i = { startDate: "Start date", endDate: "End date", timeRequested: "Time requested", hoursUnit: "hrs", invalidDateRange: "End date must be on or after start date.", duration: { title: "Duration", description: "Choose how many hours of time off to record for the selected dates.", fullDays: "Full days", fullDaysDescription: "Automatically counts 8 hours for each weekday (Monday - Friday). Weekends are excluded.", partialDays: "Partial days", partialDaysDescription: "Use this option to specify the exact number of hours for each day.", dateHeader: "Date", timeRequestedHeader: "Time requested" } }, s = { title: "Time off balance for this policy", availableBalance: "Available balance", availableBalanceHint: "The amount of time off this employee has available today to use on this policy.", otherRequested: "Other requested time off", otherRequestedHint: "Any other approved future time off and pending time off under this policy. Excludes this request.", thisRequest: "This request", remainingBalance: "Remaining available balance", placeholder: "TBD hrs", negativeBalanceWarning: "If you approve this request, the employee will end up with a negative time off balance." }, r = { createSuccess: "Time off request created successfully", approveSuccess: "Time off request approved", declineSuccess: "Time off request declined", employerNoteRequired: "A note is required when declining a request" }, l = {
2
+ index: e,
3
+ requestsTable: t,
4
+ policyType: a,
5
+ show: o,
6
+ new: { title: "Add time off", breadcrumb: "Back", subtitle: "Time off you record for an employee is approved automatically.", employeeLabel: "Employee", selectEmployee: "Select...", policyLabel: "Policy", selectPolicy: "Select...", noteLabel: "Note", optionalLabel: "(Optional)", saveCta: "Save", cancelCta: "Cancel" },
7
+ dateHoursFields: i,
8
+ balancePreview: s,
9
+ flash: r
10
+ };
11
+ export {
12
+ s as balancePreview,
13
+ i as dateHoursFields,
14
+ l as default,
15
+ r as flash,
16
+ e as index,
17
+ a as policyType,
18
+ t as requestsTable,
19
+ o as show
20
+ };
21
+ //# sourceMappingURL=Company.TimeOff.TimeOffRequests.json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Company.TimeOff.TimeOffRequests.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;"}
@@ -1,24 +1,26 @@
1
- const t = "Enter a net amount", e = "Please enter the net amount you want this employee to receive. We'll then automatically calculate the gross amount you need to pay, including taxes and deductions.", a = "This will override any previously entered amounts.", o = "Net amount", n = "Calculate Gross from Net", s = "Apply", l = "Cancel", c = "Calculated gross pay", r = "Unable to calculate gross up. Please try again.", u = {
1
+ const t = "Enter a net amount", a = "Please enter the net amount you want this employee to receive. We'll then automatically calculate the gross amount you need to pay, including taxes and deductions.", e = "This will override any previously entered amounts.", n = "Net amount", l = "Calculate", o = "Calculating...", s = "Apply", c = "Cancel", u = "Calculated gross pay", r = "Unable to calculate gross up. Please try again.", i = {
2
2
  title: t,
3
- description: e,
4
- warning: a,
5
- netPayLabel: o,
6
- calculateCta: n,
3
+ description: a,
4
+ warning: e,
5
+ netPayLabel: n,
6
+ calculateCta: l,
7
+ calculatingCta: o,
7
8
  applyCta: s,
8
- cancelCta: l,
9
- grossPayResult: c,
9
+ cancelCta: c,
10
+ grossPayResult: u,
10
11
  errorMessage: r
11
12
  };
12
13
  export {
13
14
  s as applyCta,
14
- n as calculateCta,
15
- l as cancelCta,
16
- u as default,
17
- e as description,
15
+ l as calculateCta,
16
+ o as calculatingCta,
17
+ c as cancelCta,
18
+ i as default,
19
+ a as description,
18
20
  r as errorMessage,
19
- c as grossPayResult,
20
- o as netPayLabel,
21
+ u as grossPayResult,
22
+ n as netPayLabel,
21
23
  t as title,
22
- a as warning
24
+ e as warning
23
25
  };
24
26
  //# sourceMappingURL=Payroll.GrossUpModal.json.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Payroll.GrossUpModal.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;"}
1
+ {"version":3,"file":"Payroll.GrossUpModal.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
@@ -1,20 +1,20 @@
1
- const e = "Tax withholding rates", a = "We've set the recommended withholding rate for each earning type below. Regular wages should be taxed at a rate that matches your employees' normal pay schedule", t = "Edit", l = { headers: { wageTypes: "Wage types", taxedAs: "Taxed as" }, taxedAsRegular: "Regular wages, paid {{frequency}}", taxedAsSupplemental: "Supplemental 22% for federal income taxes and at the state's supplemental tax rate for state income taxes.", taxedAsNotTaxed: "Not taxed" }, r = { regular: { label: "Regular hours, regular wages, tips", description: "These earnings should be taxed at a rate that matches your employees' regular pay schedule." }, supplemental: { label: "Supplemental wages, bonus wages, commission", description: "These are typically taxed at the rate required by the IRS for federal income taxes and by the state for state income taxes." }, reimbursement: { label: "Reimbursements" } }, s = { title: "Tax withholding rates", regularSection: { title: "Rate for regular wages and earnings", subtitle: "For regular hours, regular wages, tips", rateLabel: "Rate is based on payment schedule of", rateDescription: "Regular wages should be taxed at a rate matching your employees' regular pay schedule. Select the most accurate pay schedule." }, supplementalSection: { title: "Rate for supplemental wages and earnings", useSupplementalRate: "Use supplemental tax rate", useSupplementalRateDescription: "Taxes will be withheld at the IRS's required rate of 22% for federal income taxes. State income taxes will be taxed at the state's supplemental tax rate", useRegularRate: "Use rate for regular wages (based on payment schedule of {{frequency}})", useRegularRateDescription: "We'll sum the entirety of the employee's wages and withhold taxes on the entire amount at the rate for regular wages" }, cancelButton: "Cancel", doneButton: "Done" }, n = { everyWeek: "Every week", everyOtherWeek: "Every other week", twicePerMonth: "Twice per month", monthly: "Monthly", quarterly: "Quarterly", semiannually: "Semiannually", annually: "Annually" }, o = {
1
+ const e = "Tax withholding rates", a = "We've set the recommended withholding rate for each earning type below. Regular wages should be taxed at a rate that matches your employees' normal pay schedule", t = "Edit", l = { headers: { wageTypes: "Wage types", taxedAs: "Taxed as" }, taxedAsRegular: "Regular wages, paid {{frequency}}", taxedAsSupplemental: "Supplemental 22% for federal income taxes and at the state's supplemental tax rate for state income taxes.", taxedAsNotTaxed: "Not taxed" }, s = { regular: { label: "Regular hours, regular wages, and tips", description: "These earnings should be taxed at a rate that matches your employees' regular pay schedule." }, supplemental: { label: "Supplemental wages, bonus wages, commission", description: "These are typically taxed at the rate required by the IRS for federal income taxes and by the state for state income taxes." }, reimbursement: { label: "Reimbursements" } }, r = { title: "Tax withholding rates", regularSection: { title: "Rate for regular wages and earnings", subtitle: "Includes regular hours, regular wages, and tips", rateLabel: "Rate is based on payment schedule of", rateDescription: "Regular wages should be taxed at a rate matching your employees' regular pay schedule. Select the most accurate pay schedule." }, supplementalSection: { title: "Rate for supplemental wages and earnings", useSupplementalRate: "Use supplemental tax rate", useSupplementalRateDescription: "Taxes will be withheld at the IRS's required rate of 22% for federal income taxes. State income taxes will be taxed at the state's supplemental tax rate", useRegularRate: "Use rate for regular wages (based on payment schedule of {{frequency}})", useRegularRateDescription: "We'll sum the entirety of the employee's wages and withhold taxes on the entire amount at the rate for regular wages" }, cancelButton: "Cancel", doneButton: "Done" }, n = { everyWeek: "Every week", everyOtherWeek: "Every other week", twicePerMonth: "Twice per month", monthly: "Monthly", quarterly: "Quarterly", semiannually: "Semiannually", annually: "Annually" }, o = {
2
2
  title: e,
3
3
  description: a,
4
4
  editButton: t,
5
5
  table: l,
6
- wageTypeGroups: r,
7
- modal: s,
6
+ wageTypeGroups: s,
7
+ modal: r,
8
8
  payPeriodFrequency: n
9
9
  };
10
10
  export {
11
11
  o as default,
12
12
  a as description,
13
13
  t as editButton,
14
- s as modal,
14
+ r as modal,
15
15
  n as payPeriodFrequency,
16
16
  l as table,
17
17
  e as title,
18
- r as wageTypeGroups
18
+ s as wageTypeGroups
19
19
  };
20
20
  //# sourceMappingURL=Payroll.OffCycleTaxWithholding.json.js.map
@@ -1,44 +1,48 @@
1
- const e = "Edit payroll for {{employeeName}}", t = "{{firstName}} {{lastName}}", o = "Gross pay (excluding reimbursements)", s = "Gross pay: {{grossPay}} (excluding reimbursements)", n = "Regular hours", a = "Hours", i = "Save", r = "Cancel", m = { regularHours: "Regular Hours", overtime: "Overtime", doubleOvertime: "Double overtime" }, c = "Time off", l = "Unused time off payout", p = { remaining: "{{balance}} remaining" }, u = "Additional earnings", y = "Reimbursement", d = { bonus: "Bonus", paycheckTips: "Paycheck tips", correctionPayment: "Correction payment", commission: "Commission", cashTips: "Cash tips", reimbursement: "Reimbursement" }, b = "Payment", h = "Payment method", g = "Changing the default payment method will only apply to this payroll.", f = { directDeposit: "Direct deposit", check: "Check" }, P = {
1
+ const e = "Edit payroll for {{employeeName}}", t = "{{firstName}} {{lastName}}", o = "Gross pay (excluding reimbursements)", s = "Gross pay: {{grossPay}} (excluding reimbursements)", i = "Regular hours", n = "Hours", a = "Save", r = "Cancel", m = { regularHours: "Regular Hours", overtime: "Overtime", doubleOvertime: "Double overtime" }, c = "Time off", l = "Time off hours used this pay period", u = "Unused time off payout", p = "Enter the unused hours to pay out on the final paycheck. This is separate from time off hours used during the pay period.", y = { remaining: "{{balance}} remaining" }, d = "Additional earnings", h = "Reimbursement", f = { bonus: "Bonus", paycheckTips: "Paycheck tips", correctionPayment: "Correction payment", commission: "Commission", cashTips: "Cash tips", reimbursement: "Reimbursement" }, b = "Payment", g = "Payment method", T = "Changing the default payment method will only apply to this payroll.", P = { directDeposit: "Direct deposit", check: "Check" }, C = {
2
2
  pageTitle: e,
3
3
  breadcrumbLabel: t,
4
4
  grossPayLabel: o,
5
5
  grossPayLabelMobile: s,
6
- regularHoursTitle: n,
7
- hoursUnit: a,
8
- saveCta: i,
6
+ regularHoursTitle: i,
7
+ hoursUnit: n,
8
+ saveCta: a,
9
9
  cancelCta: r,
10
10
  compensationNames: m,
11
11
  timeOffTitle: c,
12
- finalPayoutTitle: l,
13
- timeOffBalance: p,
14
- additionalEarningsTitle: u,
15
- reimbursementTitle: y,
16
- fixedCompensationNames: d,
12
+ timeOffTitleDismissal: l,
13
+ finalPayoutTitle: u,
14
+ finalPayoutDescription: p,
15
+ timeOffBalance: y,
16
+ additionalEarningsTitle: d,
17
+ reimbursementTitle: h,
18
+ fixedCompensationNames: f,
17
19
  paymentMethodTitle: b,
18
- paymentMethodLabel: h,
19
- paymentMethodDescription: g,
20
- paymentMethodOptions: f
20
+ paymentMethodLabel: g,
21
+ paymentMethodDescription: T,
22
+ paymentMethodOptions: P
21
23
  };
22
24
  export {
23
- u as additionalEarningsTitle,
25
+ d as additionalEarningsTitle,
24
26
  t as breadcrumbLabel,
25
27
  r as cancelCta,
26
28
  m as compensationNames,
27
- P as default,
28
- l as finalPayoutTitle,
29
- d as fixedCompensationNames,
29
+ C as default,
30
+ p as finalPayoutDescription,
31
+ u as finalPayoutTitle,
32
+ f as fixedCompensationNames,
30
33
  o as grossPayLabel,
31
34
  s as grossPayLabelMobile,
32
- a as hoursUnit,
35
+ n as hoursUnit,
33
36
  e as pageTitle,
34
- g as paymentMethodDescription,
35
- h as paymentMethodLabel,
36
- f as paymentMethodOptions,
37
+ T as paymentMethodDescription,
38
+ g as paymentMethodLabel,
39
+ P as paymentMethodOptions,
37
40
  b as paymentMethodTitle,
38
- n as regularHoursTitle,
39
- y as reimbursementTitle,
40
- i as saveCta,
41
- p as timeOffBalance,
42
- c as timeOffTitle
41
+ i as regularHoursTitle,
42
+ h as reimbursementTitle,
43
+ a as saveCta,
44
+ y as timeOffBalance,
45
+ c as timeOffTitle,
46
+ l as timeOffTitleDismissal
43
47
  };
44
48
  //# sourceMappingURL=Payroll.PayrollEditEmployee.json.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Payroll.PayrollEditEmployee.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"Payroll.PayrollEditEmployee.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,58 @@
1
+ const e = "Compensation", t = "Edit job", o = "Add job", s = "Job Title", i = "Employee type", a = '<ClassificationLink href="https://support.gusto.com/team-management/team-payments/pay-rates/1001671771/Employee-classification-options.htm" target="_blank">Learn more about employee classifications.</ClassificationLink>', n = "Compensation amount", D = "Per", m = "The period over which the compensation amount is tracked (e.g., hourly, daily, weekly, monthly, annually).", r = "Adjust for minimum wage", c = "Determines whether the compensation should be adjusted for minimum wage. Only applies to Nonexempt employees.", l = "Minimum wage", d = "What minimum wage requirement should compensation be adjusted to", p = "Select if employee is a 2% shareholder", u = "Workers' compensation coverage", y = "Washington administers workers' compensation insurance to protect workers and employers from the financial impact of a work-related injury. Indicate here if this employee is exempt from the workers' comp tax.", h = "Yes, this employee is covered", E = "No, this employee is not covered", f = "Risk class code", b = "The risk class code associated with this employee's job function. We need this to pay and file your taxes correctly.", C = "Continue", k = "Save job", g = { "Commission Only Exempt": "Commission Only/No Overtime", "Commission Only Nonexempt": "Commission Only/Eligible for overtime", Exempt: "Salary/No overtime", Nonexempt: "Paid by the hour", Owner: "Owner's draw", "Salaried Nonexempt": "Salary/Eligible for overtime" }, w = { Hour: "Hour", Month: "Month", Paycheck: "Paycheck", Week: "Week", Year: "Year" }, R = "Start date", W = { startDate: { REQUIRED: "Start date is required" }, jobTitle: { REQUIRED: "Job title is required" }, flsaStatus: { REQUIRED: "Employee classification is required" }, rate: { REQUIRED: "Amount is a required field", RATE_MINIMUM: "Amount must be at least $1.00", RATE_EXEMPT_THRESHOLD: "FLSA Exempt employees must meet salary threshold of {{limit}}/year" }, paymentUnit: { REQUIRED: "Payment unit is required" }, minimumWageId: { REQUIRED: "Please select minimum wage for adjustment" }, stateWcClassCode: { REQUIRED: "Please select a risk class code" } }, L = {
2
+ title: e,
3
+ editTitle: t,
4
+ addTitle: o,
5
+ jobTitle: s,
6
+ employeeClassification: i,
7
+ classificationLink: a,
8
+ amount: n,
9
+ paymentUnitLabel: "Per",
10
+ paymentUnitDescription: m,
11
+ adjustForMinimumWage: r,
12
+ adjustForMinimumWageDescription: c,
13
+ minimumWageLabel: l,
14
+ minimumWageDescription: d,
15
+ twoPercentStakeholderLabel: p,
16
+ stateWcCoveredLabel: u,
17
+ stateWcCoveredDescription: y,
18
+ stateWcCoveredYes: h,
19
+ stateWcCoveredNo: E,
20
+ stateWcClassCodeLabel: f,
21
+ stateWcClassCodeDescription: b,
22
+ submitCta: C,
23
+ saveNewJobCta: k,
24
+ flsaStatusLabels: g,
25
+ paymentUnitOptions: w,
26
+ startDateLabel: R,
27
+ fieldValidations: W
28
+ };
29
+ export {
30
+ o as addTitle,
31
+ r as adjustForMinimumWage,
32
+ c as adjustForMinimumWageDescription,
33
+ n as amount,
34
+ a as classificationLink,
35
+ L as default,
36
+ t as editTitle,
37
+ i as employeeClassification,
38
+ W as fieldValidations,
39
+ g as flsaStatusLabels,
40
+ s as jobTitle,
41
+ d as minimumWageDescription,
42
+ l as minimumWageLabel,
43
+ m as paymentUnitDescription,
44
+ D as paymentUnitLabel,
45
+ w as paymentUnitOptions,
46
+ k as saveNewJobCta,
47
+ R as startDateLabel,
48
+ b as stateWcClassCodeDescription,
49
+ f as stateWcClassCodeLabel,
50
+ y as stateWcCoveredDescription,
51
+ u as stateWcCoveredLabel,
52
+ E as stateWcCoveredNo,
53
+ h as stateWcCoveredYes,
54
+ C as submitCta,
55
+ e as title,
56
+ p as twoPercentStakeholderLabel
57
+ };
58
+ //# sourceMappingURL=UNSTABLE.CompensationForm.json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UNSTABLE.CompensationForm.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,34 @@
1
+ const e = "Add Employee", a = "Edit Employee", i = "First name", t = "Middle initial", n = "Last name", s = "Personal email", l = "Used for self-onboarding invitations and employee communications.", o = "Date of birth", r = "Social Security number", d = "Invite employee to self-onboard", m = "The employee will receive an email invitation to enter their own personal, tax, and banking details.", c = "Add employee", E = "Save changes", b = { firstName: { REQUIRED: "First name is required", INVALID_NAME: "Enter a valid first name" }, lastName: { REQUIRED: "Last name is required", INVALID_NAME: "Enter a valid last name" }, email: { REQUIRED: "Email is required", INVALID_EMAIL: "Enter a valid email address", EMAIL_REQUIRED_FOR_SELF_ONBOARDING: "Email is required when self-onboarding is enabled" }, ssn: { INVALID_SSN: "Enter a valid Social Security number" } }, I = {
2
+ addTitle: e,
3
+ editTitle: a,
4
+ firstNameLabel: i,
5
+ middleInitialLabel: t,
6
+ lastNameLabel: n,
7
+ emailLabel: s,
8
+ emailDescription: l,
9
+ dateOfBirthLabel: o,
10
+ ssnLabel: r,
11
+ selfOnboardingLabel: d,
12
+ selfOnboardingDescription: m,
13
+ createCta: c,
14
+ updateCta: E,
15
+ fieldValidations: b
16
+ };
17
+ export {
18
+ e as addTitle,
19
+ c as createCta,
20
+ o as dateOfBirthLabel,
21
+ I as default,
22
+ a as editTitle,
23
+ l as emailDescription,
24
+ s as emailLabel,
25
+ b as fieldValidations,
26
+ i as firstNameLabel,
27
+ n as lastNameLabel,
28
+ t as middleInitialLabel,
29
+ m as selfOnboardingDescription,
30
+ d as selfOnboardingLabel,
31
+ r as ssnLabel,
32
+ E as updateCta
33
+ };
34
+ //# sourceMappingURL=UNSTABLE.EmployeeDetailsForm.json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UNSTABLE.EmployeeDetailsForm.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;"}
@@ -0,0 +1,24 @@
1
+ const e = "Add work address", t = "Edit work address", s = "Work address", a = "The primary location where the employee will be working.", o = "Effective date", d = "The date this work address takes effect.", i = "Save work address", r = "Save changes", c = { locationUuid: { REQUIRED: "Work address is required" }, effectiveDate: { REQUIRED: "Effective date is required" } }, n = {
2
+ addTitle: e,
3
+ editTitle: t,
4
+ locationLabel: s,
5
+ locationDescription: a,
6
+ effectiveDateLabel: o,
7
+ effectiveDateDescription: d,
8
+ createCta: i,
9
+ updateCta: r,
10
+ fieldValidations: c
11
+ };
12
+ export {
13
+ e as addTitle,
14
+ i as createCta,
15
+ n as default,
16
+ t as editTitle,
17
+ d as effectiveDateDescription,
18
+ o as effectiveDateLabel,
19
+ c as fieldValidations,
20
+ a as locationDescription,
21
+ s as locationLabel,
22
+ r as updateCta
23
+ };
24
+ //# sourceMappingURL=UNSTABLE.WorkAddressForm.json.js.map